Moho Models

Moho Models#

Description: Moho topography from various sources.

Dataset:

N.A.

Associated papers:

Shen, Weisen, Douglas A. Wiens, Sridhar Anandakrishnan, Richard C. Aster, Peter Gerstoft, Peter D. Bromirski, Samantha E. Hansen, et al. β€œThe Crust and Upper Mantle Structure of Central and West Antarctica from Bayesian Inversion of Rayleigh Wave and Receiver Functions.” Journal of Geophysical Research: Solid Earth 123, no. 9 (2018): 7824–49. https://doi.org/10.1029/2017JB015346.

An, Meijian, Douglas A. Wiens, Yue Zhao, Mei Feng, Andrew A. Nyblade, Masaki Kanao, Yuansheng Li, Alessia Maggi, and Jean-Jacques LΓ©vΓͺque. β€œS-Velocity Model and Inferred Moho Topography beneath the Antarctic Plate from Rayleigh Waves: Antarctic S-Velocities and Moho.” Journal of Geophysical Research: Solid Earth 120, no. 1 (2015): 359–83. https://doi.org/10.1002/2014JB011332.

[1]:
%%capture
%load_ext autoreload
%autoreload 2

from polartoolkit import fetch, maps, regions, utils
[2]:
version_names = [
    "shen-2018",
    "an-2015",
]

grids = []
for name in version_names:
    data = fetch.moho(
        version=name,
        # available options
        # region,
        # spacing,
        # registration ("g" for gridline or "p" for pixel),
    )
    grids.append(data)
    print(f"Info for {name}")
    _ = utils.get_grid_info(data, print_info=True)
    print("##########")
Info for shen-2018
grid spacing: 10000.0 m
grid region: (-2800000.0, 2800000.0, -2800000.0, 2800000.0)
grid zmin: -57223.5273438
grid zmax: -17218.0996094
grid registration: g
##########
Info for an-2015
grid spacing: 5000.0 m
grid region: (-3330000.0, 3330000.0, -3330000.0, 3330000.0)
grid zmin: -65197.1328125
grid zmax: -6264.58496094
grid registration: g
##########
[3]:
cpt_lims = utils.get_combined_min_max(grids, robust=True)

fig = maps.plot_grd(
    grids[0],
    title="Moho Depth (Shen et al. 2018)",
    region=regions.antarctica,
    cmap="acton",
    cbar_label="meters",
    coast=True,
    hist=True,
    cpt_lims=cpt_lims,
    hemisphere="south",
)
fig = maps.plot_grd(
    grids[1],
    fig=fig,
    origin_shift="x",
    title="Moho Depth (An et al. 2015)",
    region=regions.antarctica,
    cmap="acton",
    cbar_label="meters",
    coast=True,
    hist=True,
    cpt_lims=cpt_lims,
    hemisphere="south",
)
fig.show(dpi=200)
../../_images/datasets_antarctica_moho_3_0.png
[ ]: