Christoph Sander

Results 61 comments of Christoph Sander

Will come with the latest oxigraph built

using custom_functions in query params `{px.NamedNode("http://shmarql.com/geo/distance"): distance_function_wkt}` ```py def distance_function_wkt(t1, t2): try: point1 = wkt.loads(t1.value) point2 = wkt.loads(t2.value) coords1 = (point1.y, point1.x) coords2 = (point2.y, point2.x) distance_km = geodesic(coords1, coords2).kilometers...

Great, thanks @Tpt > It would be great that I update `Literal` constructor to allow various Python types as input (`int`, `float`, `bool`, `datetime`...) yes, that would be even better....

Before the timeout the CPU is at 100% (memory is fine), so it's desperately trying to get to the results

thanks @Tpt . Yes, the timeout is the proxy, but >60s is the issue (even if I set the timeout to 10 minutes). I can optimize the queries but using...

Maybe also for `Store.remove_graph()` which takes much time and is after all a batch operation, too.

Does the completion of the issue also extend to `Store.remove_graph()`?

Has been a while and the host's image server seems to be down for my own examples to test but if I remember correctly the issue is that only the...

maybe @giacomomarchioro remembers as well

thanks @giacomomarchioro for clarification. Once our image server is back to work, I can point to an example [here](https://projectmirador.org/embed/?iiif-content=https://raw.githubusercontent.com/ch-sander/raramagnetica/main/iiif/garzoni.json). In my pseudocode in the initial comment, it's maybe best understood...