-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
Description
Hi there.
I've calculated 5 and 10 minutes walking isochrones using a local docker instance. When looking at the results, I've noticed that some geometries are faulty, e.g. not matching any paths, streets or logic (see below).
My code:
library(openrouteservice)
options(openrouteservice.url = "http://localhost:8081/ors")
intervals <- c(300, 600)
profile <- "foot-walking"
profile <- "foot-walking"
isochrone_noid <- ors_isochrones(
st_coordinates(source_feature),
range = j,
profile = profile,
output = "sf")
Is there any possibility to change the settings in R to avoid these faulty geometries? Or is it a problem related to the docker compose file?
Reactions are currently unavailable