I’m using the australia-latest file from geofabrik. I’ve also rebuilt the graph to make sure it is used. Other points in Australia do work, but I can’t get this one, and some others as well, to route properly. Here is my code:
coords = ((144.8847, -20.8419), (144.8847, -20.8419))
resp = client.directions(coords, profile="driving-car")
This is the error:
openrouteservice.exceptions.ApiError: 404 ({'error': {'code': 2010, 'message': 'Could not find routable point within a radius of 9000000.0 meters of specified coordinate 0: 144.8847000 -20.8419000.; Could not find routable point within a radius of 9000000.0 meters of specified coordinate 1: 144.8847000 -20.8419000.'}, 'info': {'engine': {'build_date': '2024-03-21T13:55:54Z', 'version': '8.0.0'}, 'timestamp': 1731071106775}})
As you can see, I’ve increased the maximum radius significantly, still the same error.
What am I doing wrong?
Best,
Gabriele