Skip to content
Snippets Groups Projects

simplify/unify flags concatenation workflows

Merged Peter Lünenschloß requested to merge simplifyFlagsConcatenation into develop
+ 1
1
@@ -490,7 +490,7 @@ def concatFlags(
'match'}, default 'match'
The method used for projection of ``field`` flags onto ``target`` flags. See description above for more details.
freq : {None, str}, default None
freq : str or None, default None
The ``freq`` determines the projection range for the projection method. See above description for more details.
Defaultly (None), the sampling frequency of ``field`` is used.
@@ -551,7+551,7 @@
elif method == "match":
func = lambda x: x
func_kws = {}
else:
raise ValueError(f"unknown method {method}")
Loading