Gravity#
Description: Gridded gravity anomaly data from various sources.
Datasets:
Uieda, Leonardo. “Fatiando a Terra Data: Earth - Gravity Grid at 10 Arc-Minute Resolution.” Zenodo, January 20, 2022. https://doi.org/10.5281/zenodo.5882207.
Förste, Christoph, Sean.L. Bruinsma, Oleg Abrikosov, Jean-Michel Lemoine, Jean Charles Marty, Frank Flechtner, G. Balmino, F. Barthelmes, and R. Biancale. “EIGEN-6C4 The Latest Combined Global Gravity Field Model Including GOCE Data up to Degree and Order 2190 of GFZ Potsdam and GRGS Toulouse.” Application/octet-stream,application/octet-stream,application/zip. GFZ Data Services, 2014. https://doi.org/10.5880/ICGEM.2015.1.
[1]:
%%capture
%load_ext autoreload
%autoreload 2
import os
from polartoolkit import fetch, maps
os.environ["POLARTOOLKIT_HEMISPHERE"] = "north"
[2]:
data = fetch.gravity(version="eigen").gravity
data
[2]:
<xarray.DataArray 'gravity' (y: 1401, x: 1401)> Size: 16MB
array([[977685.875 , 977689.75 , 977693.4375, ..., 977690.9375,
977688.125 , 977685.5 ],
[977688.6875, 977692.6875, 977696.5 , ..., 977693.125 ,
977690.1875, 977687.5625],
[977690.3125, 977694.4375, 977698.5 , ..., 977695.625 ,
977692.6875, 977689.9375],
...,
[977675.1875, 977678.25 , 977681.4375, ..., 977651.4375,
977648.5 , 977644.75 ],
[977673.0625, 977676.125 , 977678.375 , ..., 977649.5625,
977646.875 , 977643.1875],
[977670.25 , 977673.25 , 977675.5 , ..., 977646.875 ,
977644.375 , 977640.875 ]])
Coordinates:
* x (x) float64 11kB -3.5e+06 -3.495e+06 ... 3.495e+06 3.5e+06
* y (y) float64 11kB -3.5e+06 -3.495e+06 ... 3.495e+06 3.5e+06
Attributes:
Conventions: CF-1.7
actual_range: [977640.875, 980201.9375]
description:
history: gmt grdsample @GMTAPI@-S-I-G-M-G-N-000000 -G@GMTAPI@-S-O-G...
long_name: z
title: [3]:
fig = maps.plot_grd(
data,
title="EIGEN gravity field",
cbar_label="mGals",
coast=True,
cmap="viridis",
hist=True,
cbar_yoffset=1.5,
robust=True,
shading=True,
)
fig.show(dpi=200)
[ ]: