├── .git-blame-ignore-revs ├── .github └── workflows │ ├── build-wheel.yml │ ├── lint.yml │ ├── sphinx2ghpages.yml │ └── unittests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Jenkinsfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── _static │ ├── custom.css │ └── images │ │ ├── basics │ │ ├── evi-composite.png │ │ ├── evi-masked-composite.png │ │ └── evi-timeseries.png │ │ ├── batchjobs-jupyter-created.png │ │ ├── batchjobs-jupyter-listing.png │ │ ├── batchjobs-jupyter-logs.png │ │ ├── batchjobs-webeditor-listing.png │ │ ├── local │ │ └── local_ndvi.jpg │ │ ├── udf │ │ ├── apply-rescaled-histogram.png │ │ └── logging_arrayshape.png │ │ ├── vito-logo.png │ │ └── welcome.png ├── _templates │ └── hacks.html ├── api-artifacts.rst ├── api-processbuilder.rst ├── api-processes.rst ├── api.rst ├── auth.rst ├── basics.rst ├── batch_jobs.rst ├── best_practices.rst ├── changelog.md ├── conf.py ├── configuration.rst ├── cookbook │ ├── ard.rst │ ├── index.rst │ ├── job_manager.rst │ ├── localprocessing.rst │ ├── sampling.md │ ├── spectral_indices.rst │ ├── tricks.rst │ └── udp_sharing.rst ├── data_access.rst ├── datacube_construction.rst ├── development.rst ├── examples │ └── udf │ │ ├── smooth_savitzky_golay.py │ │ └── udf_modify_spatial.py ├── federation-extension.rst ├── index.rst ├── installation.rst ├── like-a-pro.sh ├── machine_learning.rst ├── process_mapping.py ├── process_mapping.rst ├── processes.rst ├── rst-cheatsheet.rst ├── udf.rst └── udp.rst ├── examples ├── README.md └── archive │ ├── README.md │ ├── R_example.py │ ├── aggregate_spatial.py │ ├── ard_examples.py │ ├── bandmath_example.py │ ├── eodc_example.py │ ├── eurac_example.py │ ├── gee_example.py │ ├── gee_uc1_pol.py │ ├── gee_uc1_temp.py │ ├── mundialis_example.py │ ├── mundialis_extended.py │ ├── mundialis_mini.py │ ├── ndvi_composite.py │ ├── notebooks │ ├── .gitignore │ ├── Client_Side_Processing │ │ ├── client_side_processing_STAC_data_fusion.ipynb │ │ ├── client_side_processing_color_composites.ipynb │ │ ├── client_side_processing_data_fusion.ipynb │ │ └── test_local_collections.ipynb │ ├── Compositing.ipynb │ ├── Datacube preview.ipynb │ ├── EODC_Forum_2019 │ │ ├── EODC.ipynb │ │ ├── EURAC.ipynb │ │ ├── GEE.ipynb │ │ ├── RBackend.ipynb │ │ └── VITO.ipynb │ ├── Exploring_Backend_GEE.ipynb │ ├── OpenEO Platform - Atmospheric Correction.ipynb │ ├── PoC_EODC.ipynb │ ├── ProcessAsAService.ipynb │ ├── Sentinel2_NDVI_GEE.ipynb │ ├── SimpleCompositor.ipynb │ ├── UC1_GEE_Pol.ipynb │ ├── UC1_GEE_Temp.ipynb │ ├── User-Workshop-2020-10 │ │ ├── .gitignore │ │ └── openeo-workshop-python-client.ipynb │ ├── my_ndvi.json │ ├── openEO_Python_Sentinel2_EURAC.ipynb │ ├── openeo-terrascope-webinar.ipynb │ └── welcome.ipynb │ ├── phenology_example.py │ ├── process_wrapper.py │ ├── profiling_example.py │ ├── py3_process_wrapper-wcps_eurac.py │ ├── requirements.txt │ ├── udf │ ├── median_composite.py │ ├── smooth_savitzky_golay.py │ ├── udf_modify_spatial.py │ └── udf_profiling_ndvi.py │ └── vito_example.py ├── openeo ├── __init__.py ├── _version.py ├── api │ ├── __init__.py │ ├── logs.py │ └── process.py ├── capabilities.py ├── config.py ├── dates.py ├── extra │ ├── __init__.py │ ├── artifacts │ │ ├── __init__.py │ │ ├── _artifact_helper_abc.py │ │ ├── _backend.py │ │ ├── _config.py │ │ ├── _s3sts │ │ │ ├── __init__.py │ │ │ ├── artifact_helper.py │ │ │ ├── config.py │ │ │ ├── model.py │ │ │ ├── sts.py │ │ │ └── tracer.py │ │ ├── _uri.py │ │ ├── artifact_helper.py │ │ └── exceptions.py │ ├── job_management │ │ ├── __init__.py │ │ ├── _interface.py │ │ ├── _job_db.py │ │ ├── _job_splitting.py │ │ ├── _manager.py │ │ ├── _thread_worker.py │ │ ├── process_based.py │ │ └── stac_job_db.py │ └── spectral_indices │ │ ├── __init__.py │ │ ├── resources │ │ ├── README.md │ │ ├── awesome-spectral-indices │ │ │ ├── LICENSE │ │ │ ├── bands.json │ │ │ ├── constants.json │ │ │ └── spectral-indices-dict.json │ │ └── extra-indices-dict.json │ │ └── spectral_indices.py ├── internal │ ├── __init__.py │ ├── documentation.py │ ├── graph_building.py │ ├── jupyter.py │ ├── process_graph_visitor.py │ ├── processes │ │ ├── __init__.py │ │ ├── builder.py │ │ ├── generator.py │ │ └── parse.py │ └── warnings.py ├── local │ ├── __init__.py │ ├── collections.py │ ├── connection.py │ └── processing.py ├── metadata.py ├── processes.py ├── rest │ ├── __init__.py │ ├── _connection.py │ ├── _datacube.py │ ├── _testing.py │ ├── auth │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── oidc.py │ │ └── testing.py │ ├── capabilities.py │ ├── connection.py │ ├── conversions.py │ ├── datacube.py │ ├── graph_building.py │ ├── job.py │ ├── mlmodel.py │ ├── models │ │ ├── __init__.py │ │ ├── federation_extension.py │ │ ├── general.py │ │ └── logs.py │ ├── multiresult.py │ ├── rest_capabilities.py │ ├── result.py │ ├── service.py │ ├── stac_resource.py │ ├── udp.py │ ├── userfile.py │ └── vectorcube.py ├── testing │ ├── __init__.py │ ├── io.py │ ├── results.py │ └── stac.py ├── udf │ ├── __init__.py │ ├── _compat.py │ ├── debug.py │ ├── feature_collection.py │ ├── run_code.py │ ├── structured_data.py │ ├── udf_data.py │ ├── udf_signatures.py │ └── xarraydatacube.py ├── util.py └── utils │ ├── __init__.py │ ├── http.py │ ├── normalize.py │ └── version.py ├── pyproject.toml ├── pytest.ini ├── setup.cfg ├── setup.py ├── specs ├── .gitignore ├── openeo-processes-legacy │ ├── README.md │ ├── load_ml_model.json │ ├── load_result.json │ └── predict_random_forest.json └── update-subrepos.py └── tests ├── __init__.py ├── api ├── __init__.py └── test_process.py ├── conftest.py ├── data ├── 1.0.0 │ ├── aggregate_zonal_parameter.json │ ├── aggregate_zonal_path.json │ ├── aggregate_zonal_polygon.json │ ├── apply_absolute.json │ ├── apply_chain.json │ ├── apply_dimension_bandmath.json │ ├── apply_dimension_interpolate.json │ ├── apply_dimension_max.json │ ├── apply_dimension_temporal_cumsum.json │ ├── apply_dimension_time_to_bands.json │ ├── apply_math.json │ ├── apply_math_reflected.json │ ├── apply_neighborhood_trim.json │ ├── band0.json │ ├── band_red.json │ ├── band_red_filtered.json │ ├── bm_add_bands.json │ ├── bm_add_sub_mul_div_scalar.json │ ├── bm_comparison.json │ ├── bm_eq_scalar.json │ ├── bm_gt_scalar.json │ ├── bm_invert_band.json │ ├── bm_ln.json │ ├── bm_log.json │ ├── bm_nd_bands.json │ ├── bm_negative.json │ ├── db_to_natural.json │ ├── evi_graph.json │ ├── filter_bands.json │ ├── fuzzy_mask.json │ ├── fuzzy_mask_add_dim.json │ ├── load_collection_bands.json │ ├── load_collection_bands_and_band_math.json │ ├── load_collection_properties.json │ ├── load_collection_properties_eq.json │ ├── logical_and.json │ ├── logical_or.json │ ├── merge_cubes_add.json │ ├── merge_cubes_max.json │ ├── merge_cubes_multiple.json │ ├── merge_cubes_no_resolver.json │ ├── merge_cubes_or.json │ ├── merge_ndvi_self.json │ ├── min_time.json │ ├── notequal.json │ ├── pipe.json │ ├── process_foo.json │ ├── process_foo_namespaced.json │ ├── reduce_dimension_bandmath.json │ ├── reduce_dimension_max.json │ ├── run_udf_on_vector_data_cube.json │ ├── save_user_defined_process.json │ ├── tiled_viewing_service.json │ ├── udf_graph.json │ └── udp_details.json ├── example_aoi.pq ├── geojson │ ├── polygon01.json │ └── polygon02.json ├── polygon.json ├── processes │ └── 1.0 │ │ ├── add.json │ │ └── cos.json ├── stac │ └── collections │ │ ├── agera5_daily01.json │ │ ├── cdse-sentinel-2-l2a.json │ │ └── terrascope-sentinel-2-l2a.json └── user_dirs │ ├── AppData │ └── Roaming │ │ └── openeo-python-client │ │ └── .gitignore │ ├── config │ └── openeo-python-client │ │ └── .gitignore │ └── data │ └── openeo-python-client │ └── .gitignore ├── extra ├── __init__.py ├── artifacts │ ├── __init__.py │ ├── _s3sts │ │ ├── __init__.py │ │ ├── test_config.py │ │ ├── test_s3sts.py │ │ └── test_s3uri.py │ ├── conftest.py │ └── test_artifact_helper.py ├── job_management │ ├── test_job_db.py │ ├── test_job_splitting.py │ ├── test_manager.py │ ├── test_process_based.py │ ├── test_stac_job_db.py │ └── test_thread_worker.py └── spectral_indices │ ├── __init__.py │ ├── conftest.py │ └── test_spectral_indices.py ├── internal ├── __init__.py ├── processes │ ├── __init__.py │ ├── test_builder.py │ ├── test_generator.py │ └── test_parse.py ├── test_documentation.py ├── test_graphbuilding.py ├── test_jupyter.py ├── test_process_graph_visitor.py └── test_warnings.py ├── local ├── __init__.py └── test_local_collection.py ├── pre_test.sh ├── rest ├── __init__.py ├── auth │ ├── __init__.py │ ├── test_cli.py │ ├── test_config.py │ ├── test_oidc.py │ └── test_testing.py ├── conftest.py ├── datacube │ ├── __init__.py │ ├── conftest.py │ ├── test_bandmath.py │ ├── test_base_datacube.py │ ├── test_datacube.py │ ├── test_datacube100.py │ ├── test_mlmodel.py │ ├── test_processbuilder.py │ ├── test_vectorcube.py │ └── test_zonal_stats.py ├── models │ ├── __init__.py │ ├── test_federation_extension.py │ ├── test_general.py │ └── test_logs.py ├── test_capabilities.py ├── test_connection.py ├── test_conversions.py ├── test_job.py ├── test_job_results.py ├── test_multiresult.py ├── test_result.py ├── test_testing.py ├── test_udp.py └── test_userfile.py ├── test_config.py ├── test_dates.py ├── test_metadata.py ├── test_processes.py ├── test_util.py ├── testing ├── test_io.py ├── test_results.py └── test_stac.py ├── udf ├── __init__.py ├── test_compat.py ├── test_debug.py ├── test_feature_collection.py ├── test_run_code.py ├── test_structured_data.py ├── test_udf_data.py ├── test_xarraydatacube.py └── udf_code │ ├── map_fabs.py │ ├── multiply_factor.py │ ├── ndvi01.py │ ├── ndvi02.py │ ├── ndvi03.py │ ├── reduce_time_mean.py │ ├── reduce_time_min_median_max.py │ └── statistics.py └── utils ├── test_http.py ├── test_nomalize.py └── test_version.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/workflows/build-wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/.github/workflows/build-wheel.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx2ghpages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/.github/workflows/sphinx2ghpages.yml -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/images/basics/evi-composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/basics/evi-composite.png -------------------------------------------------------------------------------- /docs/_static/images/basics/evi-masked-composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/basics/evi-masked-composite.png -------------------------------------------------------------------------------- /docs/_static/images/basics/evi-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/basics/evi-timeseries.png -------------------------------------------------------------------------------- /docs/_static/images/batchjobs-jupyter-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/batchjobs-jupyter-created.png -------------------------------------------------------------------------------- /docs/_static/images/batchjobs-jupyter-listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/batchjobs-jupyter-listing.png -------------------------------------------------------------------------------- /docs/_static/images/batchjobs-jupyter-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/batchjobs-jupyter-logs.png -------------------------------------------------------------------------------- /docs/_static/images/batchjobs-webeditor-listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/batchjobs-webeditor-listing.png -------------------------------------------------------------------------------- /docs/_static/images/local/local_ndvi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/local/local_ndvi.jpg -------------------------------------------------------------------------------- /docs/_static/images/udf/apply-rescaled-histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/udf/apply-rescaled-histogram.png -------------------------------------------------------------------------------- /docs/_static/images/udf/logging_arrayshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/udf/logging_arrayshape.png -------------------------------------------------------------------------------- /docs/_static/images/vito-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/vito-logo.png -------------------------------------------------------------------------------- /docs/_static/images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_static/images/welcome.png -------------------------------------------------------------------------------- /docs/_templates/hacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/_templates/hacks.html -------------------------------------------------------------------------------- /docs/api-artifacts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/api-artifacts.rst -------------------------------------------------------------------------------- /docs/api-processbuilder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/api-processbuilder.rst -------------------------------------------------------------------------------- /docs/api-processes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/api-processes.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/auth.rst -------------------------------------------------------------------------------- /docs/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/basics.rst -------------------------------------------------------------------------------- /docs/batch_jobs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/batch_jobs.rst -------------------------------------------------------------------------------- /docs/best_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/best_practices.rst -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/cookbook/ard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/ard.rst -------------------------------------------------------------------------------- /docs/cookbook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/index.rst -------------------------------------------------------------------------------- /docs/cookbook/job_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/job_manager.rst -------------------------------------------------------------------------------- /docs/cookbook/localprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/localprocessing.rst -------------------------------------------------------------------------------- /docs/cookbook/sampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/sampling.md -------------------------------------------------------------------------------- /docs/cookbook/spectral_indices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/spectral_indices.rst -------------------------------------------------------------------------------- /docs/cookbook/tricks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/tricks.rst -------------------------------------------------------------------------------- /docs/cookbook/udp_sharing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/cookbook/udp_sharing.rst -------------------------------------------------------------------------------- /docs/data_access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/data_access.rst -------------------------------------------------------------------------------- /docs/datacube_construction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/datacube_construction.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/examples/udf/smooth_savitzky_golay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/examples/udf/smooth_savitzky_golay.py -------------------------------------------------------------------------------- /docs/examples/udf/udf_modify_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/examples/udf/udf_modify_spatial.py -------------------------------------------------------------------------------- /docs/federation-extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/federation-extension.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/like-a-pro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/like-a-pro.sh -------------------------------------------------------------------------------- /docs/machine_learning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/machine_learning.rst -------------------------------------------------------------------------------- /docs/process_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/process_mapping.py -------------------------------------------------------------------------------- /docs/process_mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/process_mapping.rst -------------------------------------------------------------------------------- /docs/processes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/processes.rst -------------------------------------------------------------------------------- /docs/rst-cheatsheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/rst-cheatsheet.rst -------------------------------------------------------------------------------- /docs/udf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/udf.rst -------------------------------------------------------------------------------- /docs/udp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/docs/udp.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/README.md -------------------------------------------------------------------------------- /examples/archive/R_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/R_example.py -------------------------------------------------------------------------------- /examples/archive/aggregate_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/aggregate_spatial.py -------------------------------------------------------------------------------- /examples/archive/ard_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/ard_examples.py -------------------------------------------------------------------------------- /examples/archive/bandmath_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/bandmath_example.py -------------------------------------------------------------------------------- /examples/archive/eodc_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/eodc_example.py -------------------------------------------------------------------------------- /examples/archive/eurac_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/eurac_example.py -------------------------------------------------------------------------------- /examples/archive/gee_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/gee_example.py -------------------------------------------------------------------------------- /examples/archive/gee_uc1_pol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/gee_uc1_pol.py -------------------------------------------------------------------------------- /examples/archive/gee_uc1_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/gee_uc1_temp.py -------------------------------------------------------------------------------- /examples/archive/mundialis_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/mundialis_example.py -------------------------------------------------------------------------------- /examples/archive/mundialis_extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/mundialis_extended.py -------------------------------------------------------------------------------- /examples/archive/mundialis_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/mundialis_mini.py -------------------------------------------------------------------------------- /examples/archive/ndvi_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/ndvi_composite.py -------------------------------------------------------------------------------- /examples/archive/notebooks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/.gitignore -------------------------------------------------------------------------------- /examples/archive/notebooks/Client_Side_Processing/client_side_processing_STAC_data_fusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Client_Side_Processing/client_side_processing_STAC_data_fusion.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/Client_Side_Processing/client_side_processing_color_composites.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Client_Side_Processing/client_side_processing_color_composites.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/Client_Side_Processing/client_side_processing_data_fusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Client_Side_Processing/client_side_processing_data_fusion.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/Client_Side_Processing/test_local_collections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Client_Side_Processing/test_local_collections.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/Compositing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Compositing.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/Datacube preview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Datacube preview.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/EODC_Forum_2019/EODC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/EODC_Forum_2019/EODC.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/EODC_Forum_2019/EURAC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/EODC_Forum_2019/EURAC.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/EODC_Forum_2019/GEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/EODC_Forum_2019/GEE.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/EODC_Forum_2019/RBackend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/EODC_Forum_2019/RBackend.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/EODC_Forum_2019/VITO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/EODC_Forum_2019/VITO.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/Exploring_Backend_GEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Exploring_Backend_GEE.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/OpenEO Platform - Atmospheric Correction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/OpenEO Platform - Atmospheric Correction.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/PoC_EODC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/PoC_EODC.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/ProcessAsAService.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/ProcessAsAService.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/Sentinel2_NDVI_GEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/Sentinel2_NDVI_GEE.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/SimpleCompositor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/SimpleCompositor.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/UC1_GEE_Pol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/UC1_GEE_Pol.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/UC1_GEE_Temp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/UC1_GEE_Temp.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/User-Workshop-2020-10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/User-Workshop-2020-10/.gitignore -------------------------------------------------------------------------------- /examples/archive/notebooks/User-Workshop-2020-10/openeo-workshop-python-client.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/User-Workshop-2020-10/openeo-workshop-python-client.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/my_ndvi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/my_ndvi.json -------------------------------------------------------------------------------- /examples/archive/notebooks/openEO_Python_Sentinel2_EURAC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/openEO_Python_Sentinel2_EURAC.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/openeo-terrascope-webinar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/openeo-terrascope-webinar.ipynb -------------------------------------------------------------------------------- /examples/archive/notebooks/welcome.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/notebooks/welcome.ipynb -------------------------------------------------------------------------------- /examples/archive/phenology_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/phenology_example.py -------------------------------------------------------------------------------- /examples/archive/process_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/process_wrapper.py -------------------------------------------------------------------------------- /examples/archive/profiling_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/profiling_example.py -------------------------------------------------------------------------------- /examples/archive/py3_process_wrapper-wcps_eurac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/py3_process_wrapper-wcps_eurac.py -------------------------------------------------------------------------------- /examples/archive/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/requirements.txt -------------------------------------------------------------------------------- /examples/archive/udf/median_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/udf/median_composite.py -------------------------------------------------------------------------------- /examples/archive/udf/smooth_savitzky_golay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/udf/smooth_savitzky_golay.py -------------------------------------------------------------------------------- /examples/archive/udf/udf_modify_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/udf/udf_modify_spatial.py -------------------------------------------------------------------------------- /examples/archive/udf/udf_profiling_ndvi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/udf/udf_profiling_ndvi.py -------------------------------------------------------------------------------- /examples/archive/vito_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/examples/archive/vito_example.py -------------------------------------------------------------------------------- /openeo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/__init__.py -------------------------------------------------------------------------------- /openeo/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.47.0a3" 2 | -------------------------------------------------------------------------------- /openeo/api/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Wrappers for openEO API concepts. 3 | """ 4 | -------------------------------------------------------------------------------- /openeo/api/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/api/logs.py -------------------------------------------------------------------------------- /openeo/api/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/api/process.py -------------------------------------------------------------------------------- /openeo/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/capabilities.py -------------------------------------------------------------------------------- /openeo/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/config.py -------------------------------------------------------------------------------- /openeo/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/dates.py -------------------------------------------------------------------------------- /openeo/extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openeo/extra/artifacts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/__init__.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_artifact_helper_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_artifact_helper_abc.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_backend.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_config.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_s3sts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openeo/extra/artifacts/_s3sts/artifact_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_s3sts/artifact_helper.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_s3sts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_s3sts/config.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_s3sts/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_s3sts/model.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_s3sts/sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_s3sts/sts.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_s3sts/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_s3sts/tracer.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/_uri.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/artifact_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/artifact_helper.py -------------------------------------------------------------------------------- /openeo/extra/artifacts/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/artifacts/exceptions.py -------------------------------------------------------------------------------- /openeo/extra/job_management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/__init__.py -------------------------------------------------------------------------------- /openeo/extra/job_management/_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/_interface.py -------------------------------------------------------------------------------- /openeo/extra/job_management/_job_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/_job_db.py -------------------------------------------------------------------------------- /openeo/extra/job_management/_job_splitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/_job_splitting.py -------------------------------------------------------------------------------- /openeo/extra/job_management/_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/_manager.py -------------------------------------------------------------------------------- /openeo/extra/job_management/_thread_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/_thread_worker.py -------------------------------------------------------------------------------- /openeo/extra/job_management/process_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/process_based.py -------------------------------------------------------------------------------- /openeo/extra/job_management/stac_job_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/job_management/stac_job_db.py -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/__init__.py -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/resources/README.md -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/resources/awesome-spectral-indices/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/resources/awesome-spectral-indices/LICENSE -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/resources/awesome-spectral-indices/bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/resources/awesome-spectral-indices/bands.json -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/resources/awesome-spectral-indices/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/resources/awesome-spectral-indices/constants.json -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/resources/awesome-spectral-indices/spectral-indices-dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/resources/awesome-spectral-indices/spectral-indices-dict.json -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/resources/extra-indices-dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/resources/extra-indices-dict.json -------------------------------------------------------------------------------- /openeo/extra/spectral_indices/spectral_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/extra/spectral_indices/spectral_indices.py -------------------------------------------------------------------------------- /openeo/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openeo/internal/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/documentation.py -------------------------------------------------------------------------------- /openeo/internal/graph_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/graph_building.py -------------------------------------------------------------------------------- /openeo/internal/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/jupyter.py -------------------------------------------------------------------------------- /openeo/internal/process_graph_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/process_graph_visitor.py -------------------------------------------------------------------------------- /openeo/internal/processes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openeo/internal/processes/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/processes/builder.py -------------------------------------------------------------------------------- /openeo/internal/processes/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/processes/generator.py -------------------------------------------------------------------------------- /openeo/internal/processes/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/processes/parse.py -------------------------------------------------------------------------------- /openeo/internal/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/internal/warnings.py -------------------------------------------------------------------------------- /openeo/local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/local/__init__.py -------------------------------------------------------------------------------- /openeo/local/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/local/collections.py -------------------------------------------------------------------------------- /openeo/local/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/local/connection.py -------------------------------------------------------------------------------- /openeo/local/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/local/processing.py -------------------------------------------------------------------------------- /openeo/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/metadata.py -------------------------------------------------------------------------------- /openeo/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/processes.py -------------------------------------------------------------------------------- /openeo/rest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/__init__.py -------------------------------------------------------------------------------- /openeo/rest/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/_connection.py -------------------------------------------------------------------------------- /openeo/rest/_datacube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/_datacube.py -------------------------------------------------------------------------------- /openeo/rest/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/_testing.py -------------------------------------------------------------------------------- /openeo/rest/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openeo/rest/auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/auth/auth.py -------------------------------------------------------------------------------- /openeo/rest/auth/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/auth/cli.py -------------------------------------------------------------------------------- /openeo/rest/auth/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/auth/config.py -------------------------------------------------------------------------------- /openeo/rest/auth/oidc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/auth/oidc.py -------------------------------------------------------------------------------- /openeo/rest/auth/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/auth/testing.py -------------------------------------------------------------------------------- /openeo/rest/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/capabilities.py -------------------------------------------------------------------------------- /openeo/rest/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/connection.py -------------------------------------------------------------------------------- /openeo/rest/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/conversions.py -------------------------------------------------------------------------------- /openeo/rest/datacube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/datacube.py -------------------------------------------------------------------------------- /openeo/rest/graph_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/graph_building.py -------------------------------------------------------------------------------- /openeo/rest/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/job.py -------------------------------------------------------------------------------- /openeo/rest/mlmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/mlmodel.py -------------------------------------------------------------------------------- /openeo/rest/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openeo/rest/models/federation_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/models/federation_extension.py -------------------------------------------------------------------------------- /openeo/rest/models/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/models/general.py -------------------------------------------------------------------------------- /openeo/rest/models/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/models/logs.py -------------------------------------------------------------------------------- /openeo/rest/multiresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/multiresult.py -------------------------------------------------------------------------------- /openeo/rest/rest_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/rest_capabilities.py -------------------------------------------------------------------------------- /openeo/rest/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/result.py -------------------------------------------------------------------------------- /openeo/rest/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/service.py -------------------------------------------------------------------------------- /openeo/rest/stac_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/stac_resource.py -------------------------------------------------------------------------------- /openeo/rest/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/udp.py -------------------------------------------------------------------------------- /openeo/rest/userfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/userfile.py -------------------------------------------------------------------------------- /openeo/rest/vectorcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/rest/vectorcube.py -------------------------------------------------------------------------------- /openeo/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/testing/__init__.py -------------------------------------------------------------------------------- /openeo/testing/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/testing/io.py -------------------------------------------------------------------------------- /openeo/testing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/testing/results.py -------------------------------------------------------------------------------- /openeo/testing/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/testing/stac.py -------------------------------------------------------------------------------- /openeo/udf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/__init__.py -------------------------------------------------------------------------------- /openeo/udf/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/_compat.py -------------------------------------------------------------------------------- /openeo/udf/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/debug.py -------------------------------------------------------------------------------- /openeo/udf/feature_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/feature_collection.py -------------------------------------------------------------------------------- /openeo/udf/run_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/run_code.py -------------------------------------------------------------------------------- /openeo/udf/structured_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/structured_data.py -------------------------------------------------------------------------------- /openeo/udf/udf_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/udf_data.py -------------------------------------------------------------------------------- /openeo/udf/udf_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/udf_signatures.py -------------------------------------------------------------------------------- /openeo/udf/xarraydatacube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/udf/xarraydatacube.py -------------------------------------------------------------------------------- /openeo/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/util.py -------------------------------------------------------------------------------- /openeo/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openeo/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/utils/http.py -------------------------------------------------------------------------------- /openeo/utils/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/utils/normalize.py -------------------------------------------------------------------------------- /openeo/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/openeo/utils/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/setup.py -------------------------------------------------------------------------------- /specs/.gitignore: -------------------------------------------------------------------------------- 1 | openeo-processes/ 2 | -------------------------------------------------------------------------------- /specs/openeo-processes-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/specs/openeo-processes-legacy/README.md -------------------------------------------------------------------------------- /specs/openeo-processes-legacy/load_ml_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/specs/openeo-processes-legacy/load_ml_model.json -------------------------------------------------------------------------------- /specs/openeo-processes-legacy/load_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/specs/openeo-processes-legacy/load_result.json -------------------------------------------------------------------------------- /specs/openeo-processes-legacy/predict_random_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/specs/openeo-processes-legacy/predict_random_forest.json -------------------------------------------------------------------------------- /specs/update-subrepos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/specs/update-subrepos.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/api/test_process.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/1.0.0/aggregate_zonal_parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/aggregate_zonal_parameter.json -------------------------------------------------------------------------------- /tests/data/1.0.0/aggregate_zonal_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/aggregate_zonal_path.json -------------------------------------------------------------------------------- /tests/data/1.0.0/aggregate_zonal_polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/aggregate_zonal_polygon.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_absolute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_absolute.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_chain.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_dimension_bandmath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_dimension_bandmath.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_dimension_interpolate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_dimension_interpolate.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_dimension_max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_dimension_max.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_dimension_temporal_cumsum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_dimension_temporal_cumsum.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_dimension_time_to_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_dimension_time_to_bands.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_math.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_math.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_math_reflected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_math_reflected.json -------------------------------------------------------------------------------- /tests/data/1.0.0/apply_neighborhood_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/apply_neighborhood_trim.json -------------------------------------------------------------------------------- /tests/data/1.0.0/band0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/band0.json -------------------------------------------------------------------------------- /tests/data/1.0.0/band_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/band_red.json -------------------------------------------------------------------------------- /tests/data/1.0.0/band_red_filtered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/band_red_filtered.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_add_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_add_bands.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_add_sub_mul_div_scalar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_add_sub_mul_div_scalar.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_comparison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_comparison.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_eq_scalar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_eq_scalar.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_gt_scalar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_gt_scalar.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_invert_band.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_invert_band.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_ln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_ln.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_log.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_nd_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_nd_bands.json -------------------------------------------------------------------------------- /tests/data/1.0.0/bm_negative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/bm_negative.json -------------------------------------------------------------------------------- /tests/data/1.0.0/db_to_natural.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/db_to_natural.json -------------------------------------------------------------------------------- /tests/data/1.0.0/evi_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/evi_graph.json -------------------------------------------------------------------------------- /tests/data/1.0.0/filter_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/filter_bands.json -------------------------------------------------------------------------------- /tests/data/1.0.0/fuzzy_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/fuzzy_mask.json -------------------------------------------------------------------------------- /tests/data/1.0.0/fuzzy_mask_add_dim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/fuzzy_mask_add_dim.json -------------------------------------------------------------------------------- /tests/data/1.0.0/load_collection_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/load_collection_bands.json -------------------------------------------------------------------------------- /tests/data/1.0.0/load_collection_bands_and_band_math.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/load_collection_bands_and_band_math.json -------------------------------------------------------------------------------- /tests/data/1.0.0/load_collection_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/load_collection_properties.json -------------------------------------------------------------------------------- /tests/data/1.0.0/load_collection_properties_eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/load_collection_properties_eq.json -------------------------------------------------------------------------------- /tests/data/1.0.0/logical_and.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/logical_and.json -------------------------------------------------------------------------------- /tests/data/1.0.0/logical_or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/logical_or.json -------------------------------------------------------------------------------- /tests/data/1.0.0/merge_cubes_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/merge_cubes_add.json -------------------------------------------------------------------------------- /tests/data/1.0.0/merge_cubes_max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/merge_cubes_max.json -------------------------------------------------------------------------------- /tests/data/1.0.0/merge_cubes_multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/merge_cubes_multiple.json -------------------------------------------------------------------------------- /tests/data/1.0.0/merge_cubes_no_resolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/merge_cubes_no_resolver.json -------------------------------------------------------------------------------- /tests/data/1.0.0/merge_cubes_or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/merge_cubes_or.json -------------------------------------------------------------------------------- /tests/data/1.0.0/merge_ndvi_self.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/merge_ndvi_self.json -------------------------------------------------------------------------------- /tests/data/1.0.0/min_time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/min_time.json -------------------------------------------------------------------------------- /tests/data/1.0.0/notequal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/notequal.json -------------------------------------------------------------------------------- /tests/data/1.0.0/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/pipe.json -------------------------------------------------------------------------------- /tests/data/1.0.0/process_foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/process_foo.json -------------------------------------------------------------------------------- /tests/data/1.0.0/process_foo_namespaced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/process_foo_namespaced.json -------------------------------------------------------------------------------- /tests/data/1.0.0/reduce_dimension_bandmath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/reduce_dimension_bandmath.json -------------------------------------------------------------------------------- /tests/data/1.0.0/reduce_dimension_max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/reduce_dimension_max.json -------------------------------------------------------------------------------- /tests/data/1.0.0/run_udf_on_vector_data_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/run_udf_on_vector_data_cube.json -------------------------------------------------------------------------------- /tests/data/1.0.0/save_user_defined_process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/save_user_defined_process.json -------------------------------------------------------------------------------- /tests/data/1.0.0/tiled_viewing_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/tiled_viewing_service.json -------------------------------------------------------------------------------- /tests/data/1.0.0/udf_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/udf_graph.json -------------------------------------------------------------------------------- /tests/data/1.0.0/udp_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/1.0.0/udp_details.json -------------------------------------------------------------------------------- /tests/data/example_aoi.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/example_aoi.pq -------------------------------------------------------------------------------- /tests/data/geojson/polygon01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/geojson/polygon01.json -------------------------------------------------------------------------------- /tests/data/geojson/polygon02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/geojson/polygon02.json -------------------------------------------------------------------------------- /tests/data/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/polygon.json -------------------------------------------------------------------------------- /tests/data/processes/1.0/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/processes/1.0/add.json -------------------------------------------------------------------------------- /tests/data/processes/1.0/cos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/processes/1.0/cos.json -------------------------------------------------------------------------------- /tests/data/stac/collections/agera5_daily01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/stac/collections/agera5_daily01.json -------------------------------------------------------------------------------- /tests/data/stac/collections/cdse-sentinel-2-l2a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/stac/collections/cdse-sentinel-2-l2a.json -------------------------------------------------------------------------------- /tests/data/stac/collections/terrascope-sentinel-2-l2a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/data/stac/collections/terrascope-sentinel-2-l2a.json -------------------------------------------------------------------------------- /tests/data/user_dirs/AppData/Roaming/openeo-python-client/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/data/user_dirs/config/openeo-python-client/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/data/user_dirs/data/openeo-python-client/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extra/artifacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extra/artifacts/_s3sts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extra/artifacts/_s3sts/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/artifacts/_s3sts/test_config.py -------------------------------------------------------------------------------- /tests/extra/artifacts/_s3sts/test_s3sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/artifacts/_s3sts/test_s3sts.py -------------------------------------------------------------------------------- /tests/extra/artifacts/_s3sts/test_s3uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/artifacts/_s3sts/test_s3uri.py -------------------------------------------------------------------------------- /tests/extra/artifacts/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/artifacts/conftest.py -------------------------------------------------------------------------------- /tests/extra/artifacts/test_artifact_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/artifacts/test_artifact_helper.py -------------------------------------------------------------------------------- /tests/extra/job_management/test_job_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/job_management/test_job_db.py -------------------------------------------------------------------------------- /tests/extra/job_management/test_job_splitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/job_management/test_job_splitting.py -------------------------------------------------------------------------------- /tests/extra/job_management/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/job_management/test_manager.py -------------------------------------------------------------------------------- /tests/extra/job_management/test_process_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/job_management/test_process_based.py -------------------------------------------------------------------------------- /tests/extra/job_management/test_stac_job_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/job_management/test_stac_job_db.py -------------------------------------------------------------------------------- /tests/extra/job_management/test_thread_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/job_management/test_thread_worker.py -------------------------------------------------------------------------------- /tests/extra/spectral_indices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extra/spectral_indices/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/spectral_indices/conftest.py -------------------------------------------------------------------------------- /tests/extra/spectral_indices/test_spectral_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/extra/spectral_indices/test_spectral_indices.py -------------------------------------------------------------------------------- /tests/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/internal/processes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/internal/processes/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/processes/test_builder.py -------------------------------------------------------------------------------- /tests/internal/processes/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/processes/test_generator.py -------------------------------------------------------------------------------- /tests/internal/processes/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/processes/test_parse.py -------------------------------------------------------------------------------- /tests/internal/test_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/test_documentation.py -------------------------------------------------------------------------------- /tests/internal/test_graphbuilding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/test_graphbuilding.py -------------------------------------------------------------------------------- /tests/internal/test_jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/test_jupyter.py -------------------------------------------------------------------------------- /tests/internal/test_process_graph_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/test_process_graph_visitor.py -------------------------------------------------------------------------------- /tests/internal/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/internal/test_warnings.py -------------------------------------------------------------------------------- /tests/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/local/test_local_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/local/test_local_collection.py -------------------------------------------------------------------------------- /tests/pre_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/pre_test.sh -------------------------------------------------------------------------------- /tests/rest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/__init__.py -------------------------------------------------------------------------------- /tests/rest/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rest/auth/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/auth/test_cli.py -------------------------------------------------------------------------------- /tests/rest/auth/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/auth/test_config.py -------------------------------------------------------------------------------- /tests/rest/auth/test_oidc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/auth/test_oidc.py -------------------------------------------------------------------------------- /tests/rest/auth/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/auth/test_testing.py -------------------------------------------------------------------------------- /tests/rest/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/conftest.py -------------------------------------------------------------------------------- /tests/rest/datacube/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rest/datacube/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/conftest.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_bandmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_bandmath.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_base_datacube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_base_datacube.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_datacube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_datacube.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_datacube100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_datacube100.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_mlmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_mlmodel.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_processbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_processbuilder.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_vectorcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_vectorcube.py -------------------------------------------------------------------------------- /tests/rest/datacube/test_zonal_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/datacube/test_zonal_stats.py -------------------------------------------------------------------------------- /tests/rest/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rest/models/test_federation_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/models/test_federation_extension.py -------------------------------------------------------------------------------- /tests/rest/models/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/models/test_general.py -------------------------------------------------------------------------------- /tests/rest/models/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/models/test_logs.py -------------------------------------------------------------------------------- /tests/rest/test_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_capabilities.py -------------------------------------------------------------------------------- /tests/rest/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_connection.py -------------------------------------------------------------------------------- /tests/rest/test_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_conversions.py -------------------------------------------------------------------------------- /tests/rest/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_job.py -------------------------------------------------------------------------------- /tests/rest/test_job_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_job_results.py -------------------------------------------------------------------------------- /tests/rest/test_multiresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_multiresult.py -------------------------------------------------------------------------------- /tests/rest/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_result.py -------------------------------------------------------------------------------- /tests/rest/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_testing.py -------------------------------------------------------------------------------- /tests/rest/test_udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_udp.py -------------------------------------------------------------------------------- /tests/rest/test_userfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/rest/test_userfile.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/test_dates.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/test_processes.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/testing/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/testing/test_io.py -------------------------------------------------------------------------------- /tests/testing/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/testing/test_results.py -------------------------------------------------------------------------------- /tests/testing/test_stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/testing/test_stac.py -------------------------------------------------------------------------------- /tests/udf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/udf/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/test_compat.py -------------------------------------------------------------------------------- /tests/udf/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/test_debug.py -------------------------------------------------------------------------------- /tests/udf/test_feature_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/test_feature_collection.py -------------------------------------------------------------------------------- /tests/udf/test_run_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/test_run_code.py -------------------------------------------------------------------------------- /tests/udf/test_structured_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/test_structured_data.py -------------------------------------------------------------------------------- /tests/udf/test_udf_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/test_udf_data.py -------------------------------------------------------------------------------- /tests/udf/test_xarraydatacube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/test_xarraydatacube.py -------------------------------------------------------------------------------- /tests/udf/udf_code/map_fabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/map_fabs.py -------------------------------------------------------------------------------- /tests/udf/udf_code/multiply_factor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/multiply_factor.py -------------------------------------------------------------------------------- /tests/udf/udf_code/ndvi01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/ndvi01.py -------------------------------------------------------------------------------- /tests/udf/udf_code/ndvi02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/ndvi02.py -------------------------------------------------------------------------------- /tests/udf/udf_code/ndvi03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/ndvi03.py -------------------------------------------------------------------------------- /tests/udf/udf_code/reduce_time_mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/reduce_time_mean.py -------------------------------------------------------------------------------- /tests/udf/udf_code/reduce_time_min_median_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/reduce_time_min_median_max.py -------------------------------------------------------------------------------- /tests/udf/udf_code/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/udf/udf_code/statistics.py -------------------------------------------------------------------------------- /tests/utils/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/utils/test_http.py -------------------------------------------------------------------------------- /tests/utils/test_nomalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/utils/test_nomalize.py -------------------------------------------------------------------------------- /tests/utils/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-EO/openeo-python-client/HEAD/tests/utils/test_version.py --------------------------------------------------------------------------------