Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions examples/tutorials/contour-map.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
interval=250,
grid=grid,
limit=[-4000, -2000],
projection="M4i",
projection="M10c",
frame=True,
)
fig.show()
Expand All @@ -85,14 +85,13 @@
# colormap to the contour map. It must be called prior to
# :meth:`pygmt.Figure.grdcontour` to keep the contour lines visible on the final map.
# If the ``projection`` argument is specified in the :meth:`pygmt.Figure.grdimage`
# method, it does not need to be repeated in
# the :meth:`pygmt.Figure.grdcontour` method.
# method, it does not need to be repeated in the :meth:`pygmt.Figure.grdcontour` method.

fig = pygmt.Figure()
fig.grdimage(
grid=grid,
cmap="haxby",
projection="M4i",
projection="M10c",
frame=True,
)
fig.grdcontour(
Expand Down