@@ -79,7 +79,9 @@ def test_basemap_rose():
79
79
Create a map with a rose.
80
80
"""
81
81
fig = Figure ()
82
- fig .basemap (region = [127.5 , 128.5 , 26 , 27 ], projection = "H15c" , frame = True , rose = "jMC+w5c" )
82
+ fig .basemap (
83
+ region = [127.5 , 128.5 , 26 , 27 ], projection = "H15c" , frame = True , rose = "jMC+w5c"
84
+ )
83
85
return fig
84
86
85
87
@@ -89,7 +91,12 @@ def test_basemap_compass():
89
91
Create a map with a compass.
90
92
"""
91
93
fig = Figure ()
92
- fig .basemap (region = [127.5 , 128.5 , 26 , 27 ], projection = "H15c" , frame = True , compass = "jMC+w5c+d11.5" )
94
+ fig .basemap (
95
+ region = [127.5 , 128.5 , 26 , 27 ],
96
+ projection = "H15c" ,
97
+ frame = True ,
98
+ compass = "jMC+w5c+d11.5" ,
99
+ )
93
100
return fig
94
101
95
102
@@ -99,5 +106,10 @@ def test_basemap_map_scale():
99
106
Create a map with a map scale.
100
107
"""
101
108
fig = Figure ()
102
- fig .basemap (region = [127.5 , 128.5 , 26 , 27 ], projection = "H15c" , frame = True , map_scale = "jMC+c26.5+w10k+f+l" )
109
+ fig .basemap (
110
+ region = [127.5 , 128.5 , 26 , 27 ],
111
+ projection = "H15c" ,
112
+ frame = True ,
113
+ map_scale = "jMC+c26.5+w10k+f+l" ,
114
+ )
103
115
return fig
0 commit comments