Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions pygmt/src/basemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,15 @@ def basemap( # noqa: PLR0913
$perspective
$transparency
See Also
--------
pygmt.Figure.directional_rose
Add a map directional rose.
pygmt.Figure.magnetic_rose
Add a map magnetic rose.
pygmt.Figure.scalebar
Add a scale bar.
Examples
--------
>>> import pygmt
Expand Down
9 changes: 9 additions & 0 deletions pygmt/src/coast.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,15 @@ def coast( # noqa: PLR0913
$perspective
$transparency

See Also
--------
pygmt.Figure.directional_rose
Add a map directional rose.
pygmt.Figure.magnetic_rose
Add a map magnetic rose.
pygmt.Figure.scalebar
Add a scale bar.

Example
-------
>>> import pygmt
Expand Down
11 changes: 11 additions & 0 deletions pygmt/src/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,17 @@ def plot( # noqa: PLR0912, PLR0913
``transparency`` can also be a 1-D array to set varying transparency for
symbols, but this option is only valid if using ``x``/``y``.
$wrap

See Also
--------
pygmt.Figure.choropleth
Plot a choropleth map.
pygmt.Figure.fill_between
Fill the area between two curves.
pygmt.Figure.hlines
Plot horizontal lines.
pygmt.Figure.vlines
Plot vertical lines.
"""
# TODO(GMT>6.5.0): Remove the note for the upstream bug of the "straight_line"
# parameter.
Expand Down
5 changes: 5 additions & 0 deletions pygmt/src/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,11 @@ def text( # noqa: PLR0912, PLR0913, PLR0915
``transparency`` can also be a 1-D array to set varying transparency for texts,
but this option is only valid if using ``x``/``y`` and ``text``.
$wrap
See Also
--------
pygmt.Figure.paragarph
Typeset one or multiple paragraphs.
"""
self._activate_figure()

Expand Down