Download notebook (.ipynb)

Example of Geocoding of States: United States#

from lets_plot.geo_data import *
from lets_plot import *
The geodata is provided by © OpenStreetMap contributors and is made available here under the Open Database License (ODbL).
LetsPlot.setup_html()
gdf = geocode_states().countries('US-48').inc_res().get_boundaries()

ggplot() + \
    geom_map(data=gdf, color='white', fill='gray30', \
             tooltips=layer_tooltips().line('@{found name}')) + \
    ggsize(800, 600) + ggtitle('US States') + \
    theme_void()