Magnetics#
Description: Gridded magnetic anomaly data from various sources.
Datasets:
LCS-1: A high-resolution global model of the lithospheric magnetic field derived from CHAMP and Swarm satellite observations
Accessed from https://www.spacecenter.dk/files/magnetic-models/LCS-1/ version: scalar anomaly at Earthβs surface (WGS84 ellipsoid) for spherical harmonic degrees n=14-185
Associated papers:
Olsen, N., D. Ravat, C. C. Finlay, and L. K. Kother, LCS-1: A high-resolution global model of the lithospheric magnetic field derived from CHAMP and Swarm satellite observations, Geophys. J. Int., 211, 1461β1477, doi:10.1093/gji/ggx381, 2017
[1]:
%%capture
%load_ext autoreload
%autoreload 2
from polartoolkit import fetch, maps
[2]:
grid = fetch.magnetics(
version="LCS-1",
# available options
# region,
# spacing,
# registration ("g" for gridline or "p" for pixel),
hemisphere="north",
)
[3]:
fig = maps.plot_grd(
grid,
title="LCS-1 Magnetic Anomaly Data",
cbar_label="nT",
coast=True,
cmap="balance+h0",
hemisphere="north",
robust=True,
)
fig.show(dpi=200)
[ ]: