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
6 changes: 3 additions & 3 deletions examples/tutorials/coastlines.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Shorelines
# ----------
#
# Use the ``shorelines`` argument to plot only the shorelines:
# Use the ``shorelines`` parameter to plot only the shorelines:

fig = pygmt.Figure()
fig.basemap(region="g", projection="W15c", frame=True)
Expand Down Expand Up @@ -78,11 +78,11 @@
# Land and water
# --------------
#
# Use the ``land`` and ``water`` arguments to specify a fill color for land and water
# Use the ``land`` and ``water`` parameters to specify a fill color for land and water
# bodies. The colors can be given by name or hex codes (like the ones used in HTML and
# CSS):

fig = pygmt.Figure()
fig.basemap(region="g", projection="W10i", frame=True)
fig.basemap(region="g", projection="W15c", frame=True)
fig.coast(land="#666666", water="skyblue")
fig.show()