├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue-or-clarification-for-existing-process.md │ ├── new-process-parameter.md │ ├── new-process-proposal.md │ └── other.md └── workflows │ ├── docs.yml │ └── tests.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── absolute.json ├── add.json ├── add_dimension.json ├── aggregate_spatial.json ├── aggregate_temporal.json ├── aggregate_temporal_period.json ├── all.json ├── and.json ├── anomaly.json ├── any.json ├── apply.json ├── apply_dimension.json ├── apply_kernel.json ├── apply_neighborhood.json ├── arccos.json ├── arcosh.json ├── arcsin.json ├── arctan.json ├── arctan2.json ├── array_append.json ├── array_apply.json ├── array_concat.json ├── array_contains.json ├── array_create.json ├── array_element.json ├── array_filter.json ├── array_find.json ├── array_interpolate_linear.json ├── array_labels.json ├── arsinh.json ├── artanh.json ├── between.json ├── ceil.json ├── climatological_normal.json ├── clip.json ├── constant.json ├── cos.json ├── cosh.json ├── count.json ├── create_data_cube.json ├── dimension_labels.json ├── divide.json ├── drop_dimension.json ├── e.json ├── eq.json ├── exp.json ├── extrema.json ├── filter_bands.json ├── filter_bbox.json ├── filter_spatial.json ├── filter_temporal.json ├── first.json ├── floor.json ├── gt.json ├── gte.json ├── if.json ├── int.json ├── is_nan.json ├── is_nodata.json ├── is_valid.json ├── last.json ├── linear_scale_range.json ├── ln.json ├── load_collection.json ├── log.json ├── lt.json ├── lte.json ├── mask.json ├── mask_polygon.json ├── max.json ├── mean.json ├── median.json ├── merge_cubes.json ├── meta ├── implementation.md └── subtype-schemas.json ├── min.json ├── mod.json ├── multiply.json ├── ndvi.json ├── neq.json ├── normalized_difference.json ├── not.json ├── or.json ├── order.json ├── pi.json ├── power.json ├── product.json ├── proposals ├── aggregate_spatial_window.json ├── apply_polygon.json ├── ard_normalized_radar_backscatter.json ├── ard_surface_reflectance.json ├── array_create_labeled.json ├── array_find_label.json ├── array_modify.json ├── atmospheric_correction.json ├── cloud_detection.json ├── cummax.json ├── cummin.json ├── cumproduct.json ├── cumsum.json ├── date_between.json ├── date_difference.json ├── date_shift.json ├── filter_labels.json ├── filter_vector.json ├── fit_curve.json ├── flatten_dimensions.json ├── inspect.json ├── is_infinite.json ├── load_geojson.json ├── load_stac.json ├── load_uploaded_files.json ├── load_url.json ├── nan.json ├── predict_curve.json ├── reduce_spatial.json ├── run_udf_externally.json ├── sar_backscatter.json ├── unflatten_dimension.json ├── vector_buffer.json ├── vector_reproject.json ├── vector_to_random_points.json └── vector_to_regular_points.json ├── quantiles.json ├── rearrange.json ├── reduce_dimension.json ├── rename_dimension.json ├── rename_labels.json ├── resample_cube_spatial.json ├── resample_cube_temporal.json ├── resample_spatial.json ├── round.json ├── run_udf.json ├── save_result.json ├── sd.json ├── sgn.json ├── sin.json ├── sinh.json ├── sort.json ├── sqrt.json ├── subtract.json ├── sum.json ├── tan.json ├── tanh.json ├── tests ├── .gitignore ├── .words ├── README.md ├── docs.html ├── package.json └── testConfig.json ├── text_begins.json ├── text_concat.json ├── text_contains.json ├── text_ends.json ├── trim_cube.json ├── variance.json └── xor.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-or-clarification-for-existing-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/.github/ISSUE_TEMPLATE/issue-or-clarification-for-existing-process.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-process-parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/.github/ISSUE_TEMPLATE/new-process-parameter.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-process-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/.github/ISSUE_TEMPLATE/new-process-proposal.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/README.md -------------------------------------------------------------------------------- /absolute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/absolute.json -------------------------------------------------------------------------------- /add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/add.json -------------------------------------------------------------------------------- /add_dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/add_dimension.json -------------------------------------------------------------------------------- /aggregate_spatial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/aggregate_spatial.json -------------------------------------------------------------------------------- /aggregate_temporal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/aggregate_temporal.json -------------------------------------------------------------------------------- /aggregate_temporal_period.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/aggregate_temporal_period.json -------------------------------------------------------------------------------- /all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/all.json -------------------------------------------------------------------------------- /and.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/and.json -------------------------------------------------------------------------------- /anomaly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/anomaly.json -------------------------------------------------------------------------------- /any.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/any.json -------------------------------------------------------------------------------- /apply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/apply.json -------------------------------------------------------------------------------- /apply_dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/apply_dimension.json -------------------------------------------------------------------------------- /apply_kernel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/apply_kernel.json -------------------------------------------------------------------------------- /apply_neighborhood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/apply_neighborhood.json -------------------------------------------------------------------------------- /arccos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/arccos.json -------------------------------------------------------------------------------- /arcosh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/arcosh.json -------------------------------------------------------------------------------- /arcsin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/arcsin.json -------------------------------------------------------------------------------- /arctan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/arctan.json -------------------------------------------------------------------------------- /arctan2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/arctan2.json -------------------------------------------------------------------------------- /array_append.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_append.json -------------------------------------------------------------------------------- /array_apply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_apply.json -------------------------------------------------------------------------------- /array_concat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_concat.json -------------------------------------------------------------------------------- /array_contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_contains.json -------------------------------------------------------------------------------- /array_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_create.json -------------------------------------------------------------------------------- /array_element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_element.json -------------------------------------------------------------------------------- /array_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_filter.json -------------------------------------------------------------------------------- /array_find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_find.json -------------------------------------------------------------------------------- /array_interpolate_linear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_interpolate_linear.json -------------------------------------------------------------------------------- /array_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/array_labels.json -------------------------------------------------------------------------------- /arsinh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/arsinh.json -------------------------------------------------------------------------------- /artanh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/artanh.json -------------------------------------------------------------------------------- /between.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/between.json -------------------------------------------------------------------------------- /ceil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/ceil.json -------------------------------------------------------------------------------- /climatological_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/climatological_normal.json -------------------------------------------------------------------------------- /clip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/clip.json -------------------------------------------------------------------------------- /constant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/constant.json -------------------------------------------------------------------------------- /cos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/cos.json -------------------------------------------------------------------------------- /cosh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/cosh.json -------------------------------------------------------------------------------- /count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/count.json -------------------------------------------------------------------------------- /create_data_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/create_data_cube.json -------------------------------------------------------------------------------- /dimension_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/dimension_labels.json -------------------------------------------------------------------------------- /divide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/divide.json -------------------------------------------------------------------------------- /drop_dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/drop_dimension.json -------------------------------------------------------------------------------- /e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/e.json -------------------------------------------------------------------------------- /eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/eq.json -------------------------------------------------------------------------------- /exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/exp.json -------------------------------------------------------------------------------- /extrema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/extrema.json -------------------------------------------------------------------------------- /filter_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/filter_bands.json -------------------------------------------------------------------------------- /filter_bbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/filter_bbox.json -------------------------------------------------------------------------------- /filter_spatial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/filter_spatial.json -------------------------------------------------------------------------------- /filter_temporal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/filter_temporal.json -------------------------------------------------------------------------------- /first.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/first.json -------------------------------------------------------------------------------- /floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/floor.json -------------------------------------------------------------------------------- /gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/gt.json -------------------------------------------------------------------------------- /gte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/gte.json -------------------------------------------------------------------------------- /if.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/if.json -------------------------------------------------------------------------------- /int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/int.json -------------------------------------------------------------------------------- /is_nan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/is_nan.json -------------------------------------------------------------------------------- /is_nodata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/is_nodata.json -------------------------------------------------------------------------------- /is_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/is_valid.json -------------------------------------------------------------------------------- /last.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/last.json -------------------------------------------------------------------------------- /linear_scale_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/linear_scale_range.json -------------------------------------------------------------------------------- /ln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/ln.json -------------------------------------------------------------------------------- /load_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/load_collection.json -------------------------------------------------------------------------------- /log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/log.json -------------------------------------------------------------------------------- /lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/lt.json -------------------------------------------------------------------------------- /lte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/lte.json -------------------------------------------------------------------------------- /mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/mask.json -------------------------------------------------------------------------------- /mask_polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/mask_polygon.json -------------------------------------------------------------------------------- /max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/max.json -------------------------------------------------------------------------------- /mean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/mean.json -------------------------------------------------------------------------------- /median.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/median.json -------------------------------------------------------------------------------- /merge_cubes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/merge_cubes.json -------------------------------------------------------------------------------- /meta/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/meta/implementation.md -------------------------------------------------------------------------------- /meta/subtype-schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/meta/subtype-schemas.json -------------------------------------------------------------------------------- /min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/min.json -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/mod.json -------------------------------------------------------------------------------- /multiply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/multiply.json -------------------------------------------------------------------------------- /ndvi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/ndvi.json -------------------------------------------------------------------------------- /neq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/neq.json -------------------------------------------------------------------------------- /normalized_difference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/normalized_difference.json -------------------------------------------------------------------------------- /not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/not.json -------------------------------------------------------------------------------- /or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/or.json -------------------------------------------------------------------------------- /order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/order.json -------------------------------------------------------------------------------- /pi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/pi.json -------------------------------------------------------------------------------- /power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/power.json -------------------------------------------------------------------------------- /product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/product.json -------------------------------------------------------------------------------- /proposals/aggregate_spatial_window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/aggregate_spatial_window.json -------------------------------------------------------------------------------- /proposals/apply_polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/apply_polygon.json -------------------------------------------------------------------------------- /proposals/ard_normalized_radar_backscatter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/ard_normalized_radar_backscatter.json -------------------------------------------------------------------------------- /proposals/ard_surface_reflectance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/ard_surface_reflectance.json -------------------------------------------------------------------------------- /proposals/array_create_labeled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/array_create_labeled.json -------------------------------------------------------------------------------- /proposals/array_find_label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/array_find_label.json -------------------------------------------------------------------------------- /proposals/array_modify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/array_modify.json -------------------------------------------------------------------------------- /proposals/atmospheric_correction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/atmospheric_correction.json -------------------------------------------------------------------------------- /proposals/cloud_detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/cloud_detection.json -------------------------------------------------------------------------------- /proposals/cummax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/cummax.json -------------------------------------------------------------------------------- /proposals/cummin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/cummin.json -------------------------------------------------------------------------------- /proposals/cumproduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/cumproduct.json -------------------------------------------------------------------------------- /proposals/cumsum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/cumsum.json -------------------------------------------------------------------------------- /proposals/date_between.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/date_between.json -------------------------------------------------------------------------------- /proposals/date_difference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/date_difference.json -------------------------------------------------------------------------------- /proposals/date_shift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/date_shift.json -------------------------------------------------------------------------------- /proposals/filter_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/filter_labels.json -------------------------------------------------------------------------------- /proposals/filter_vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/filter_vector.json -------------------------------------------------------------------------------- /proposals/fit_curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/fit_curve.json -------------------------------------------------------------------------------- /proposals/flatten_dimensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/flatten_dimensions.json -------------------------------------------------------------------------------- /proposals/inspect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/inspect.json -------------------------------------------------------------------------------- /proposals/is_infinite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/is_infinite.json -------------------------------------------------------------------------------- /proposals/load_geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/load_geojson.json -------------------------------------------------------------------------------- /proposals/load_stac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/load_stac.json -------------------------------------------------------------------------------- /proposals/load_uploaded_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/load_uploaded_files.json -------------------------------------------------------------------------------- /proposals/load_url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/load_url.json -------------------------------------------------------------------------------- /proposals/nan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/nan.json -------------------------------------------------------------------------------- /proposals/predict_curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/predict_curve.json -------------------------------------------------------------------------------- /proposals/reduce_spatial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/reduce_spatial.json -------------------------------------------------------------------------------- /proposals/run_udf_externally.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/run_udf_externally.json -------------------------------------------------------------------------------- /proposals/sar_backscatter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/sar_backscatter.json -------------------------------------------------------------------------------- /proposals/unflatten_dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/unflatten_dimension.json -------------------------------------------------------------------------------- /proposals/vector_buffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/vector_buffer.json -------------------------------------------------------------------------------- /proposals/vector_reproject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/vector_reproject.json -------------------------------------------------------------------------------- /proposals/vector_to_random_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/vector_to_random_points.json -------------------------------------------------------------------------------- /proposals/vector_to_regular_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/proposals/vector_to_regular_points.json -------------------------------------------------------------------------------- /quantiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/quantiles.json -------------------------------------------------------------------------------- /rearrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/rearrange.json -------------------------------------------------------------------------------- /reduce_dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/reduce_dimension.json -------------------------------------------------------------------------------- /rename_dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/rename_dimension.json -------------------------------------------------------------------------------- /rename_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/rename_labels.json -------------------------------------------------------------------------------- /resample_cube_spatial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/resample_cube_spatial.json -------------------------------------------------------------------------------- /resample_cube_temporal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/resample_cube_temporal.json -------------------------------------------------------------------------------- /resample_spatial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/resample_spatial.json -------------------------------------------------------------------------------- /round.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/round.json -------------------------------------------------------------------------------- /run_udf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/run_udf.json -------------------------------------------------------------------------------- /save_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/save_result.json -------------------------------------------------------------------------------- /sd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/sd.json -------------------------------------------------------------------------------- /sgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/sgn.json -------------------------------------------------------------------------------- /sin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/sin.json -------------------------------------------------------------------------------- /sinh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/sinh.json -------------------------------------------------------------------------------- /sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/sort.json -------------------------------------------------------------------------------- /sqrt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/sqrt.json -------------------------------------------------------------------------------- /subtract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/subtract.json -------------------------------------------------------------------------------- /sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/sum.json -------------------------------------------------------------------------------- /tan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tan.json -------------------------------------------------------------------------------- /tanh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tanh.json -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/.words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tests/.words -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tests/docs.html -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/testConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/tests/testConfig.json -------------------------------------------------------------------------------- /text_begins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/text_begins.json -------------------------------------------------------------------------------- /text_concat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/text_concat.json -------------------------------------------------------------------------------- /text_contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/text_contains.json -------------------------------------------------------------------------------- /text_ends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/text_ends.json -------------------------------------------------------------------------------- /trim_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/trim_cube.json -------------------------------------------------------------------------------- /variance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/variance.json -------------------------------------------------------------------------------- /xor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-processes/HEAD/xor.json --------------------------------------------------------------------------------