Download notebook (.ipynb)

Example of Geocoding of Countries: India#

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()
country = 'India'
gdf = geocode_countries(names=country).inc_res().get_boundaries()

ggplot() + \
    geom_map(data=gdf, color='white', fill='steelblue') + \
    ggsize(800, 600) + ggtitle(country) + \
    theme_void()