Skip to content

Commit cee6028

Browse files
committed
Add verbose and transparency
1 parent f8d2837 commit cee6028

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pygmt/src/directional_rose.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ def directional_rose(
2626
anchor_offset: Sequence[float | str] | None = None,
2727
label: Sequence[str] | bool = False,
2828
fancy: Literal[1, 2, 3] | bool = False,
29+
verbose: Literal["quiet", "error", "warning", "timing", "info", "compat", "debug"]
30+
| bool = False,
31+
transparency: float | None = None,
2932
):
3033
r"""
3134
Add a directional rose on the map.
@@ -112,6 +115,9 @@ def directional_rose(
112115
Alias(anchor_offset, name="anchor_offset", prefix="+o", sep="/", size=2),
113116
Alias(width, name="width", prefix="+w"),
114117
],
118+
).add_common(
119+
V=verbose,
120+
t=transparency,
115121
)
116122

117123
with Session() as lib:

0 commit comments

Comments
 (0)