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
4 changes: 4 additions & 0 deletions pygmt/src/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def image( # noqa: PLR0913
invert: bool = False,
projection: str | None = None,
region: Sequence[float | str] | str | None = None,
frame: str | Sequence[str] | bool = False,
verbose: Literal["quiet", "error", "warning", "timing", "info", "compat", "debug"]
| bool = False,
panel: int | Sequence[int] | bool = False,
Expand All @@ -48,6 +49,7 @@ def image( # noqa: PLR0913
Full GMT docs at :gmt-docs:`image.html`.

$aliases
- B = frame
- F = box
- I = invert
- J = projection
Expand Down Expand Up @@ -94,6 +96,7 @@ def image( # noqa: PLR0913
See `PR #8837 <https://github.com/GenericMappingTools/gmt/pull/8837>`__.
$projection
$region
$frame
$verbose
$panel
$perspective
Expand All @@ -106,6 +109,7 @@ def image( # noqa: PLR0913
M=Alias(monochrome, name="monochrome"),
I=Alias(invert, name="invert"),
).add_common(
B=frame,
J=projection,
R=region,
V=verbose,
Expand Down