@@ -68,6 +68,7 @@ def _preprocess(self, **kwargs): # pylint: disable=no-self-use
68
68
G = "land" ,
69
69
S = "water" ,
70
70
U = "timestamp" ,
71
+ c = "ax" ,
71
72
t = "transparency" ,
72
73
)
73
74
@kwargs_to_strings (R = "sequence" )
@@ -146,6 +147,7 @@ def coast(self, **kwargs):
146
147
F = "box" ,
147
148
G = "truncate" ,
148
149
W = "scale" ,
150
+ c = "ax" ,
149
151
t = "transparency" ,
150
152
)
151
153
@kwargs_to_strings (R = "sequence" , G = "sequence" )
@@ -228,6 +230,7 @@ def colorbar(self, **kwargs):
228
230
S = "resample" ,
229
231
U = "timestamp" ,
230
232
W = "pen" ,
233
+ c = "ax" ,
231
234
l = "label" ,
232
235
t = "transparency" ,
233
236
)
@@ -309,6 +312,7 @@ def grdcontour(self, grid, **kwargs):
309
312
B = "frame" ,
310
313
I = "shading" ,
311
314
C = "cmap" ,
315
+ c = "ax" ,
312
316
t = "transparency" ,
313
317
)
314
318
@kwargs_to_strings (R = "sequence" )
@@ -358,6 +362,7 @@ def grdimage(self, grid, **kwargs):
358
362
Wf = "facadepen" ,
359
363
p = "perspective" ,
360
364
I = "shading" ,
365
+ c = "ax" ,
361
366
t = "transparency" ,
362
367
)
363
368
@kwargs_to_strings (R = "sequence" , p = "sequence" )
@@ -476,6 +481,7 @@ def grdview(self, grid, **kwargs):
476
481
l = "label" ,
477
482
C = "cmap" ,
478
483
U = "timestamp" ,
484
+ c = "ax" ,
479
485
t = "transparency" ,
480
486
)
481
487
@kwargs_to_strings (R = "sequence" , i = "sequence_comma" )
@@ -597,6 +603,7 @@ def plot(self, x=None, y=None, data=None, sizes=None, direction=None, **kwargs):
597
603
i = "columns" ,
598
604
l = "label" ,
599
605
C = "levels" ,
606
+ c = "ax" ,
600
607
t = "transparency" ,
601
608
)
602
609
@kwargs_to_strings (R = "sequence" , i = "sequence_comma" )
@@ -686,6 +693,7 @@ def contour(self, x=None, y=None, z=None, data=None, **kwargs):
686
693
Td = "rose" ,
687
694
Tm = "compass" ,
688
695
U = "timestamp" ,
696
+ c = "ax" ,
689
697
t = "transparency" ,
690
698
)
691
699
@kwargs_to_strings (R = "sequence" )
@@ -736,6 +744,7 @@ def basemap(self, **kwargs):
736
744
U = "timestamp" ,
737
745
D = "position" ,
738
746
F = "box" ,
747
+ c = "ax" ,
739
748
t = "transparency" ,
740
749
)
741
750
@kwargs_to_strings (R = "sequence" )
@@ -779,6 +788,7 @@ def logo(self, **kwargs):
779
788
D = "position" ,
780
789
F = "box" ,
781
790
M = "monochrome" ,
791
+ c = "ax" ,
782
792
t = "transparency" ,
783
793
)
784
794
@kwargs_to_strings (R = "sequence" )
@@ -823,11 +833,7 @@ def image(self, imagefile, **kwargs):
823
833
824
834
@fmt_docstring
825
835
@use_alias (
826
- R = "region" ,
827
- J = "projection" ,
828
- D = "position" ,
829
- F = "box" ,
830
- t = "transparency" ,
836
+ R = "region" , J = "projection" , D = "position" , F = "box" , c = "ax" , t = "transparency"
831
837
)
832
838
@kwargs_to_strings (R = "sequence" )
833
839
def legend (self , spec = None , position = "JTR+jTR+o0.2c" , box = "+gwhite+p1p" , ** kwargs ):
@@ -893,6 +899,7 @@ def legend(self, spec=None, position="JTR+jTR+o0.2c", box="+gwhite+p1p", **kwarg
893
899
D = "offset" ,
894
900
G = "fill" ,
895
901
W = "pen" ,
902
+ c = "ax" ,
896
903
t = "transparency" ,
897
904
)
898
905
@kwargs_to_strings (
@@ -1050,11 +1057,7 @@ def text(
1050
1057
1051
1058
@fmt_docstring
1052
1059
@use_alias (
1053
- R = "region" ,
1054
- J = "projection" ,
1055
- B = "frame" ,
1056
- C = "offset" ,
1057
- t = "transparency" ,
1060
+ R = "region" , J = "projection" , B = "frame" , C = "offset" , c = "ax" , t = "transparency"
1058
1061
)
1059
1062
@kwargs_to_strings (R = "sequence" )
1060
1063
def meca (
0 commit comments