You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related #2762, #3621, #3808, #4114 but I wanted an explicit post for the issue. It will probably take me more time to write than some of our more skilled devs.
Add a wrapper for api.set_position in api wrapper (parameters: long/lat)
Swap all calls to api.set_position with new wrapper
Use geocoder to fetch altitide from long/lat using something similar to below:
import geocoder
g = geocoder.google([long, lat], method='elevation')
alt = g.meters
Related #2762, #3621, #3808, #4114 but I wanted an explicit post for the issue. It will probably take me more time to write than some of our more skilled devs.
import geocoder
g = geocoder.google([long, lat], method='elevation')
alt = g.meters
(Source https://geocoder.readthedocs.io/providers/Google.html#elevation)
The text was updated successfully, but these errors were encountered: