MODIS MOG

MODIS MOG#

Description: MODIS optical image mosaic of Greenland.

Requires an EarthData login, see link for how to configure this.

Dataset:

Haran, T., J. Bohlander, T. A. Scambos, T. Painter, and M. Fahnestock. “MEaSUREs MODIS Mosaic of Greenland (MOG) 2005, 2010, and 2015 Image Maps, Version 2.” NASA National Snow and Ice Data Center Distributed Active Archive Center, 2018. https://doi.org/10.5067/9ZO79PHOTYE5.

Associated paper:

N.A.

[1]:
import os

import polartoolkit as ptk
[2]:
# set default to northern hemisphere for this notebook
os.environ["POLARTOOLKIT_HEMISPHERE"] = "north"
[3]:
fpath = ptk.fetch.modis(
    # choose which resolution to use
    version="500m",
    # version="100m"
)
fpath
[3]:
'/home/mdtanker/.cache/pooch/polartoolkit/imagery/mog500_2015_hp1_v02.tif'
[4]:
# instead of passing the imagery filepath to `plot_grid`, we can use the keyword argument
# `modis_basemap=True` to either `plot_grid()` or `basemap()`
fig = ptk.basemap(
    region=ptk.regions.greenland,
    modis_basemap=True,
    title="MODIS Mosaic of Greenland",
    modis=True,  # this automatically uses a nice colorscale for modis data
)
fig.show(dpi=200)
../../_images/datasets_greenland_arctic_modis_mog_4_0.png