|
2 | 2 | Plotting Earth relief
|
3 | 3 | =====================
|
4 | 4 |
|
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. |
8 | 8 | """
|
9 | 9 |
|
10 | 10 | # %%
|
11 | 11 | import pygmt
|
12 | 12 |
|
13 | 13 | # %%
|
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. |
17 | 16 | grid = pygmt.datasets.load_earth_relief(resolution="01d")
|
18 | 17 |
|
19 | 18 |
|
20 | 19 | # %%
|
21 | 20 | # Create a plot
|
22 | 21 | # -------------
|
23 | 22 | #
|
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. |
28 | 27 |
|
29 | 28 | fig = pygmt.Figure()
|
30 | 29 | fig.grdimage(grid=grid)
|
31 | 30 | fig.show()
|
32 | 31 |
|
33 | 32 | # %%
|
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`. |
38 | 37 |
|
39 | 38 | fig = pygmt.Figure()
|
40 | 39 | fig.grdimage(grid=grid, projection="R12c")
|
|
45 | 44 | # Set a color map
|
46 | 45 | # ---------------
|
47 | 46 | #
|
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`. |
51 | 50 |
|
52 | 51 | # %%
|
53 | 52 | # Using the *geo* CPT:
|
|
68 | 67 | # Add a color bar
|
69 | 68 | # ---------------
|
70 | 69 | #
|
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. |
79 | 77 |
|
80 | 78 | fig = pygmt.Figure()
|
81 | 79 | fig.grdimage(grid=grid, projection="R12c", cmap="geo")
|
|
87 | 85 | # Create a region map
|
88 | 86 | # -------------------
|
89 | 87 | #
|
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*]. |
96 | 92 | #
|
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. |
100 | 96 |
|
101 | 97 | grid = pygmt.datasets.load_earth_relief(resolution="10m", region=[-14, 30, 35, 60])
|
102 | 98 | fig = pygmt.Figure()
|
|
0 commit comments