|
43 | 43 | # "oleron" is used; a full list of CPTs can be found at :gmt-docs:`reference/cpts.html`. |
44 | 44 |
|
45 | 45 | fig = pygmt.Figure() |
46 | | -fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="oleron") |
| 46 | +fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="SCM/oleron") |
47 | 47 | fig.show() |
48 | 48 |
|
49 | 49 |
|
|
64 | 64 | # :meth:`pygmt.Figure.grdimage`. |
65 | 65 |
|
66 | 66 | fig = pygmt.Figure() |
67 | | -fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="oleron") |
| 67 | +fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="SCM/oleron") |
68 | 68 | fig.colorbar(frame=["a1000", "x+lElevation", "y+lm"]) |
69 | 69 | fig.show() |
70 | 70 |
|
|
85 | 85 | # lines can be adjusted (separately) by specifying the desired ``pen``. |
86 | 86 |
|
87 | 87 | fig = pygmt.Figure() |
88 | | -fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="oleron") |
| 88 | +fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="SCM/oleron") |
89 | 89 | fig.grdcontour(grid=grid, levels=500, annotation=1000) |
90 | 90 | fig.colorbar(frame=["a1000", "x+lElevation", "y+lm"]) |
91 | 91 | fig.show() |
|
100 | 100 | # the ``shorelines`` parameter draws a border around the islands. |
101 | 101 |
|
102 | 102 | fig = pygmt.Figure() |
103 | | -fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="oleron") |
| 103 | +fig.grdimage(grid=grid, frame="a", projection="M10c", cmap="SCM/oleron") |
104 | 104 | fig.grdcontour(grid=grid, levels=500, annotation=1000) |
105 | 105 | fig.coast(shorelines="2p", land="lightgray") |
106 | 106 | fig.colorbar(frame=["a1000", "x+lElevation", "y+lm"]) |
|
0 commit comments