0

I am working with GPS coordinates and was using OSM API for python. I need to know if there is a way I can find out the coordinates of a route. For example if I enter starting and ending coordinates and OSM Generates a path. This path also have coordinates, so I want to extract these coordinates.

Any other suggestion using some other API(but for python only)? Can google maps provide such info.

scai
  • 20,297
  • 4
  • 56
  • 72
tsu90280
  • 417
  • 6
  • 20

1 Answers1

0

See the OSM Wiki about routing.

There are various routing engines available for online routing and offline routing. Popular OSM-based routing engines are:

All of them can be used from a python project (or any other programming language).

scai
  • 20,297
  • 4
  • 56
  • 72
  • thank you for your response, I have check graphhopper and OSRM but was not able to install OSRM, in linux that's why avoiding it. Although it was easy and exactly what i need to do. will try graphhopper. – tsu90280 Sep 25 '19 at 13:20