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
from geopy.geocoders.opensextant import Xponents
xp = Xponents()
pt = xp.geocode("45.7878E 14.000N")
# Parsed coordinate
place = xp.reverse( pt )
# Closest named location
pt = xp.geocode("Yarmouth, ME")
# pt = just the best possible match for the above.
pts = xp.geocode("Yarmouth", single=False) ## Ambiguous, so this should return multiple
pts = xp.geocode(" when in Yarmouth (down east Maine) hit the Harraseeket lunch counter for lobster" )
# All possible locations found in text.
The text was updated successfully, but these errors were encountered:
Type of Feature:
[ X ] Collaboration or partnership
[ ] Improvement or clarification
[ X ] New Processing
Description of Feature
https://geopy.readthedocs.io/en/stable -- Support a Geopy usage:
The text was updated successfully, but these errors were encountered: