Download notebook (.ipynb)

Example of Geocoding of Counties: 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_counties().scope('US-48').inc_res().get_boundaries()

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