├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── help-support.md └── workflows │ ├── ci_action.yml │ ├── ci_trigger.yml │ └── scheduler_caller.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── Makefile └── source │ ├── _templates │ ├── layout.html │ ├── module.rst_t │ └── package.rst_t │ ├── common-configuration-patterns.md │ ├── conf.py │ ├── config-language.md │ ├── examples.rst │ ├── figures │ ├── eo-grow-structure.png │ └── eo-grow.drawio │ ├── high-level-overview.md │ └── index.rst ├── eogrow ├── __init__.py ├── cli.py ├── core │ ├── __init__.py │ ├── area │ │ ├── __init__.py │ │ ├── base.py │ │ ├── custom_grid.py │ │ └── utm.py │ ├── base.py │ ├── config.py │ ├── logging.py │ ├── pipeline.py │ ├── schemas.py │ └── storage.py ├── pipelines │ ├── __init__.py │ ├── batch_to_eopatch.py │ ├── byoc.py │ ├── download.py │ ├── download_batch.py │ ├── export_maps.py │ ├── features.py │ ├── import_tiff.py │ ├── import_vector.py │ ├── merge_samples.py │ ├── prediction.py │ ├── rasterize.py │ ├── sampling.py │ ├── split_grid.py │ ├── testing.py │ ├── training.py │ └── zipmap.py ├── py.typed ├── tasks │ ├── __init__.py │ ├── batch_to_eopatch.py │ ├── common.py │ ├── features.py │ ├── prediction.py │ ├── spatial.py │ └── testing.py ├── types.py └── utils │ ├── __init__.py │ ├── batch.py │ ├── eopatch_list.py │ ├── filter.py │ ├── fs.py │ ├── general.py │ ├── grid.py │ ├── logging.py │ ├── map.py │ ├── meta.py │ ├── pipeline_chain.py │ ├── ray.py │ ├── testing.py │ ├── validators.py │ ├── vector.py │ └── zipmap.py ├── examples ├── basic-tutorial.ipynb └── lets-build-a-model.ipynb ├── pyproject.toml └── tests ├── conftest.py ├── core ├── __init__.py ├── area │ ├── test_base.py │ ├── test_custom_grid.py │ └── test_utm.py ├── test_config.py ├── test_logging.py ├── test_pipeline.py ├── test_schemas.py └── test_storage.py ├── pipelines ├── __init__.py ├── test_batch_to_eopatch.py ├── test_byoc.py ├── test_download.py ├── test_export_maps.py ├── test_features.py ├── test_import_tiff.py ├── test_import_vector.py ├── test_merge_samples.py ├── test_prediction.py ├── test_rasterize.py ├── test_sampling.py ├── test_split_grid.py ├── test_testing.py ├── test_training.py └── test_zipmap.py ├── tasks ├── __init__.py ├── test_common.py ├── test_features.py ├── test_spatial.py └── test_testing.py ├── test_cli.py ├── test_config_files ├── byoc │ ├── ingest_bands.json │ ├── ingest_lulc.json │ ├── prepare_bands_data.json │ └── prepare_lulc_data.json ├── chain_pipeline.json ├── download_and_batch │ ├── batch_to_eopatch.json │ ├── batch_to_eopatch_empty.json │ ├── batch_to_eopatch_no_userdata.json │ ├── download_custom_collection.json │ ├── download_dem.json │ ├── download_l1c_q1_dn_rescaled.json │ └── download_l1c_yearly.json ├── export_maps │ ├── export_maps_data.json │ ├── export_maps_data_compressed.json │ ├── export_maps_mask.json │ └── export_maps_mask_local_copy.json ├── features │ ├── features_dtype.json │ ├── features_mosaicking.json │ └── features_on_sampled_data.json ├── global_config.json ├── import_tiff │ ├── import_tiff_resized_new_size.json │ ├── import_tiff_resized_scale_factors.json │ ├── import_tiff_temporal.json │ └── import_tiff_timeless.json ├── import_vector │ ├── import_vector.json │ └── import_vector_temporal.json ├── merge_samples │ ├── merge_features_samples.json │ └── merge_reference_samples.json ├── other │ ├── aws_storage_test.json │ ├── batch_area_config.json │ ├── large_area_global_config.json │ └── simple_config.json ├── prediction │ ├── prediction.json │ ├── prediction_chain.json │ ├── prediction_dtype.json │ └── prediction_with_encoder.json ├── rasterize │ ├── load_crops_vector_data.json │ ├── load_lulc_vector_data.json │ ├── rasterize_feature_with_resolution.json │ ├── rasterize_feature_with_shape.json │ └── rasterize_file.json ├── sampling │ ├── sampling_block_fraction.json │ ├── sampling_block_number.json │ ├── sampling_chain.json │ ├── sampling_fraction.json │ ├── sampling_fraction_erosion.json │ └── sampling_grid.json ├── split_grid │ ├── dummy_data_utm.json │ ├── global_config.json │ └── split_utm.json ├── testing │ ├── testing.json │ └── timestamps_only.json ├── training │ ├── lgbm_training_label_filter.json │ └── lgbm_training_no_filter.json └── zipmap │ └── zipmap.json ├── test_configs.py ├── test_project └── input-data │ ├── test_area.geojson │ ├── test_area_crops.geojson │ ├── test_area_lulc.geojson │ ├── test_custom_grid.geojson │ ├── test_dummy_temporal_vector.geojson │ └── test_large_area.geojson ├── test_stats ├── download_and_batch │ ├── batch_to_eopatch.json │ ├── batch_to_eopatch_empty.json │ ├── batch_to_eopatch_no_userdata.json │ ├── download_custom_collection.json │ ├── download_dem.json │ ├── download_l1c_q1_dn_rescaled.json │ └── download_l1c_yearly.json ├── export_maps │ ├── export_maps_data.json │ ├── export_maps_data_compressed.json │ ├── export_maps_mask.json │ └── export_maps_mask_local_copy.json ├── features │ ├── features_dtype.json │ ├── features_mosaicking.json │ └── features_on_sampled_data.json ├── import_tiff │ ├── import_tiff_resized_new_size.json │ ├── import_tiff_resized_scale_factors.json │ ├── import_tiff_temporal.json │ └── import_tiff_timeless.json ├── import_vector │ ├── import_vector.json │ └── import_vector_temporal.json ├── merge_samples │ ├── merge_features_samples.json │ └── merge_reference_samples.json ├── prediction │ ├── prediction.json │ ├── prediction_chain.json │ ├── prediction_dtype.json │ └── prediction_with_encoder.json ├── rasterize │ ├── rasterize_feature_with_resolution.json │ ├── rasterize_feature_with_shape.json │ └── rasterize_file.json ├── sampling │ ├── sampling_block_fraction.json │ ├── sampling_block_number.json │ ├── sampling_chain.json │ ├── sampling_fraction.json │ ├── sampling_fraction_erosion.json │ └── sampling_grid.json ├── split_grid │ ├── split_batch.json │ └── split_utm.json ├── testing │ ├── testing.json │ └── timestamps_only.json └── zipmap │ └── zipmap.json └── utils ├── __init__.py ├── test_eopatch_list.py ├── test_filter.py ├── test_fs.py ├── test_general.py ├── test_grid.py ├── test_map.py ├── test_meta.py ├── test_pipeline_chain.py ├── test_validators.py └── test_zipmap.py /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.github/ISSUE_TEMPLATE/help-support.md -------------------------------------------------------------------------------- /.github/workflows/ci_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.github/workflows/ci_action.yml -------------------------------------------------------------------------------- /.github/workflows/ci_trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.github/workflows/ci_trigger.yml -------------------------------------------------------------------------------- /.github/workflows/scheduler_caller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.github/workflows/scheduler_caller.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_templates/module.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/_templates/module.rst_t -------------------------------------------------------------------------------- /docs/source/_templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/_templates/package.rst_t -------------------------------------------------------------------------------- /docs/source/common-configuration-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/common-configuration-patterns.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/config-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/config-language.md -------------------------------------------------------------------------------- /docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/examples.rst -------------------------------------------------------------------------------- /docs/source/figures/eo-grow-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/figures/eo-grow-structure.png -------------------------------------------------------------------------------- /docs/source/figures/eo-grow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/figures/eo-grow.drawio -------------------------------------------------------------------------------- /docs/source/high-level-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/high-level-overview.md -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /eogrow/__init__.py: -------------------------------------------------------------------------------- 1 | """The main module of the eo-grow package.""" 2 | 3 | __version__ = "1.7.15" 4 | -------------------------------------------------------------------------------- /eogrow/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/cli.py -------------------------------------------------------------------------------- /eogrow/core/__init__.py: -------------------------------------------------------------------------------- 1 | """A submodule with definitions of core objects.""" 2 | -------------------------------------------------------------------------------- /eogrow/core/area/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/area/__init__.py -------------------------------------------------------------------------------- /eogrow/core/area/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/area/base.py -------------------------------------------------------------------------------- /eogrow/core/area/custom_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/area/custom_grid.py -------------------------------------------------------------------------------- /eogrow/core/area/utm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/area/utm.py -------------------------------------------------------------------------------- /eogrow/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/base.py -------------------------------------------------------------------------------- /eogrow/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/config.py -------------------------------------------------------------------------------- /eogrow/core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/logging.py -------------------------------------------------------------------------------- /eogrow/core/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/pipeline.py -------------------------------------------------------------------------------- /eogrow/core/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/schemas.py -------------------------------------------------------------------------------- /eogrow/core/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/core/storage.py -------------------------------------------------------------------------------- /eogrow/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | """A submodule with Pipeline definitions.""" 2 | -------------------------------------------------------------------------------- /eogrow/pipelines/batch_to_eopatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/batch_to_eopatch.py -------------------------------------------------------------------------------- /eogrow/pipelines/byoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/byoc.py -------------------------------------------------------------------------------- /eogrow/pipelines/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/download.py -------------------------------------------------------------------------------- /eogrow/pipelines/download_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/download_batch.py -------------------------------------------------------------------------------- /eogrow/pipelines/export_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/export_maps.py -------------------------------------------------------------------------------- /eogrow/pipelines/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/features.py -------------------------------------------------------------------------------- /eogrow/pipelines/import_tiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/import_tiff.py -------------------------------------------------------------------------------- /eogrow/pipelines/import_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/import_vector.py -------------------------------------------------------------------------------- /eogrow/pipelines/merge_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/merge_samples.py -------------------------------------------------------------------------------- /eogrow/pipelines/prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/prediction.py -------------------------------------------------------------------------------- /eogrow/pipelines/rasterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/rasterize.py -------------------------------------------------------------------------------- /eogrow/pipelines/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/sampling.py -------------------------------------------------------------------------------- /eogrow/pipelines/split_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/split_grid.py -------------------------------------------------------------------------------- /eogrow/pipelines/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/testing.py -------------------------------------------------------------------------------- /eogrow/pipelines/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/training.py -------------------------------------------------------------------------------- /eogrow/pipelines/zipmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/pipelines/zipmap.py -------------------------------------------------------------------------------- /eogrow/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eogrow/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | """A submodule with custom EOTasks implementations.""" 2 | -------------------------------------------------------------------------------- /eogrow/tasks/batch_to_eopatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/tasks/batch_to_eopatch.py -------------------------------------------------------------------------------- /eogrow/tasks/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/tasks/common.py -------------------------------------------------------------------------------- /eogrow/tasks/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/tasks/features.py -------------------------------------------------------------------------------- /eogrow/tasks/prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/tasks/prediction.py -------------------------------------------------------------------------------- /eogrow/tasks/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/tasks/spatial.py -------------------------------------------------------------------------------- /eogrow/tasks/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/tasks/testing.py -------------------------------------------------------------------------------- /eogrow/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/types.py -------------------------------------------------------------------------------- /eogrow/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """A submodule implementing various utilities.""" 2 | -------------------------------------------------------------------------------- /eogrow/utils/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/batch.py -------------------------------------------------------------------------------- /eogrow/utils/eopatch_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/eopatch_list.py -------------------------------------------------------------------------------- /eogrow/utils/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/filter.py -------------------------------------------------------------------------------- /eogrow/utils/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/fs.py -------------------------------------------------------------------------------- /eogrow/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/general.py -------------------------------------------------------------------------------- /eogrow/utils/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/grid.py -------------------------------------------------------------------------------- /eogrow/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/logging.py -------------------------------------------------------------------------------- /eogrow/utils/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/map.py -------------------------------------------------------------------------------- /eogrow/utils/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/meta.py -------------------------------------------------------------------------------- /eogrow/utils/pipeline_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/pipeline_chain.py -------------------------------------------------------------------------------- /eogrow/utils/ray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/ray.py -------------------------------------------------------------------------------- /eogrow/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/testing.py -------------------------------------------------------------------------------- /eogrow/utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/validators.py -------------------------------------------------------------------------------- /eogrow/utils/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/vector.py -------------------------------------------------------------------------------- /eogrow/utils/zipmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/eogrow/utils/zipmap.py -------------------------------------------------------------------------------- /examples/basic-tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/examples/basic-tutorial.ipynb -------------------------------------------------------------------------------- /examples/lets-build-a-model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/examples/lets-build-a-model.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/area/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/area/test_base.py -------------------------------------------------------------------------------- /tests/core/area/test_custom_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/area/test_custom_grid.py -------------------------------------------------------------------------------- /tests/core/area/test_utm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/area/test_utm.py -------------------------------------------------------------------------------- /tests/core/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/test_config.py -------------------------------------------------------------------------------- /tests/core/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/test_logging.py -------------------------------------------------------------------------------- /tests/core/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/test_pipeline.py -------------------------------------------------------------------------------- /tests/core/test_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/test_schemas.py -------------------------------------------------------------------------------- /tests/core/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/core/test_storage.py -------------------------------------------------------------------------------- /tests/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipelines/test_batch_to_eopatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_batch_to_eopatch.py -------------------------------------------------------------------------------- /tests/pipelines/test_byoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_byoc.py -------------------------------------------------------------------------------- /tests/pipelines/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_download.py -------------------------------------------------------------------------------- /tests/pipelines/test_export_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_export_maps.py -------------------------------------------------------------------------------- /tests/pipelines/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_features.py -------------------------------------------------------------------------------- /tests/pipelines/test_import_tiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_import_tiff.py -------------------------------------------------------------------------------- /tests/pipelines/test_import_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_import_vector.py -------------------------------------------------------------------------------- /tests/pipelines/test_merge_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_merge_samples.py -------------------------------------------------------------------------------- /tests/pipelines/test_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_prediction.py -------------------------------------------------------------------------------- /tests/pipelines/test_rasterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_rasterize.py -------------------------------------------------------------------------------- /tests/pipelines/test_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_sampling.py -------------------------------------------------------------------------------- /tests/pipelines/test_split_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_split_grid.py -------------------------------------------------------------------------------- /tests/pipelines/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_testing.py -------------------------------------------------------------------------------- /tests/pipelines/test_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_training.py -------------------------------------------------------------------------------- /tests/pipelines/test_zipmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/pipelines/test_zipmap.py -------------------------------------------------------------------------------- /tests/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tasks/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/tasks/test_common.py -------------------------------------------------------------------------------- /tests/tasks/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/tasks/test_features.py -------------------------------------------------------------------------------- /tests/tasks/test_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/tasks/test_spatial.py -------------------------------------------------------------------------------- /tests/tasks/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/tasks/test_testing.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_config_files/byoc/ingest_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/byoc/ingest_bands.json -------------------------------------------------------------------------------- /tests/test_config_files/byoc/ingest_lulc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/byoc/ingest_lulc.json -------------------------------------------------------------------------------- /tests/test_config_files/byoc/prepare_bands_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/byoc/prepare_bands_data.json -------------------------------------------------------------------------------- /tests/test_config_files/byoc/prepare_lulc_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/byoc/prepare_lulc_data.json -------------------------------------------------------------------------------- /tests/test_config_files/chain_pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/chain_pipeline.json -------------------------------------------------------------------------------- /tests/test_config_files/download_and_batch/batch_to_eopatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/download_and_batch/batch_to_eopatch.json -------------------------------------------------------------------------------- /tests/test_config_files/download_and_batch/batch_to_eopatch_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/download_and_batch/batch_to_eopatch_empty.json -------------------------------------------------------------------------------- /tests/test_config_files/download_and_batch/batch_to_eopatch_no_userdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/download_and_batch/batch_to_eopatch_no_userdata.json -------------------------------------------------------------------------------- /tests/test_config_files/download_and_batch/download_custom_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/download_and_batch/download_custom_collection.json -------------------------------------------------------------------------------- /tests/test_config_files/download_and_batch/download_dem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/download_and_batch/download_dem.json -------------------------------------------------------------------------------- /tests/test_config_files/download_and_batch/download_l1c_q1_dn_rescaled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/download_and_batch/download_l1c_q1_dn_rescaled.json -------------------------------------------------------------------------------- /tests/test_config_files/download_and_batch/download_l1c_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/download_and_batch/download_l1c_yearly.json -------------------------------------------------------------------------------- /tests/test_config_files/export_maps/export_maps_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/export_maps/export_maps_data.json -------------------------------------------------------------------------------- /tests/test_config_files/export_maps/export_maps_data_compressed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/export_maps/export_maps_data_compressed.json -------------------------------------------------------------------------------- /tests/test_config_files/export_maps/export_maps_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/export_maps/export_maps_mask.json -------------------------------------------------------------------------------- /tests/test_config_files/export_maps/export_maps_mask_local_copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/export_maps/export_maps_mask_local_copy.json -------------------------------------------------------------------------------- /tests/test_config_files/features/features_dtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/features/features_dtype.json -------------------------------------------------------------------------------- /tests/test_config_files/features/features_mosaicking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/features/features_mosaicking.json -------------------------------------------------------------------------------- /tests/test_config_files/features/features_on_sampled_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/features/features_on_sampled_data.json -------------------------------------------------------------------------------- /tests/test_config_files/global_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/global_config.json -------------------------------------------------------------------------------- /tests/test_config_files/import_tiff/import_tiff_resized_new_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/import_tiff/import_tiff_resized_new_size.json -------------------------------------------------------------------------------- /tests/test_config_files/import_tiff/import_tiff_resized_scale_factors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/import_tiff/import_tiff_resized_scale_factors.json -------------------------------------------------------------------------------- /tests/test_config_files/import_tiff/import_tiff_temporal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/import_tiff/import_tiff_temporal.json -------------------------------------------------------------------------------- /tests/test_config_files/import_tiff/import_tiff_timeless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/import_tiff/import_tiff_timeless.json -------------------------------------------------------------------------------- /tests/test_config_files/import_vector/import_vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/import_vector/import_vector.json -------------------------------------------------------------------------------- /tests/test_config_files/import_vector/import_vector_temporal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/import_vector/import_vector_temporal.json -------------------------------------------------------------------------------- /tests/test_config_files/merge_samples/merge_features_samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/merge_samples/merge_features_samples.json -------------------------------------------------------------------------------- /tests/test_config_files/merge_samples/merge_reference_samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/merge_samples/merge_reference_samples.json -------------------------------------------------------------------------------- /tests/test_config_files/other/aws_storage_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/other/aws_storage_test.json -------------------------------------------------------------------------------- /tests/test_config_files/other/batch_area_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/other/batch_area_config.json -------------------------------------------------------------------------------- /tests/test_config_files/other/large_area_global_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/other/large_area_global_config.json -------------------------------------------------------------------------------- /tests/test_config_files/other/simple_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/other/simple_config.json -------------------------------------------------------------------------------- /tests/test_config_files/prediction/prediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/prediction/prediction.json -------------------------------------------------------------------------------- /tests/test_config_files/prediction/prediction_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/prediction/prediction_chain.json -------------------------------------------------------------------------------- /tests/test_config_files/prediction/prediction_dtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/prediction/prediction_dtype.json -------------------------------------------------------------------------------- /tests/test_config_files/prediction/prediction_with_encoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/prediction/prediction_with_encoder.json -------------------------------------------------------------------------------- /tests/test_config_files/rasterize/load_crops_vector_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/rasterize/load_crops_vector_data.json -------------------------------------------------------------------------------- /tests/test_config_files/rasterize/load_lulc_vector_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/rasterize/load_lulc_vector_data.json -------------------------------------------------------------------------------- /tests/test_config_files/rasterize/rasterize_feature_with_resolution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/rasterize/rasterize_feature_with_resolution.json -------------------------------------------------------------------------------- /tests/test_config_files/rasterize/rasterize_feature_with_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/rasterize/rasterize_feature_with_shape.json -------------------------------------------------------------------------------- /tests/test_config_files/rasterize/rasterize_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/rasterize/rasterize_file.json -------------------------------------------------------------------------------- /tests/test_config_files/sampling/sampling_block_fraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/sampling/sampling_block_fraction.json -------------------------------------------------------------------------------- /tests/test_config_files/sampling/sampling_block_number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/sampling/sampling_block_number.json -------------------------------------------------------------------------------- /tests/test_config_files/sampling/sampling_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/sampling/sampling_chain.json -------------------------------------------------------------------------------- /tests/test_config_files/sampling/sampling_fraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/sampling/sampling_fraction.json -------------------------------------------------------------------------------- /tests/test_config_files/sampling/sampling_fraction_erosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/sampling/sampling_fraction_erosion.json -------------------------------------------------------------------------------- /tests/test_config_files/sampling/sampling_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/sampling/sampling_grid.json -------------------------------------------------------------------------------- /tests/test_config_files/split_grid/dummy_data_utm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/split_grid/dummy_data_utm.json -------------------------------------------------------------------------------- /tests/test_config_files/split_grid/global_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/split_grid/global_config.json -------------------------------------------------------------------------------- /tests/test_config_files/split_grid/split_utm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/split_grid/split_utm.json -------------------------------------------------------------------------------- /tests/test_config_files/testing/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/testing/testing.json -------------------------------------------------------------------------------- /tests/test_config_files/testing/timestamps_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/testing/timestamps_only.json -------------------------------------------------------------------------------- /tests/test_config_files/training/lgbm_training_label_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/training/lgbm_training_label_filter.json -------------------------------------------------------------------------------- /tests/test_config_files/training/lgbm_training_no_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/training/lgbm_training_no_filter.json -------------------------------------------------------------------------------- /tests/test_config_files/zipmap/zipmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_config_files/zipmap/zipmap.json -------------------------------------------------------------------------------- /tests/test_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_configs.py -------------------------------------------------------------------------------- /tests/test_project/input-data/test_area.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_project/input-data/test_area.geojson -------------------------------------------------------------------------------- /tests/test_project/input-data/test_area_crops.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_project/input-data/test_area_crops.geojson -------------------------------------------------------------------------------- /tests/test_project/input-data/test_area_lulc.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_project/input-data/test_area_lulc.geojson -------------------------------------------------------------------------------- /tests/test_project/input-data/test_custom_grid.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_project/input-data/test_custom_grid.geojson -------------------------------------------------------------------------------- /tests/test_project/input-data/test_dummy_temporal_vector.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_project/input-data/test_dummy_temporal_vector.geojson -------------------------------------------------------------------------------- /tests/test_project/input-data/test_large_area.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_project/input-data/test_large_area.geojson -------------------------------------------------------------------------------- /tests/test_stats/download_and_batch/batch_to_eopatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/download_and_batch/batch_to_eopatch.json -------------------------------------------------------------------------------- /tests/test_stats/download_and_batch/batch_to_eopatch_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/download_and_batch/batch_to_eopatch_empty.json -------------------------------------------------------------------------------- /tests/test_stats/download_and_batch/batch_to_eopatch_no_userdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/download_and_batch/batch_to_eopatch_no_userdata.json -------------------------------------------------------------------------------- /tests/test_stats/download_and_batch/download_custom_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/download_and_batch/download_custom_collection.json -------------------------------------------------------------------------------- /tests/test_stats/download_and_batch/download_dem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/download_and_batch/download_dem.json -------------------------------------------------------------------------------- /tests/test_stats/download_and_batch/download_l1c_q1_dn_rescaled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/download_and_batch/download_l1c_q1_dn_rescaled.json -------------------------------------------------------------------------------- /tests/test_stats/download_and_batch/download_l1c_yearly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/download_and_batch/download_l1c_yearly.json -------------------------------------------------------------------------------- /tests/test_stats/export_maps/export_maps_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/export_maps/export_maps_data.json -------------------------------------------------------------------------------- /tests/test_stats/export_maps/export_maps_data_compressed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/export_maps/export_maps_data_compressed.json -------------------------------------------------------------------------------- /tests/test_stats/export_maps/export_maps_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/export_maps/export_maps_mask.json -------------------------------------------------------------------------------- /tests/test_stats/export_maps/export_maps_mask_local_copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/export_maps/export_maps_mask_local_copy.json -------------------------------------------------------------------------------- /tests/test_stats/features/features_dtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/features/features_dtype.json -------------------------------------------------------------------------------- /tests/test_stats/features/features_mosaicking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/features/features_mosaicking.json -------------------------------------------------------------------------------- /tests/test_stats/features/features_on_sampled_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/features/features_on_sampled_data.json -------------------------------------------------------------------------------- /tests/test_stats/import_tiff/import_tiff_resized_new_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/import_tiff/import_tiff_resized_new_size.json -------------------------------------------------------------------------------- /tests/test_stats/import_tiff/import_tiff_resized_scale_factors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/import_tiff/import_tiff_resized_scale_factors.json -------------------------------------------------------------------------------- /tests/test_stats/import_tiff/import_tiff_temporal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/import_tiff/import_tiff_temporal.json -------------------------------------------------------------------------------- /tests/test_stats/import_tiff/import_tiff_timeless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/import_tiff/import_tiff_timeless.json -------------------------------------------------------------------------------- /tests/test_stats/import_vector/import_vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/import_vector/import_vector.json -------------------------------------------------------------------------------- /tests/test_stats/import_vector/import_vector_temporal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/import_vector/import_vector_temporal.json -------------------------------------------------------------------------------- /tests/test_stats/merge_samples/merge_features_samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/merge_samples/merge_features_samples.json -------------------------------------------------------------------------------- /tests/test_stats/merge_samples/merge_reference_samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/merge_samples/merge_reference_samples.json -------------------------------------------------------------------------------- /tests/test_stats/prediction/prediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/prediction/prediction.json -------------------------------------------------------------------------------- /tests/test_stats/prediction/prediction_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/prediction/prediction_chain.json -------------------------------------------------------------------------------- /tests/test_stats/prediction/prediction_dtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/prediction/prediction_dtype.json -------------------------------------------------------------------------------- /tests/test_stats/prediction/prediction_with_encoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/prediction/prediction_with_encoder.json -------------------------------------------------------------------------------- /tests/test_stats/rasterize/rasterize_feature_with_resolution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/rasterize/rasterize_feature_with_resolution.json -------------------------------------------------------------------------------- /tests/test_stats/rasterize/rasterize_feature_with_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/rasterize/rasterize_feature_with_shape.json -------------------------------------------------------------------------------- /tests/test_stats/rasterize/rasterize_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/rasterize/rasterize_file.json -------------------------------------------------------------------------------- /tests/test_stats/sampling/sampling_block_fraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/sampling/sampling_block_fraction.json -------------------------------------------------------------------------------- /tests/test_stats/sampling/sampling_block_number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/sampling/sampling_block_number.json -------------------------------------------------------------------------------- /tests/test_stats/sampling/sampling_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/sampling/sampling_chain.json -------------------------------------------------------------------------------- /tests/test_stats/sampling/sampling_fraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/sampling/sampling_fraction.json -------------------------------------------------------------------------------- /tests/test_stats/sampling/sampling_fraction_erosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/sampling/sampling_fraction_erosion.json -------------------------------------------------------------------------------- /tests/test_stats/sampling/sampling_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/sampling/sampling_grid.json -------------------------------------------------------------------------------- /tests/test_stats/split_grid/split_batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/split_grid/split_batch.json -------------------------------------------------------------------------------- /tests/test_stats/split_grid/split_utm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/split_grid/split_utm.json -------------------------------------------------------------------------------- /tests/test_stats/testing/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/testing/testing.json -------------------------------------------------------------------------------- /tests/test_stats/testing/timestamps_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/testing/timestamps_only.json -------------------------------------------------------------------------------- /tests/test_stats/zipmap/zipmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/test_stats/zipmap/zipmap.json -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_eopatch_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_eopatch_list.py -------------------------------------------------------------------------------- /tests/utils/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_filter.py -------------------------------------------------------------------------------- /tests/utils/test_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_fs.py -------------------------------------------------------------------------------- /tests/utils/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_general.py -------------------------------------------------------------------------------- /tests/utils/test_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_grid.py -------------------------------------------------------------------------------- /tests/utils/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_map.py -------------------------------------------------------------------------------- /tests/utils/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_meta.py -------------------------------------------------------------------------------- /tests/utils/test_pipeline_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_pipeline_chain.py -------------------------------------------------------------------------------- /tests/utils/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_validators.py -------------------------------------------------------------------------------- /tests/utils/test_zipmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentinel-hub/eo-grow/HEAD/tests/utils/test_zipmap.py --------------------------------------------------------------------------------