Skip to content

100 nlcd

image image image

Visualizing National Land Cover Database (NLCD) data products

Uncomment the following line to install the leafmap package.

1
# %pip install -U leafmap
1
import leafmap
1
2
3
4
m = leafmap.Map(center=[40, -100], zoom=4)
m.add_basemap("SATELLITE")
m.add_nlcd(years=[1985, 2023])
m
1
2
3
4
5
m = leafmap.Map(center=[40, -100], zoom=4)
m.add_basemap("SATELLITE")
m.clear()
m.add_nlcd_ts(left_year=2000)
m
1
# leafmap.download_nlcd(years=[1985, 2023])