@@ -2867,7 +2867,8 @@ def aggregate_spatial(data, geometries, reducer, target_dimension=UNSET, context
28672867 aggregated values (i.e. no-data). The spatial dimensions are replaced by a dimension of type 'geometries'
28682868 and if `target_dimension` is not `null`, a new dimension is added.
28692869 """
2870- return _process ('aggregate_spatial' ,
2870+ return _process (
2871+ "aggregate_spatial" ,
28712872 data = data ,
28722873 geometries = geometries ,
28732874 reducer = build_child_callback (reducer , parent_parameters = ['data' , 'context' ]),
@@ -2903,7 +2904,8 @@ def aggregate_spatial_window(data, reducer, size, boundary=UNSET, align=UNSET, c
29032904 labels will be set to the coordinate at the center of the window. The other dimension properties (name,
29042905 type and reference system) remain unchanged.
29052906 """
2906- return _process ('aggregate_spatial_window' ,
2907+ return _process (
2908+ "aggregate_spatial_window" ,
29072909 data = data ,
29082910 reducer = build_child_callback (reducer , parent_parameters = ['data' , 'context' ]),
29092911 size = size ,
@@ -2942,7 +2944,8 @@ def aggregate_temporal(data, intervals, reducer, labels=UNSET, dimension=UNSET,
29422944 system and resolution) remain unchanged, except for the resolution and dimension labels of the given
29432945 temporal dimension.
29442946 """
2945- return _process ('aggregate_temporal' ,
2947+ return _process (
2948+ "aggregate_temporal" ,
29462949 data = data ,
29472950 intervals = intervals ,
29482951 reducer = build_child_callback (reducer , parent_parameters = ['data' , 'context' ]),
@@ -2996,7 +2999,8 @@ def aggregate_temporal_period(data, period, reducer, dimension=UNSET, context=UN
29962999 the source data cube has just one dimension label `2020-01-05`, the process returns a data cube with just a
29973000 single dimension label (`2020-005`).
29983001 """
2999- return _process ('aggregate_temporal_period' ,
3002+ return _process (
3003+ "aggregate_temporal_period" ,
30003004 data = data ,
30013005 period = period ,
30023006 reducer = build_child_callback (reducer , parent_parameters = ['data' , 'context' ]),
@@ -3137,7 +3141,8 @@ def apply_dimension(data, process, dimension, target_dimension=UNSET, context=UN
31373141 incrementing integers starting from zero, - the resolution changes, and - the reference system is
31383142 undefined.
31393143 """
3140- return _process ('apply_dimension' ,
3144+ return _process (
3145+ "apply_dimension" ,
31413146 data = data ,
31423147 process = build_child_callback (process , parent_parameters = ['data' , 'context' ]),
31433148 dimension = dimension ,
@@ -3195,7 +3200,8 @@ def apply_neighborhood(data, process, size, overlap=UNSET, context=UNSET) -> Pro
31953200 :return: A raster data cube with the newly computed values and the same dimensions. The dimension
31963201 properties (name, type, labels, reference system and resolution) remain unchanged.
31973202 """
3198- return _process ('apply_neighborhood' ,
3203+ return _process (
3204+ "apply_neighborhood" ,
31993205 data = data ,
32003206 process = build_child_callback (process , parent_parameters = ['data' , 'context' ]),
32013207 size = size ,
@@ -3224,7 +3230,8 @@ def apply_polygon(data, polygons, process, mask_value=UNSET, context=UNSET) -> P
32243230 :return: A data cube with the newly computed values and the same dimensions. The dimension properties
32253231 (name, type, labels, reference system and resolution) remain unchanged.
32263232 """
3227- return _process ('apply_polygon' ,
3233+ return _process (
3234+ "apply_polygon" ,
32283235 data = data ,
32293236 polygons = polygons ,
32303237 process = build_child_callback (process , parent_parameters = ['data' , 'context' ]),
@@ -3318,7 +3325,8 @@ def ard_normalized_radar_backscatter(data, elevation_model=UNSET, contributing_a
33183325 DEM-based local incidence angles in degrees. The data returned is CARD4L compliant with corresponding
33193326 metadata.
33203327 """
3321- return _process ('ard_normalized_radar_backscatter' ,
3328+ return _process (
3329+ "ard_normalized_radar_backscatter" ,
33223330 data = data ,
33233331 elevation_model = elevation_model ,
33243332 contributing_area = contributing_area ,
@@ -3373,7 +3381,8 @@ def ard_surface_reflectance(data, atmospheric_correction_method, cloud_detection
33733381 (optional): Contains coefficients used for terrain illumination correction are provided for each pixel.
33743382 The data returned is CARD4L compliant with corresponding metadata.
33753383 """
3376- return _process ('ard_surface_reflectance' ,
3384+ return _process (
3385+ "ard_surface_reflectance" ,
33773386 data = data ,
33783387 atmospheric_correction_method = atmospheric_correction_method ,
33793388 cloud_detection_method = cloud_detection_method ,
@@ -3413,7 +3422,8 @@ def array_apply(data, process, context=UNSET) -> ProcessBuilder:
34133422 :return: An array with the newly computed values. The number of elements are the same as for the original
34143423 array.
34153424 """
3416- return _process ('array_apply' ,
3425+ return _process (
3426+ "array_apply" ,
34173427 data = data ,
34183428 process = build_child_callback (process , parent_parameters = ['x' , 'index' , 'label' , 'context' ]),
34193429 context = context
@@ -3503,7 +3513,8 @@ def array_filter(data, condition, context=UNSET) -> ProcessBuilder:
35033513 :return: An array filtered by the specified condition. The number of elements are less than or equal
35043514 compared to the original array.
35053515 """
3506- return _process ('array_filter' ,
3516+ return _process (
3517+ "array_filter" ,
35073518 data = data ,
35083519 condition = build_child_callback (condition , parent_parameters = ['x' , 'index' , 'label' , 'context' ]),
35093520 context = context
@@ -4056,7 +4067,8 @@ def filter_labels(data, condition, dimension, context=UNSET) -> ProcessBuilder:
40564067 system and resolution) remain unchanged, except that the given dimension has less (or the same) dimension
40574068 labels.
40584069 """
4059- return _process ('filter_labels' ,
4070+ return _process (
4071+ "filter_labels" ,
40604072 data = data ,
40614073 condition = build_child_callback (condition , parent_parameters = ['value' , 'context' ]),
40624074 dimension = dimension ,
@@ -4156,7 +4168,8 @@ def fit_curve(data, parameters, function, ignore_nodata=UNSET) -> ProcessBuilder
41564168
41574169 :return: An array with the optimal values for the parameters.
41584170 """
4159- return _process ('fit_curve' ,
4171+ return _process (
4172+ "fit_curve" ,
41604173 data = data ,
41614174 parameters = parameters ,
41624175 function = build_child_callback (function , parent_parameters = ['x' , 'parameters' ]),
@@ -4704,7 +4717,8 @@ def merge_cubes(cube1, cube2, overlap_resolver=UNSET, context=UNSET) -> ProcessB
47044717 :return: The merged data cube. See the process description for details regarding the dimensions and
47054718 dimension properties (name, type, labels, reference system and resolution).
47064719 """
4707- return _process ('merge_cubes' ,
4720+ return _process (
4721+ "merge_cubes" ,
47084722 cube1 = cube1 ,
47094723 cube2 = cube2 ,
47104724 overlap_resolver = (build_child_callback (overlap_resolver , parent_parameters = ['x' , 'y' , 'context' ]) if overlap_resolver not in [None , UNSET ] else overlap_resolver ),
@@ -4903,7 +4917,8 @@ def predict_curve(parameters, function, dimension, labels=UNSET) -> ProcessBuild
49034917 :return: A data cube with the predicted values with the provided dimension `dimension` having as many
49044918 labels as provided through `labels`.
49054919 """
4906- return _process ('predict_curve' ,
4920+ return _process (
4921+ "predict_curve" ,
49074922 parameters = parameters ,
49084923 function = build_child_callback (function , parent_parameters = ['x' , 'parameters' ]),
49094924 dimension = dimension ,
@@ -4994,7 +5009,8 @@ def reduce_dimension(data, reducer, dimension, context=UNSET) -> ProcessBuilder:
49945009 dimensions decreases by one. The dimension properties (name, type, labels, reference system and resolution)
49955010 for all other dimensions remain unchanged.
49965011 """
4997- return _process ('reduce_dimension' ,
5012+ return _process (
5013+ "reduce_dimension" ,
49985014 data = data ,
49995015 reducer = build_child_callback (reducer , parent_parameters = ['data' , 'context' ]),
50005016 dimension = dimension ,
@@ -5225,7 +5241,8 @@ def sar_backscatter(data, coefficient=UNSET, elevation_model=UNSET, mask=UNSET,
52255241 :return: Backscatter values corresponding to the chosen parametrization. The values are given in linear
52265242 scale.
52275243 """
5228- return _process ('sar_backscatter' ,
5244+ return _process (
5245+ "sar_backscatter" ,
52295246 data = data ,
52305247 coefficient = coefficient ,
52315248 elevation_model = elevation_model ,
0 commit comments