@@ -53,7 +53,6 @@ class triangulate: # noqa: N801
53
53
@use_alias (
54
54
I = "spacing" ,
55
55
R = "region" ,
56
- V = "verbose" ,
57
56
b = "binary" ,
58
57
d = "nodata" ,
59
58
e = "find" ,
@@ -72,6 +71,10 @@ def regular_grid(
72
71
z = None ,
73
72
outgrid : PathLike | None = None ,
74
73
projection = None ,
74
+ verbose : Literal [
75
+ "quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug"
76
+ ]
77
+ | bool = False ,
75
78
** kwargs ,
76
79
) -> xr .DataArray | None :
77
80
"""
@@ -99,6 +102,7 @@ def regular_grid(
99
102
100
103
{aliases}
101
104
- J = projection
105
+ - V = verbose
102
106
103
107
Parameters
104
108
----------
@@ -145,6 +149,7 @@ def regular_grid(
145
149
"""
146
150
aliasdict = AliasSystem ().add_common (
147
151
J = projection ,
152
+ V = verbose ,
148
153
)
149
154
aliasdict .merge (kwargs )
150
155
@@ -166,7 +171,6 @@ def regular_grid(
166
171
@use_alias (
167
172
I = "spacing" ,
168
173
R = "region" ,
169
- V = "verbose" ,
170
174
b = "binary" ,
171
175
d = "nodata" ,
172
176
e = "find" ,
@@ -187,6 +191,10 @@ def delaunay_triples(
187
191
output_type : Literal ["pandas" , "numpy" , "file" ] = "pandas" ,
188
192
outfile : PathLike | None = None ,
189
193
projection = None ,
194
+ verbose : Literal [
195
+ "quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug"
196
+ ]
197
+ | bool = False ,
190
198
** kwargs ,
191
199
) -> pd .DataFrame | np .ndarray | None :
192
200
"""
@@ -207,6 +215,7 @@ def delaunay_triples(
207
215
208
216
{aliases}
209
217
- J = projection
218
+ - V = verbose
210
219
211
220
Parameters
212
221
----------
@@ -251,6 +260,7 @@ def delaunay_triples(
251
260
252
261
aliasdict = AliasSystem ().add_common (
253
262
J = projection ,
263
+ V = verbose ,
254
264
)
255
265
aliasdict .merge (kwargs )
256
266
0 commit comments