|
| 1 | +""" |
| 2 | +Function to download the CNES Earth mean dynamic topography dataset from the GMT data |
| 3 | +server, and load as :class:`xarray.DataArray`. |
| 4 | +
|
| 5 | +The grids are available in various resolutions. |
| 6 | +""" |
| 7 | + |
| 8 | +from collections.abc import Sequence |
| 9 | +from typing import Literal |
| 10 | + |
| 11 | +import xarray as xr |
| 12 | +from pygmt.datasets.load_remote_dataset import _load_remote_dataset |
| 13 | + |
| 14 | +__doctest_skip__ = ["load_earth_mean_dynamic_topography"] |
| 15 | + |
| 16 | + |
| 17 | +def load_earth_mean_dynamic_topography( |
| 18 | + resolution: Literal["01d", "30m", "20m", "15m", "10m", "07m"] = "01d", |
| 19 | + region: Sequence[float] | str | None = None, |
| 20 | + registration: Literal["gridline", "pixel"] = "gridline", |
| 21 | +) -> xr.DataArray: |
| 22 | + r""" |
| 23 | + Load the CNES Earth mean dynamic topography dataset in various resolutions. |
| 24 | +
|
| 25 | + .. figure:: https://www.generic-mapping-tools.org/remote-datasets/_images/GMT_earth_mdt.jpg |
| 26 | + :width: 80 % |
| 27 | + :align: center |
| 28 | +
|
| 29 | + CNES Earth mean dynamic topography dataset. |
| 30 | +
|
| 31 | + The grids are downloaded to a user data directory (usually |
| 32 | + ``~/.gmt/server/earth/earth_mdt/``) the first time you invoke this function. |
| 33 | + Afterwards, it will load the grid from the data directory. So you'll need an |
| 34 | + internet connection the first time around. |
| 35 | +
|
| 36 | + These grids can also be accessed by passing in the file name |
| 37 | + **@earth_mdt**\_\ *res*\[_\ *reg*] to any grid processing function or plotting |
| 38 | + method. *res* is the grid resolution (see below), and *reg* is the grid registration |
| 39 | + type (**p** for pixel registration or **g** for gridline registration). |
| 40 | +
|
| 41 | + The default color palette table (CPT) for this dataset is *@earth_mdt.cpt*. It's |
| 42 | + implicitly used when passing in the file name of the dataset to any grid plotting |
| 43 | + method if no CPT is explicitly specified. When the dataset is loaded and plotted |
| 44 | + as an :class:`xarray.DataArray` object, the default CPT is ignored, and GMT's |
| 45 | + default CPT (*turbo*) is used. To use the dataset-specific CPT, you need to |
| 46 | + explicitly set ``cmap="@earth_mdt.cpt"``. |
| 47 | +
|
| 48 | + Refer to :gmt-datasets:`earth-mdt.html` for more details about available datasets, |
| 49 | + including version information and references. |
| 50 | +
|
| 51 | + Parameters |
| 52 | + ---------- |
| 53 | + resolution |
| 54 | + The grid resolution. The suffix ``d`` and ``m`` stand for arc-degrees and |
| 55 | + arc-minutes. Note that ``"07m"`` refers to a resolution of 7.5 arc-minutes. |
| 56 | + region |
| 57 | + The subregion of the grid to load, in the form of a sequence [*xmin*, *xmax*, |
| 58 | + *ymin*, *ymax*] or an ISO country code. |
| 59 | + registration |
| 60 | + Grid registration type. Either ``"pixel"`` for pixel registration or |
| 61 | + ``"gridline"`` for gridline registration. |
| 62 | +
|
| 63 | + Returns |
| 64 | + ------- |
| 65 | + grid |
| 66 | + The CNES Earth mean dynamic topography grid. Coordinates are latitude and |
| 67 | + longitude in degrees. Values are in meters. |
| 68 | +
|
| 69 | + Note |
| 70 | + ---- |
| 71 | + The registration and coordinate system type of the returned |
| 72 | + :class:`xarray.DataArray` grid can be accessed via the GMT accessors (i.e., |
| 73 | + ``grid.gmt.registration`` and ``grid.gmt.gtype`` respectively). However, these |
| 74 | + properties may be lost after specific grid operations (such as slicing) and will |
| 75 | + need to be manually set before passing the grid to any PyGMT data processing or |
| 76 | + plotting functions. Refer to :class:`pygmt.GMTDataArrayAccessor` for detailed |
| 77 | + explanations and workarounds. |
| 78 | +
|
| 79 | + Examples |
| 80 | + -------- |
| 81 | +
|
| 82 | + >>> from pygmt.datasets import load_earth_mean_dynamic_topography |
| 83 | + >>> # load the default grid (gridline-registered 1 arc-degree grid) |
| 84 | + >>> grid = load_earth_mean_dynamic_topography() |
| 85 | + >>> # load the 30 arc-minutes grid with "gridline" registration |
| 86 | + >>> grid = load_earth_mean_dynamic_topography( |
| 87 | + resolution="30m", registration="gridline" |
| 88 | + ...) |
| 89 | + >>> # load high-resolution (5 arc-minutes) grid for a specific region |
| 90 | + >>> grid = load_earth_mean_dynamic_topography( |
| 91 | + ... resolution="05m", |
| 92 | + ... region=[120, 160, 30, 60], |
| 93 | + ... registration="gridline", |
| 94 | + ... ) |
| 95 | + """ |
| 96 | + grid = _load_remote_dataset( |
| 97 | + name="earth_mdt", |
| 98 | + prefix="earth_mdt", |
| 99 | + resolution=resolution, |
| 100 | + region=region, |
| 101 | + registration=registration, |
| 102 | + ) |
| 103 | + return grid |
0 commit comments