Skip to content

Commit 6bad810

Browse files
docs: Changing units to SI units in projections (#719)
1 parent fee246c commit 6bad810

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

examples/tutorials/contour-map.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
interval=250,
7373
grid=grid,
7474
limit=[-4000, -2000],
75-
projection="M4i",
75+
projection="M10c",
7676
frame=True,
7777
)
7878
fig.show()
@@ -85,14 +85,13 @@
8585
# colormap to the contour map. It must be called prior to
8686
# :meth:`pygmt.Figure.grdcontour` to keep the contour lines visible on the final map.
8787
# If the ``projection`` argument is specified in the :meth:`pygmt.Figure.grdimage`
88-
# method, it does not need to be repeated in
89-
# the :meth:`pygmt.Figure.grdcontour` method.
88+
# method, it does not need to be repeated in the :meth:`pygmt.Figure.grdcontour` method.
9089

9190
fig = pygmt.Figure()
9291
fig.grdimage(
9392
grid=grid,
9493
cmap="haxby",
95-
projection="M4i",
94+
projection="M10c",
9695
frame=True,
9796
)
9897
fig.grdcontour(

0 commit comments

Comments
 (0)