Radius error when changing osm to Sergipe Brazil location

I made the settings and when running docker it is giving an error I will post the error and the settings if anyone wants to point out where the error is, I changed these radius settings, but it was not:

{
“error”: {
“code”: 2010,
“message”: “Could not find routable point within a radius of 400.0 meters of specified coordinate 0: 8.6814950 49.4146100.”
},
“info”: {
“engine”: {
“build_date”: “2024-02-13T13:24:07Z”,
“version”: “8.0”
},
“timestamp”: 1708296868658
}
}

version: ‘2.4’
services:
ors-app:
container_name: ors-app
ports:
- “8080:8080”
- “9001:9001”
image: openrouteservice/openrouteservice:nightly
# For versioned images see Running with Docker | openrouteservice backend documentation
user: “${UID:-0}:${GID:-0}”
build:
context: ./
args:
OSM_FILE: ./osm_file.pbf
volumes:
- ./docker/graphs:/home/ors/ors-core/data/graphs
- ./docker/elevation_cache:/home/ors/ors-core/data/elevation_cache
- ./docker/logs/ors:/home/ors/logs
- ./docker/logs/tomcat:/home/ors/tomcat/logs
- ./docker/conf:/home/ors/ors-conf
- ./docker/data:/home/ors/ors-core/data
- ./osm_file.pbf:/home/ors/ors-core/data/osm_file.pbf
environment:
- BUILD_GRAPHS=True # Forces the container to rebuild the graphs, e.g. when PBF is changed
- “JAVA_OPTS=-Djava.awt.headless=true -server -XX:TargetSurvivorRatio=75 -XX:SurvivorRatio=64 -XX:MaxTenuringThreshold=3 -XX:+UseG1GC -XX:+ScavengeBeforeFullGC -XX:ParallelGCThreads=4 -Xms1g -Xmx2g”
- “CATALINA_OPTS=-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9001 -Dcom.sun.management.jmxremote.rmi.port=9001 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=localhost”

Can anyone help?

Hey,
it hasn’t been a day since you posted, give people a chance to answer :wink:

You state in your question that you were “changing osm to Sergipe Brazil location”, which I’m guessing is saying that you set up the ors to run an osm-pbf-extract for Sergipe, Brazil.

The coordinate that is giving you the error is

which (in the lon, lat format the ors uses) should be somewhere in Heidelberg, Germany.

Best regards

1 Like