MODIS MOA#
Description: MODIS optical image mosaic of Antarctica.
Requires an EarthData login, see link for how to configure this.
Dataset:
Haran, T., J. Bohlander, T A Scambos, T. Painter, and M. Fahnestock. βMODIS Mosaic of Antarctica 2008-2009 (MOA2009) Image Map, Version 2,β 2021. https://doi.org/10.5067/4ZL43A4619AF.
Associated paper:
Scambos, T.A., T.M. Haran, M.A. Fahnestock, T.H. Painter, and J. Bohlander. βMODIS-Based Mosaic of Antarctica (MOA) Data Sets: Continent-Wide Surface Morphology and Snow Grain Size.β Remote Sensing of Environment 111, no. 2β3 (2007): 242β57. https://doi.org/10.1016/j.rse.2006.12.020.
[9]:
%%capture
%load_ext autoreload
%autoreload 2
import os
from polartoolkit import fetch, maps, regions
[2]:
# set default to southern hemisphere for this notebook
os.environ["POLARTOOLKIT_HEMISPHERE"] = "south"
[7]:
fpath = fetch.modis(
# choose which resolution to use
version="750m",
# version="125m"
)
fpath
[7]:
'/home/sungw937/.cache/pooch/polartoolkit/imagery/moa750_2009_hp1_v02.0.tif'
[ ]:
# instead of passing the imagery filepath to `plot_grid`, we can use the keyword argument
# `modis_basemap=True` to either `maps.plot_grd()` or `maps.basemap()`
fig = maps.basemap(
region=regions.antarctica,
modis_basemap=True,
title="MODIS Mosaic of Antarctica",
modis=True, # this automatically uses a nice colorscale for modis data
)
fig.show(dpi=200)
[ ]: