@@ -46,13 +46,16 @@ def load_earth_relief(resolution="01d", region=None, registration=None, use_srtm
46
46
registration : str
47
47
Grid registration type. Either ``pixel`` for pixel registration or
48
48
``gridline`` for gridline registration. Default is ``None``, where
49
- a pixel-registered grid is returned unless only the
50
- gridline-registered grid is available.
49
+ a gridline-registered grid is returned unless only the pixel-registered
50
+ grid is available.
51
+
52
+ **Note:** For GMT 6.3, ``registration=None`` returns a pixel-registered
53
+ grid by default unless only the gridline-registered grid is available.
51
54
52
55
use_srtm : bool
53
56
By default, the land-only SRTM tiles from NASA are used to generate the
54
57
``'03s'`` and ``'01s'`` grids, and the missing ocean values are filled
55
- by up-sampling the SRTM15+V2.1 tiles which have a resolution of 15
58
+ by up-sampling the SRTM15+ tiles which have a resolution of 15
56
59
arc-second (i.e., ``'15s'``). If True, will only load the original
57
60
land-only SRTM tiles.
58
61
@@ -71,7 +74,7 @@ def load_earth_relief(resolution="01d", region=None, registration=None, use_srtm
71
74
Examples
72
75
--------
73
76
74
- >>> # load the default grid (pixel -registered 01d grid)
77
+ >>> # load the default grid (gridline -registered 01d grid)
75
78
>>> grid = load_earth_relief()
76
79
>>> # load the 30m grid with "gridline" registration
77
80
>>> grid = load_earth_relief("30m", registration="gridline")
0 commit comments