100 nlcd
Uncomment the following line to install the leafmap
package.
In [1]:
Copied!
# %pip install -U leafmap
# %pip install -U leafmap
In [2]:
Copied!
import leafmap
import leafmap
In [3]:
Copied!
m = leafmap.Map(center=[40, -100], zoom=4)
m.add_basemap("SATELLITE")
m.add_nlcd(years=[1985, 2023])
m
m = leafmap.Map(center=[40, -100], zoom=4)
m.add_basemap("SATELLITE")
m.add_nlcd(years=[1985, 2023])
m
Out[3]:
In [4]:
Copied!
m = leafmap.Map(center=[40, -100], zoom=4)
m.add_basemap("SATELLITE")
m.clear_controls()
m.add_nlcd_ts(left_year=2000)
m
m = leafmap.Map(center=[40, -100], zoom=4)
m.add_basemap("SATELLITE")
m.clear_controls()
m.add_nlcd_ts(left_year=2000)
m
The folium plotting backend does not support this function.
Out[4]:
In [5]:
Copied!
# leafmap.download_nlcd(years=[1985, 2023])
# leafmap.download_nlcd(years=[1985, 2023])