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.
[1]:
%%capture
%load_ext autoreload
%autoreload 2
from polartoolkit import fetch, maps
[2]:
data = fetch.imagery()
data
100%|βββββββββββββββββββββββββββββββββββββ| 47.5M/47.5M [00:00<00:00, 32.5GB/s]
[2]:
'/home/sungw937/.cache/pooch/polartoolkit/imagery/lima.zip.unzip/tiff_90pct/00000-20080319-092059124.tif'
[3]:
# instead of passing the imagery filepath to `plot_grid`, we can use the keword argument
# `imagery_basemap=True` to either `maps.plot_grd()` or `maps.basemap()`
fig = maps.basemap(
imagery_basemap=True,
title="LIMA imagery",
coast=True,
coast_pen="0.6p,salmon",
colorbar=False,
hemisphere="south",
)
fig.show(dpi=200)
grdimage [WARNING]: (e - x_min) must equal (NX + eps) * x_inc), where NX is an integer and |eps| <= 0.0001.
grdimage [WARNING]: e reset from 2800000 to 2800124.3212
[ ]: