Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
4868c8a
Figure.pygmtlogo: Initial implementation for the circular, colored Py…
yvonnefroehlich May 2, 2026
bd24b5a
Force the default logo size to 2-cm and rename test_pygmtlogo to test…
seisman May 6, 2026
0ce57a1
Merge branch 'main' into pygmtlogo
seisman May 6, 2026
091d62c
Add a test to check the design details of the circular logo (#4623)
seisman May 7, 2026
c63767f
Figure.pygmtlogo: Add tests for the circular, black/white PyGMT logo …
seisman May 7, 2026
9a91164
Merge branch 'main' into pygmtlogo
seisman May 8, 2026
21cb57a
Figure.pygmtlogo: Simplify the code logic for defining colors (#4629)
seisman May 9, 2026
7581ebf
Figure.pygmtlogo: Explicitly set the angle of diagonal compass lines …
seisman May 9, 2026
5c7d482
Figure.pygmtlogo: Increase the gap around the vertical red line and a…
seisman May 11, 2026
71f66dd
Figure.pygmtlogo: Set the region based on wordmark for easier design …
seisman May 12, 2026
1ea6e8e
Figure.pygmtlogo: Remove the additional black outline for the black-a…
seisman May 13, 2026
4f09ba6
Figure.pygmtlogo: Parameterize existing tests (#4639)
seisman May 14, 2026
e6394cd
Merge branch 'main' into pygmtlogo
seisman May 23, 2026
c4792ca
Merge branch 'main' into pygmtlogo
seisman Jun 6, 2026
40fb536
Merge branch 'main' into pygmtlogo
seisman Jun 8, 2026
b7e1985
Figure.pygmtlogo: Improved positioning of horizontal wordmark for cir…
seisman Jun 10, 2026
4067d55
Merge branch 'main' into pygmtlogo
seisman Jun 12, 2026
ce7a3c4
Figure.pygmtlogo: Improve positioning of vertical wordmark for circul…
seisman Jun 16, 2026
ee4f3d2
Merge branch 'main' into pygmtlogo
seisman Jun 16, 2026
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
1 change: 1 addition & 0 deletions doc/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Plotting figure elements
Figure.logo
Figure.magnetic_rose
Figure.paragraph
Figure.pygmtlogo
Figure.scalebar
Figure.solar
Figure.text
Expand Down
2 changes: 2 additions & 0 deletions pygmt/figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
from pygmt.src.plot import plot as _plot
from pygmt.src.plot3d import plot3d as _plot3d
from pygmt.src.psconvert import psconvert as _psconvert
from pygmt.src.pygmtlogo import pygmtlogo as _pygmtlogo
from pygmt.src.rose import rose as _rose
from pygmt.src.scalebar import scalebar as _scalebar
from pygmt.src.shift_origin import shift_origin as _shift_origin
Expand Down Expand Up @@ -464,6 +465,7 @@ def _repr_html_(self) -> str:
plot = _plot
plot3d = _plot3d
psconvert = _psconvert
pygmtlogo = _pygmtlogo
rose = _rose
scalebar = _scalebar
set_panel = _set_panel
Expand Down
Loading
Loading