Skip to content
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2ea2061
DOC: Add gallery example to usage of map roses
michaelgrund Jul 23, 2025
929b669
rm tws
michaelgrund Jul 23, 2025
5dac68f
Apply suggestions from code review
michaelgrund Jul 24, 2025
d1f7d9e
Apply suggestions from code review
michaelgrund Jul 28, 2025
b682ff6
Apply suggestions from code review
michaelgrund Jul 28, 2025
0776071
Apply suggestions from code review
michaelgrund Jul 28, 2025
a4a5e50
Merge branch 'main' into gallery-map-roses
michaelgrund Jul 28, 2025
c23f5c6
Apply suggestions from code review
michaelgrund Jul 28, 2025
20e5926
Apply suggestions from code review
michaelgrund Jan 28, 2026
edc3e43
Use new Figure.directional_rose method
michaelgrund Jan 28, 2026
2df12c7
Merge branch 'main' into gallery-map-roses
michaelgrund Jan 28, 2026
3605a62
Update map_roses.py
michaelgrund Jan 28, 2026
2eced7a
Update map_roses.py
michaelgrund Jan 28, 2026
8cecbf1
Update map_roses.py
michaelgrund Jan 28, 2026
7c00cf9
[format-command] fixes
actions-bot Jan 28, 2026
6b17430
Update map_roses.py
michaelgrund Jan 28, 2026
ef363b8
Update map_roses.py
michaelgrund Jan 28, 2026
5fd2e4c
Apply suggestions from code review
michaelgrund Jan 29, 2026
72b8683
Apply suggestions from code review
michaelgrund Jan 29, 2026
5e06f90
Merge branch 'main' into gallery-map-roses
michaelgrund Jan 29, 2026
4c94f88
Merge branch 'main' into gallery-map-roses
michaelgrund Jan 29, 2026
55a7de7
Update examples/gallery/embellishments/map_roses.py
michaelgrund Jan 29, 2026
6f57880
Update map_roses.py
michaelgrund Jan 29, 2026
4f8e06d
Merge branch 'main' into gallery-map-roses
michaelgrund Jan 29, 2026
85b71f4
Apply suggestions from code review
michaelgrund Feb 3, 2026
87f2946
Update map_roses.py
michaelgrund Feb 3, 2026
90d3847
Merge branch 'main' into gallery-map-roses
michaelgrund Feb 3, 2026
97bb8f8
[format-command] fixes
actions-bot Feb 3, 2026
230ca03
Apply suggestions from code review
michaelgrund Feb 3, 2026
1a056fe
Merge branch 'main' into gallery-map-roses
michaelgrund Feb 4, 2026
8ac9b25
Merge branch 'main' into gallery-map-roses
michaelgrund Feb 4, 2026
0e57510
Update map_roses.py
michaelgrund Feb 5, 2026
07d7d1c
Update map_roses.py
michaelgrund Feb 5, 2026
5231d7e
Merge branch 'main' into gallery-map-roses
michaelgrund Feb 5, 2026
4fe66cb
[format-command] fixes
actions-bot Feb 5, 2026
f21a46f
Update map_roses.py
michaelgrund Feb 5, 2026
c082946
Update examples/gallery/embellishments/map_roses.py
michaelgrund Feb 5, 2026
e72b24d
Merge branch 'main' into gallery-map-roses
michaelgrund Feb 5, 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
113 changes: 113 additions & 0 deletions examples/gallery/embellishments/map_roses.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
"""
Directional map rose
=====================

The :meth:`pygmt.Figure.directional_rose` method allows to add
directional roses on maps. Using ``pygmt.Figure.directional_rose()``
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
directional roses on maps. Using ``pygmt.Figure.directional_rose()``
directional roses on maps. Using the method

without any arguments will plot a rose at the bottom left corner,
but this example will focus on customizing its position and
apperance.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
apperance.
appearance.


Colors of the map roses can be adjusted using :gmt-term:`MAP_DEFAULT_PEN`
and :gmt-term:`MAP_TICK_PEN_PRIMARY` via :func:`pygmt.config`. Customizing
label font and color can be done via :gmt-term:`FONT_TITLE`.
"""

# %%
import pygmt
from pygmt.params import Position

fig = pygmt.Figure()

y0 = 20
y1 = -5
width = "1.5c"

fig.basemap(region=[-5, 80, -17, 32], projection="M10c", frame=True)


# Plain rose of 1.5 cm width showing an arrow towards North, a cross
# indicating the cardinal directions, and a label for the North direction
fig.directional_rose(
width=width, labels=True, position=Position((0, y0), cstype="mapcoords")
)

# Fancy, 1.5 cm wide rose of level 1 and labels indicating the different directions
fig.directional_rose(
width=width,
labels=True,
position=Position((20, y0), cstype="mapcoords"),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if we can use plotcoords in the example, so the command can fit on one line, making it much shorter:

fig.directional_rose(width=width, labels=True, position=(1, 1), fancy=True)

fancy=True,
)

# Fancy, 1.5 cm wide rose of level 2 and labels indicating the different directions
fig.directional_rose(
width=width,
labels=True,
position=Position((45, y0), cstype="mapcoords"),
fancy=2,
)

# Fancy, 1.5 cm wide rose of level 3 and labels indicating the different directions
fig.directional_rose(
width=width,
labels=True,
position=Position((70, y0), cstype="mapcoords"),
fancy=3,
)

# Plain rose of 1.5 cm width showing an arrow towards North, a cross
# indicating the cardinal directions, and a label for the North direction.
# Colors of the rose and labels are defined via
# MAP_TICK_PEN_PRIMARY and FONT_TITLE, respectively
with pygmt.config(MAP_TICK_PEN_PRIMARY="purple", FONT_TITLE="8p,darkmagenta"):
fig.directional_rose(
width=width,
labels=True,
position=Position((0, y1), cstype="mapcoords"),
)

# Fancy, 1.5 cm wide rose of level 1 with only one label indicating the North
# direction. Colors of the rose and labels are defined via
# MAP_DEFAULT_PEN, MAP_TICK_PEN_PRIMARY and FONT_TITLE, respectively.
with pygmt.config(
MAP_DEFAULT_PEN="default,pink",
MAP_TICK_PEN_PRIMARY="red3",
FONT_TITLE="8p,Bookman-Light,red3",
):
fig.directional_rose(
width=width,
labels=["", "", "", "N"],
position=Position((20, y1), cstype="mapcoords"),
fancy=True,
)

# Fancy, 1.5 cm wide rose of level 2 with two labels indicating the West and
# East directions
with pygmt.config(
MAP_DEFAULT_PEN="default,lightorange",
MAP_TICK_PEN_PRIMARY="darkorange",
FONT_TITLE="8p,Bookman-Light,darkorange",
):
fig.directional_rose(
width=width,
labels=["W", "E", "", ""],
position=Position((45, y1), cstype="mapcoords"),
fancy=2,
)

# Fancy, 1.5 cm wide rose of level 3 with two labels indicating the North and
# South directions
with pygmt.config(
MAP_DEFAULT_PEN="default,Dodgerblue4",
MAP_TICK_PEN_PRIMARY="Dodgerblue",
FONT_TITLE="8p,AvantGarde-Demi,Dodgerblue4",
):
fig.directional_rose(
width=width,
labels=["", "", "South", "North"],
position=Position((70, y1), cstype="mapcoords"),
fancy=3,
)

fig.show()
Loading