Skip to content

Commit acd80db

Browse files
seismanmichaelgrundyvonnefroehlich
authored
Link to the PyGMT projection table in the Earth relief tutorial (#3377)
Co-authored-by: Michael Grund <[email protected]> Co-authored-by: Yvonne Fröhlich <[email protected]>
1 parent edfb984 commit acd80db

File tree

1 file changed

+30
-34
lines changed

1 file changed

+30
-34
lines changed

examples/tutorials/advanced/earth_relief.py

+30-34
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,38 @@
22
Plotting Earth relief
33
=====================
44
5-
Plotting a map of Earth relief can use the data accessed by the
6-
:func:`pygmt.datasets.load_earth_relief` function. The data can then be
7-
plotted using the :meth:`pygmt.Figure.grdimage` method.
5+
PyGMT provides the :func:`pygmt.datasets.load_earth_relief` function to download the
6+
Earth relief data from the GMT remote server and load as an :class:`xarray.DataArray`
7+
object. The data can then be plotted using the :meth:`pygmt.Figure.grdimage` method.
88
"""
99

1010
# %%
1111
import pygmt
1212

1313
# %%
14-
# Load sample Earth relief data for the entire globe at a resolution of
15-
# 1 arc-degree. The other available resolutions are shown at
16-
# :gmt-datasets:`earth-relief.html`.
14+
# Load sample Earth relief data for the entire globe at a resolution of 1 arc-degree.
15+
# Refer to :func:`pygmt.datasets.load_earth_relief` for the other available resolutions.
1716
grid = pygmt.datasets.load_earth_relief(resolution="01d")
1817

1918

2019
# %%
2120
# Create a plot
2221
# -------------
2322
#
24-
# The :meth:`pygmt.Figure.grdimage` method takes the ``grid`` input to create a
25-
# figure. It creates and applies a color palette to the figure based upon the
26-
# z-values of the data. By default, it plots the map with the *turbo* CPT, an
27-
# equidistant cylindrical projection, and with no frame.
23+
# The :meth:`pygmt.Figure.grdimage` method takes the ``grid`` input to create a figure.
24+
# It creates and applies a color palette to the figure based upon the z-values of the
25+
# data. By default, it plots the map with the *turbo* CPT, an equidistant cylindrical
26+
# projection, and with no frame.
2827

2928
fig = pygmt.Figure()
3029
fig.grdimage(grid=grid)
3130
fig.show()
3231

3332
# %%
34-
# :meth:`pygmt.Figure.grdimage` can take the optional parameter ``projection``
35-
# for the map. In the example below, ``projection`` is set to ``"R12c"`` for
36-
# a 12-centimeters-wide figure with a Winkel Tripel projection. For a list
37-
# of available projections, see :gmt-docs:`reference/map-projections.html`.
33+
# :meth:`pygmt.Figure.grdimage` can take the optional parameter ``projection`` for the
34+
# map. In the example below, ``projection`` is set to ``"R12c"`` for a
35+
# 12-centimeters-wide figure with a Winkel Tripel projection. For a list of available
36+
# projections, see :doc:`/techref/projections`.
3837

3938
fig = pygmt.Figure()
4039
fig.grdimage(grid=grid, projection="R12c")
@@ -45,9 +44,9 @@
4544
# Set a color map
4645
# ---------------
4746
#
48-
# :meth:`pygmt.Figure.grdimage` takes the ``cmap`` parameter to set the CPT of
49-
# the figure. Examples of common CPTs for Earth relief are shown below.
50-
# A full list of CPTs can be found at :gmt-docs:`reference/cpts.html`.
47+
# :meth:`pygmt.Figure.grdimage` takes the ``cmap`` parameter to set the CPT of the
48+
# figure. Examples of common CPTs for Earth relief are shown below. A full list of CPTs
49+
# can be found at :gmt-docs:`reference/cpts.html`.
5150

5251
# %%
5352
# Using the *geo* CPT:
@@ -68,14 +67,13 @@
6867
# Add a color bar
6968
# ---------------
7069
#
71-
# The :meth:`pygmt.Figure.colorbar` method displays the CPT and the associated
72-
# Z-values of the figure, and by default uses the same CPT set by the ``cmap``
73-
# parameter for :meth:`pygmt.Figure.grdimage`. The ``frame`` parameter for
74-
# :meth:`pygmt.Figure.colorbar` can be used to set the axis intervals and
75-
# labels. A list is used to pass multiple arguments to ``frame``. In the
76-
# example below, ``"a2500"`` sets the axis interval to 2,500,
77-
# ``"x+lElevation"`` sets the x-axis label, and ``"y+lm"`` sets the y-axis
78-
# label.
70+
# The :meth:`pygmt.Figure.colorbar` method displays the CPT and the associated z-values
71+
# of the figure, and by default uses the same CPT set by the ``cmap`` parameter for
72+
# :meth:`pygmt.Figure.grdimage`. The ``frame`` parameter for
73+
# :meth:`pygmt.Figure.colorbar` can be used to set the axis intervals and labels. A list
74+
# is used to pass multiple arguments to ``frame``. In the example below, ``"a2500"``
75+
# sets the axis interval to 2,500, ``"x+lElevation"`` sets the x-axis label, and
76+
# ``"y+lm"`` sets the y-axis label.
7977

8078
fig = pygmt.Figure()
8179
fig.grdimage(grid=grid, projection="R12c", cmap="geo")
@@ -87,16 +85,14 @@
8785
# Create a region map
8886
# -------------------
8987
#
90-
# In addition to providing global data, the ``region`` parameter for
91-
# :func:`pygmt.datasets.load_earth_relief` can be used to provide data for a
92-
# specific area. The ``region`` parameter is required for resolutions at
93-
# 5 arc-minutes or higher, and accepts a list (as in the example below) or a
94-
# string. For the later, the geographic range is passed as
95-
# "*xmin*/*xmax*/*ymin*/*ymax*".
88+
# In addition to providing global data, the ``region`` parameter of
89+
# :func:`pygmt.datasets.load_earth_relief` can be used to provide data for a specific
90+
# area. The ``region`` parameter is required for resolutions at 5 arc-minutes or higher,
91+
# and accepts a list in the form of [*xmin*, *xmax*, *ymin*, *ymax*].
9692
#
97-
# The example below uses data with a 10 arc-minutes resolution, and plots it on
98-
# a 15-centimeters-wide figure with a Mercator projection and a CPT set to
99-
# *geo*. ``frame="a"`` is used to add a frame with annotations to the figure.
93+
# The example below uses data with a 10 arc-minutes resolution, and plots it on a
94+
# 15-centimeters-wide figure with a Mercator projection and a CPT set to *geo*.
95+
# ``frame="a"`` is used to add a frame with annotations to the figure.
10096

10197
grid = pygmt.datasets.load_earth_relief(resolution="10m", region=[-14, 30, 35, 60])
10298
fig = pygmt.Figure()

0 commit comments

Comments
 (0)