I'm trying to determine whether a point is on a road/highway/freeway etc or in a building through a Python
script. For some inputs they'll contain the user's velocity which means in some contexts, it'll be obvious given the device velocity. However, for instances when the user's instantaneous velocity is small it could be due to traffic, being stopped at lights etc.
I want to be able to input a pair of inputs, eg. -33.852592, 151.210663
and receive a boolean result as to whether the user's coordinates fall on a road.
I've come across Google places
and OSRM
but haven't found a solution from these yet. Are there any other options I'm missing?