Hey,
thanks for your fast answer!
-
Please let me know where to find this! The log-folder remains empty, and
docker container logs
shows the same output as Docker Desktop, i.e. the Startup, which runs fine. A quick hint what to look at (or what to activate) would be great. -
Here are the four requests based on just two points:
Request 1: Route from A to B, HGV-Profile (No Issue)
curl -X POST \
'http://localhost:8080/ors/v2/directions/driving-hgv' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8' \
-d '{"coordinates":[[6.710510,49.25539],[6.755597,49.32754]]}'
Request 2: Matrix between A and B, Car-Profile (No Issue)
curl -X POST \
'http://localhost:8080/ors/v2/matrix/driving-car' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8' \
-d '{"locations":[[6.71051,49.25539],[6.755597,49.32754]]}'
Request 3: Matrix between A and B, HGV-Profile (Problem)
curl -X POST \
'http://localhost:8080/ors/v2/matrix/driving-hgv' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8' \
-d '{"locations":[[6.71051,49.25539],[6.755597,49.32754]]}'
Request 4: One-to-One Matrix from A to B, HGV-Profile (Still a Problem, even though should be identical to Request 1)
curl -X POST \
'http://localhost:8080/ors/v2/matrix/driving-hgv' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8' \
-d '{"locations":[[6.71051,49.25539],[6.755597,49.32754]],"sources":[0],"destinations":[1]}'
Request 5: Matrix between A and B, HGV-Profile, against ORS-Online-API (No Issue)
curl -X POST \
'https://api.openrouteservice.org/v2/matrix/driving-hgv' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8' \
-H 'Authorization: %%KEY%%' \
-d '{"locations":[[6.71051,49.25539],[6.755597,49.32754]]}'
-
That’s the current content of the Repo (i.e., as of last Thursday).
-
There is no issue using the Saarland-data, everything works as expected. That’s where this issue reminded me a bit of my last one, where also everything worked well with the Saarland, but not with the German data. I completely agree that this behavior makes it annoying to deal with, as it takes quite a while every time one recalculates the graphs…
Best regards