@@ -83,7 +83,6 @@ def _blockm(
8383 h = "header" ,
8484 i = "incols" ,
8585 o = "outcols" ,
86- r = "registration" ,
8786 w = "wrap" ,
8887)
8988@kwargs_to_strings (I = "sequence" , i = "sequence_comma" , o = "sequence_comma" )
@@ -95,6 +94,7 @@ def blockmean(
9594 output_type : Literal ["pandas" , "numpy" , "file" ] = "pandas" ,
9695 outfile : PathLike | None = None ,
9796 region : Sequence [float | str ] | str | None = None ,
97+ registration : Literal ["gridline" , "pixel" ] | bool = False ,
9898 verbose : Literal ["quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug" ]
9999 | bool = False ,
100100 ** kwargs ,
@@ -116,6 +116,7 @@ def blockmean(
116116 {aliases}
117117 - R = region
118118 - V = verbose
119+ - r = registration
119120
120121 Parameters
121122 ----------
@@ -170,6 +171,7 @@ def blockmean(
170171 aliasdict = AliasSystem ().add_common (
171172 R = region ,
172173 V = verbose ,
174+ r = registration ,
173175 )
174176 aliasdict .merge (kwargs )
175177
@@ -196,7 +198,6 @@ def blockmean(
196198 h = "header" ,
197199 i = "incols" ,
198200 o = "outcols" ,
199- r = "registration" ,
200201 w = "wrap" ,
201202)
202203@kwargs_to_strings (I = "sequence" , i = "sequence_comma" , o = "sequence_comma" )
@@ -208,6 +209,7 @@ def blockmedian(
208209 output_type : Literal ["pandas" , "numpy" , "file" ] = "pandas" ,
209210 outfile : PathLike | None = None ,
210211 region : Sequence [float | str ] | str | None = None ,
212+ registration : Literal ["gridline" , "pixel" ] | bool = False ,
211213 verbose : Literal ["quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug" ]
212214 | bool = False ,
213215 ** kwargs ,
@@ -229,6 +231,7 @@ def blockmedian(
229231 {aliases}
230232 - R = region
231233 - V = verbose
234+ - r = registration
232235
233236 Parameters
234237 ----------
@@ -277,6 +280,7 @@ def blockmedian(
277280 aliasdict = AliasSystem ().add_common (
278281 R = region ,
279282 V = verbose ,
283+ r = registration ,
280284 )
281285 aliasdict .merge (kwargs )
282286
@@ -303,7 +307,6 @@ def blockmedian(
303307 h = "header" ,
304308 i = "incols" ,
305309 o = "outcols" ,
306- r = "registration" ,
307310 w = "wrap" ,
308311)
309312@kwargs_to_strings (I = "sequence" , i = "sequence_comma" , o = "sequence_comma" )
@@ -315,6 +318,7 @@ def blockmode(
315318 output_type : Literal ["pandas" , "numpy" , "file" ] = "pandas" ,
316319 outfile : PathLike | None = None ,
317320 region : Sequence [float | str ] | str | None = None ,
321+ registration : Literal ["gridline" , "pixel" ] | bool = False ,
318322 verbose : Literal ["quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug" ]
319323 | bool = False ,
320324 ** kwargs ,
@@ -336,6 +340,7 @@ def blockmode(
336340 {aliases}
337341 - R = region
338342 - V = verbose
343+ - r = registration
339344
340345 Parameters
341346 ----------
@@ -382,6 +387,7 @@ def blockmode(
382387 aliasdict = AliasSystem ().add_common (
383388 R = region ,
384389 V = verbose ,
390+ r = registration ,
385391 )
386392 aliasdict .merge (kwargs )
387393
0 commit comments