Landsat Image Mosaic of Antarctica (LIMA)#
Description: Satellite imagery of Antarctica
Dataset:
N.A.
Associated paper:
Bindschadler, Robert, Patricia Vornberger, Andrew Fleming, Adrian Fox, Jerry Mullins, Douglas Binnie, Sara Jean Paulsen, Brian Granneman, and David Gorodetzky. βThe Landsat Image Mosaic of Antarctica.β Remote Sensing of Environment 112, no. 12 (December 15, 2008): 4214β26. https://doi.org/10.1016/j.rse.2008.07.006.
[ ]:
%%capture
%load_ext autoreload
%autoreload 2
from polartoolkit import fetch, maps
[2]:
fpath = fetch.imagery()
fpath
[2]:
'/home/sungw937/.cache/pooch/polartoolkit/imagery/lima.zip.unzip/tiff_90pct/00000-20080319-092059124.tif'
[ ]:
# instead of passing the imagery filepath to `plot_grd`, we can use the keyword argument
# `imagery_basemap=True` to either `maps.plot_grd()` or `maps.basemap()`
fig = maps.basemap(
imagery_basemap=True,
title="LIMA imagery",
hemisphere="south",
region=(-2.65e6, 2.65e6, -2.3e6, 2.3e6),
)
fig.show(dpi=200)