11
11
from pygmt .helpers import build_arg_list
12
12
13
13
14
- def directional_rose (
14
+ def directional_rose ( # noqa: PLR0913
15
15
self ,
16
16
position ,
17
17
position_type : Literal [
@@ -22,6 +22,10 @@ def directional_rose(
22
22
anchor_offset : Sequence [float | str ] | None = None ,
23
23
label : Sequence [str ] | bool = False ,
24
24
fancy : Literal [1 , 2 , 3 ] | bool = False ,
25
+ box = None ,
26
+ perspective = None ,
27
+ verbose = None ,
28
+ transparency = None ,
25
29
):
26
30
r"""
27
31
Add a directional rose to the map.
@@ -81,6 +85,7 @@ def directional_rose(
81
85
self ._activate_figure ()
82
86
83
87
aliasdict = AliasSystem (
88
+ F = Alias (box , name = "box" ),
84
89
Td = [
85
90
Alias (
86
91
position_type ,
@@ -99,7 +104,10 @@ def directional_rose(
99
104
Alias (justify , name = "justify" , prefix = "+j" ),
100
105
Alias (label , name = "label" , prefix = "+l" , sep = "," , size = 4 ),
101
106
Alias (anchor_offset , name = "anchor_offset" , prefix = "+o" , sep = "/" , size = 2 ),
102
- ]
107
+ ],
108
+ V = Alias (verbose , name = "verbose" ),
109
+ p = Alias (perspective , name = "perspective" ),
110
+ t = Alias (transparency , name = "transparency" ),
103
111
)
104
112
105
113
with Session () as lib :
0 commit comments