osrm-py
osrm-py copied to clipboard
Python client for OSRM API
If just using function str(), it will not force float ot be written without scientific notation. Thus, it will not be accepted by OSRM API. For example, coordinates '0.0000334622' translate...
I have installed osrm-py in my jupyter successfully. Yet, when I run the following test code it throws **"AttributeError: module 'osrm' has no attribute 'Client'** import osrm client = osrm.Client(host='http://localhost:5000')...
I'm trying to access the map matching utility and keep getting this error. `import osrm` `points = [(-33.45017046193167,-70.65281867980957), (-33.45239047269638,-70.65300107002258), (-33.453867464504555,-70.65277576446533)]` `client = osrm.Client()` `response = client.match(coordinates=points)` I'm a little skeptical...
I utilized this simple module for a project of mine. However, I ran into the issue that I believe many other people face. The OSRM 'max_match_size' setting has a default...