├── .devcontainer └── devcontainer.json ├── .github └── workflows │ ├── prerelease.yaml │ ├── release.yaml │ └── unit.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── RELEASE.rst ├── docs ├── _extension │ ├── api_admonition.py │ └── docstring.py ├── _static │ ├── banner.html │ ├── custom-icon.js │ ├── custom.css │ ├── logo.png │ ├── logo.svg │ ├── long-logo.png │ ├── switcher.json │ ├── usage │ │ └── plot │ │ │ └── index │ │ │ ├── histogram.png │ │ │ └── hydroshed.png │ └── we-need-you.jpg ├── _templates │ └── python │ │ ├── class.rst │ │ ├── function.rst │ │ ├── method.rst │ │ └── module.rst ├── conf.py ├── index.rst ├── setup │ ├── author.rst │ ├── contribute.rst │ ├── index.rst │ ├── inspiration.rst │ ├── install.rst │ ├── layout.rst │ ├── license.rst │ ├── migration.rst │ ├── pattern.rst │ └── quickstart.rst └── usage │ ├── asset.ipynb │ ├── export.ipynb │ ├── index.rst │ ├── plot │ ├── index.rst │ ├── map-featurecollection.ipynb │ ├── map-image.ipynb │ ├── plot-featurecollection.ipynb │ ├── plot-image.ipynb │ └── plot-imagecollection.ipynb │ ├── profile.ipynb │ ├── reduce.ipynb │ └── template.ipynb ├── geetools ├── __init__.py ├── _deprecated_algorithms.py ├── _deprecated_composite.py ├── accessors.py ├── ee_array.py ├── ee_asset.py ├── ee_authenticate.py ├── ee_computed_object.py ├── ee_date.py ├── ee_date_range.py ├── ee_dictionary.py ├── ee_export.py ├── ee_feature.py ├── ee_feature_collection.py ├── ee_filter.py ├── ee_geometry.py ├── ee_image.py ├── ee_image_collection.py ├── ee_initialize.py ├── ee_join.py ├── ee_list.py ├── ee_number.py ├── ee_profiler.py ├── ee_string.py ├── tools │ ├── __init__.py │ └── _deprecated_imagecollection.py └── utils.py ├── notebooks ├── algorithms │ ├── brdf.ipynb │ ├── distance_to_mask.ipynb │ ├── euclidean_distance.ipynb │ ├── harmonize.ipynb │ ├── mask_cover.ipynb │ └── pansharpen.ipynb ├── cloud_mask │ └── cloud_masking.ipynb ├── collection │ └── joinByProperty.ipynb ├── composite │ ├── closest_date.ipynb │ ├── medoid.ipynb │ └── medoid_score.ipynb ├── date │ ├── dayRangeIntervals.ipynb │ └── since_epoch.ipynb ├── geometry │ ├── .ipynb_checkpoints │ │ └── getRegion-checkpoint.ipynb │ └── getRegion.ipynb ├── image │ ├── addConstantBand.ipynb │ ├── addSuffix_addPrefix.ipynb │ ├── bufferMask.ipynb │ ├── clipToCollection.ipynb │ ├── distributions.ipynb │ ├── parametrize.ipynb │ ├── removeBands.ipynb │ ├── renameDict.ipynb │ ├── renamePattern.ipynb │ └── toGrid.ipynb └── imagecollection │ ├── distributions.ipynb │ ├── mosaicSameDay.ipynb │ └── parametrizeProperty.ipynb ├── noxfile.py ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── test_Array.py ├── test_Asset.py ├── test_Asset ├── test_glob.yml ├── test_iterdir.yml ├── test_iterdir_recursive.yml ├── test_parents.yml ├── test_rglob.yml └── test_rmdir_recursive_dry_run.yml ├── test_ComputedObect.py ├── test_Date.py ├── test_DateRange.py ├── test_Dictionary.py ├── test_Dictionary ├── test_to_table_any.yml ├── test_to_table_dict.yml └── test_to_table_list.yml ├── test_Export.py ├── test_Feature.py ├── test_Feature ├── serialized_test_remove_properties.yml ├── serialized_test_to_feature_collection.yml ├── test_remove_properties.yml └── test_to_feature_collection.yml ├── test_FeatureCollection.py ├── test_FeatureCollection ├── serialized_test_by_features.yml ├── serialized_test_by_features_with_id.yml ├── serialized_test_by_features_with_properties.yml ├── serialized_test_by_properties.yml ├── serialized_test_by_properties_with_id.yml ├── serialized_test_by_properties_with_properties.yml ├── serialized_test_column_names.yml ├── serialized_test_from_geo_interface.yml ├── serialized_test_from_geo_interface_from_dict.yml ├── serialized_test_from_geo_interface_z.yml ├── serialized_test_to_dictionary.yml ├── test_by_features.yml ├── test_by_features_with_id.yml ├── test_by_features_with_properties.yml ├── test_by_properties.yml ├── test_by_properties_with_id.yml ├── test_by_properties_with_properties.yml ├── test_column_names.yml ├── test_column_names_legacy.yml ├── test_deprecated_merge.yml ├── test_from_geo_interface.yml ├── test_from_geo_interface_from_dict.yml ├── test_from_geo_interface_z.yml ├── test_merge_geometries.yml ├── test_plot.png ├── test_plot_by_features_bar.png ├── test_plot_by_features_donut.png ├── test_plot_by_features_pie.png ├── test_plot_by_features_scatter.png ├── test_plot_by_features_stacked.png ├── test_plot_by_properties_area.png ├── test_plot_by_properties_bar.png ├── test_plot_by_properties_plot.png ├── test_plot_hist.png ├── test_plot_with_boundaries.png ├── test_plot_with_cmap.png ├── test_plot_with_property.png └── test_to_dictionary.yml ├── test_Filter.py ├── test_Float.py ├── test_Geometry.py ├── test_Geometry └── test_deprecated_polygon.npz ├── test_Image.py ├── test_Image ├── serialized_test_class_mask.yml ├── serialized_test_class_to_bands.yml ├── serialized_test_histogram_match.yml ├── test_add_date.csv ├── test_add_date_format.csv ├── test_add_prefix_to_all.yml ├── test_add_prefix_to_selected.yml ├── test_add_suffix_to_all.yml ├── test_add_suffix_to_selected.yml ├── test_class_mask.png ├── test_class_to_bands.png ├── test_clip_on_collection_bands.yml ├── test_clip_on_collection_property.yml ├── test_clip_on_collection_without_properties_bands.yml ├── test_clip_on_collection_without_properties_property.yml ├── test_default_spectral_indices.csv ├── test_deprecated_distance_to_mask.csv ├── test_deprecated_euclidian_distance.csv ├── test_distance.csv ├── test_distance_to_mask.csv ├── test_doy_to_date.csv ├── test_doy_to_date_with_band.csv ├── test_doy_to_date_with_format.csv ├── test_full.csv ├── test_full_like.csv ├── test_full_like_with_mask.csv ├── test_full_with_lists.csv ├── test_full_with_name.csv ├── test_full_with_value.csv ├── test_gauss.csv ├── test_gauss_with_band.csv ├── test_get_scale_params.yml ├── test_get_values.csv ├── test_get_values_with_scale.csv ├── test_histogram_match.png ├── test_interpolate_bands.csv ├── test_islet_mask.png ├── test_mask_S2_clouds.csv ├── test_merge.yml ├── test_negative_clip.csv ├── test_pan_sharpen.csv ├── test_plot.png ├── test_plot_by_bands_area.png ├── test_plot_by_bands_bar.png ├── test_plot_by_bands_donut.png ├── test_plot_by_bands_pie.png ├── test_plot_by_bands_plot.png ├── test_plot_by_regions_bar.png ├── test_plot_by_regions_barh.png ├── test_plot_by_regions_stacked.png ├── test_plot_hist.png ├── test_plot_one_band.png ├── test_plot_one_band_cmap.png ├── test_plot_with_crs.png ├── test_plot_with_fc.png ├── test_prefix.yml ├── test_preprocess.csv ├── test_reduce_bands.csv ├── test_reduce_bands_with_bands.csv ├── test_reduce_bands_with_name.csv ├── test_remove.yml ├── test_remove_properties.yml ├── test_rename.yml ├── test_scale_and_offset.csv ├── test_suffix.yml ├── test_tasseled_cap.csv └── test_to_grid.npz ├── test_ImageCollection.py ├── test_ImageCollection ├── serialized_test_deprecated_composite_by_month.yml ├── serialized_test_deprecated_composite_regular_intervals.yml ├── serialized_test_deprecated_reduce_day_intervals.yml ├── serialized_test_deprecated_reduce_equal_interval.yml ├── serialized_test_reduce_interval.yml ├── serialized_test_reduce_interval_properties.yml ├── serialized_test_reduce_interval_with_multi_output_reducer.yml ├── serialized_test_reduce_interval_with_reducer.yml ├── serialized_test_reduce_interval_without_original_names.yml ├── serialized_test_reduce_regions_by_date_property.yml ├── serialized_test_reduce_regions_by_dates.yml ├── serialized_test_reduce_regions_by_doy.yml ├── serialized_test_sort_many_asc_asc.yml ├── serialized_test_sort_many_asc_desc.yml ├── serialized_test_sort_many_default.yml ├── serialized_test_sort_many_desc_desc.yml ├── serialized_test_sort_many_missing_asc.yml ├── test_aggregate_array.yml ├── test_aggregate_array_with_properties.yml ├── test_append.yml ├── test_closest_date.csv ├── test_closest_s2_sr.yml ├── test_collection_mask.csv ├── test_deprecated_closest_date.csv ├── test_deprecated_composite_by_month.csv ├── test_deprecated_composite_by_month.yml ├── test_deprecated_composite_regular_intervals.csv ├── test_deprecated_composite_regular_intervals.yml ├── test_deprecated_fill_with_last.csv ├── test_deprecated_medoid.csv ├── test_deprecated_mosaic_same_day.csv ├── test_deprecated_reduce_day_intervals.csv ├── test_deprecated_reduce_day_intervals.yml ├── test_deprecated_reduce_equal_interval.csv ├── test_deprecated_reduce_equal_interval.yml ├── test_get_citation.yml ├── test_get_doi.yml ├── test_get_offset_params.yml ├── test_get_scale_params.yml ├── test_iloc.csv ├── test_integral.csv ├── test_mask_s2.yml ├── test_mask_s2_sr.csv ├── test_medoid.csv ├── test_outliers.csv ├── test_outliers_with_bands.csv ├── test_outliers_with_drop.csv ├── test_outliers_with_sigma.csv ├── test_pan_sharpen.csv ├── test_plot_dates_by_bands.png ├── test_plot_dates_by_regions.png ├── test_plot_doy_by_bands.png ├── test_plot_doy_by_regions.png ├── test_plot_doy_by_seasons.png ├── test_plot_doy_by_years.png ├── test_preprocess.csv ├── test_reduce_interval.yml ├── test_reduce_interval_properties.yml ├── test_reduce_interval_with_multi_output_reducer.yml ├── test_reduce_interval_with_reducer.yml ├── test_reduce_interval_without_original_names.yml ├── test_reduce_region_by_date_property.yml ├── test_reduce_region_by_dates.yml ├── test_reduce_region_by_doy.yml ├── test_reduce_regions_by_date_property.yml ├── test_reduce_regions_by_dates.yml ├── test_reduce_regions_by_doy.yml ├── test_scale_and_offset.csv ├── test_sort_many_asc_asc.yml ├── test_sort_many_asc_desc.yml ├── test_sort_many_default.yml ├── test_sort_many_desc_desc.yml ├── test_sort_many_missing_asc.yml ├── test_spectral_indices.csv ├── test_tasseled_cap.csv ├── test_to_xarray.yml ├── test_validPixel.csv └── test_valid_pixels.csv ├── test_Integer.py ├── test_Join.py ├── test_Join ├── serialized_test_by_property.yml ├── serialized_test_by_property_outer.yml ├── test_by_property.yml ├── test_by_property_outer.yml └── test_deprecated_join.yml ├── test_List.py ├── test_List ├── serialized_test_chunked_even.yml ├── serialized_test_chunked_odd.yml ├── serialized_test_complement_with_different_type.yml ├── serialized_test_complement_with_same_type.yml ├── serialized_test_delete.yml ├── serialized_test_intersection_with_different_type.yml ├── serialized_test_intersection_with_same_type.yml ├── serialized_test_product_with_different_type.yml ├── serialized_test_product_with_same_type.yml ├── serialized_test_replace_many.yml ├── serialized_test_union_with_duplicate.yml ├── serialized_test_union_without_dupplicates.yml ├── serialized_test_zip.yml ├── test_chunked_even.yml ├── test_chunked_odd.yml ├── test_complement_with_different_type.yml ├── test_complement_with_same_type.yml ├── test_delete.yml ├── test_intersection_with_different_type.yml ├── test_intersection_with_same_type.yml ├── test_product_with_different_type.yml ├── test_product_with_same_type.yml ├── test_replace_many.yml ├── test_to_strings.yml ├── test_union_with_duplicate.yml ├── test_union_without_dupplicates.yml └── test_zip.yml ├── test_Number.py ├── test_Profiler.py ├── test_String.py ├── test_batch └── test_utils.py ├── test_deprecated.py └── test_deprecated ├── test_deprecated_cast_image.yml ├── test_merge_geometry.yml └── test_tobands.yml /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/prerelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/.github/workflows/prerelease.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/.github/workflows/unit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/RELEASE.rst -------------------------------------------------------------------------------- /docs/_extension/api_admonition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_extension/api_admonition.py -------------------------------------------------------------------------------- /docs/_extension/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_extension/docstring.py -------------------------------------------------------------------------------- /docs/_static/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/banner.html -------------------------------------------------------------------------------- /docs/_static/custom-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/custom-icon.js -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/logo.svg -------------------------------------------------------------------------------- /docs/_static/long-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/long-logo.png -------------------------------------------------------------------------------- /docs/_static/switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/switcher.json -------------------------------------------------------------------------------- /docs/_static/usage/plot/index/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/usage/plot/index/histogram.png -------------------------------------------------------------------------------- /docs/_static/usage/plot/index/hydroshed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/usage/plot/index/hydroshed.png -------------------------------------------------------------------------------- /docs/_static/we-need-you.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_static/we-need-you.jpg -------------------------------------------------------------------------------- /docs/_templates/python/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_templates/python/class.rst -------------------------------------------------------------------------------- /docs/_templates/python/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_templates/python/function.rst -------------------------------------------------------------------------------- /docs/_templates/python/method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_templates/python/method.rst -------------------------------------------------------------------------------- /docs/_templates/python/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/_templates/python/module.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/setup/author.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/author.rst -------------------------------------------------------------------------------- /docs/setup/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/contribute.rst -------------------------------------------------------------------------------- /docs/setup/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/index.rst -------------------------------------------------------------------------------- /docs/setup/inspiration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/inspiration.rst -------------------------------------------------------------------------------- /docs/setup/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/install.rst -------------------------------------------------------------------------------- /docs/setup/layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/layout.rst -------------------------------------------------------------------------------- /docs/setup/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/license.rst -------------------------------------------------------------------------------- /docs/setup/migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/migration.rst -------------------------------------------------------------------------------- /docs/setup/pattern.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/pattern.rst -------------------------------------------------------------------------------- /docs/setup/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/setup/quickstart.rst -------------------------------------------------------------------------------- /docs/usage/asset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/asset.ipynb -------------------------------------------------------------------------------- /docs/usage/export.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/export.ipynb -------------------------------------------------------------------------------- /docs/usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/index.rst -------------------------------------------------------------------------------- /docs/usage/plot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/plot/index.rst -------------------------------------------------------------------------------- /docs/usage/plot/map-featurecollection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/plot/map-featurecollection.ipynb -------------------------------------------------------------------------------- /docs/usage/plot/map-image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/plot/map-image.ipynb -------------------------------------------------------------------------------- /docs/usage/plot/plot-featurecollection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/plot/plot-featurecollection.ipynb -------------------------------------------------------------------------------- /docs/usage/plot/plot-image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/plot/plot-image.ipynb -------------------------------------------------------------------------------- /docs/usage/plot/plot-imagecollection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/plot/plot-imagecollection.ipynb -------------------------------------------------------------------------------- /docs/usage/profile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/profile.ipynb -------------------------------------------------------------------------------- /docs/usage/reduce.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/reduce.ipynb -------------------------------------------------------------------------------- /docs/usage/template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/docs/usage/template.ipynb -------------------------------------------------------------------------------- /geetools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/__init__.py -------------------------------------------------------------------------------- /geetools/_deprecated_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/_deprecated_algorithms.py -------------------------------------------------------------------------------- /geetools/_deprecated_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/_deprecated_composite.py -------------------------------------------------------------------------------- /geetools/accessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/accessors.py -------------------------------------------------------------------------------- /geetools/ee_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_array.py -------------------------------------------------------------------------------- /geetools/ee_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_asset.py -------------------------------------------------------------------------------- /geetools/ee_authenticate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_authenticate.py -------------------------------------------------------------------------------- /geetools/ee_computed_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_computed_object.py -------------------------------------------------------------------------------- /geetools/ee_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_date.py -------------------------------------------------------------------------------- /geetools/ee_date_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_date_range.py -------------------------------------------------------------------------------- /geetools/ee_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_dictionary.py -------------------------------------------------------------------------------- /geetools/ee_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_export.py -------------------------------------------------------------------------------- /geetools/ee_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_feature.py -------------------------------------------------------------------------------- /geetools/ee_feature_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_feature_collection.py -------------------------------------------------------------------------------- /geetools/ee_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_filter.py -------------------------------------------------------------------------------- /geetools/ee_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_geometry.py -------------------------------------------------------------------------------- /geetools/ee_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_image.py -------------------------------------------------------------------------------- /geetools/ee_image_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_image_collection.py -------------------------------------------------------------------------------- /geetools/ee_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_initialize.py -------------------------------------------------------------------------------- /geetools/ee_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_join.py -------------------------------------------------------------------------------- /geetools/ee_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_list.py -------------------------------------------------------------------------------- /geetools/ee_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_number.py -------------------------------------------------------------------------------- /geetools/ee_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_profiler.py -------------------------------------------------------------------------------- /geetools/ee_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/ee_string.py -------------------------------------------------------------------------------- /geetools/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/tools/__init__.py -------------------------------------------------------------------------------- /geetools/tools/_deprecated_imagecollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/tools/_deprecated_imagecollection.py -------------------------------------------------------------------------------- /geetools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/geetools/utils.py -------------------------------------------------------------------------------- /notebooks/algorithms/brdf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/algorithms/brdf.ipynb -------------------------------------------------------------------------------- /notebooks/algorithms/distance_to_mask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/algorithms/distance_to_mask.ipynb -------------------------------------------------------------------------------- /notebooks/algorithms/euclidean_distance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/algorithms/euclidean_distance.ipynb -------------------------------------------------------------------------------- /notebooks/algorithms/harmonize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/algorithms/harmonize.ipynb -------------------------------------------------------------------------------- /notebooks/algorithms/mask_cover.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/algorithms/mask_cover.ipynb -------------------------------------------------------------------------------- /notebooks/algorithms/pansharpen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/algorithms/pansharpen.ipynb -------------------------------------------------------------------------------- /notebooks/cloud_mask/cloud_masking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/cloud_mask/cloud_masking.ipynb -------------------------------------------------------------------------------- /notebooks/collection/joinByProperty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/collection/joinByProperty.ipynb -------------------------------------------------------------------------------- /notebooks/composite/closest_date.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/composite/closest_date.ipynb -------------------------------------------------------------------------------- /notebooks/composite/medoid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/composite/medoid.ipynb -------------------------------------------------------------------------------- /notebooks/composite/medoid_score.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/composite/medoid_score.ipynb -------------------------------------------------------------------------------- /notebooks/date/dayRangeIntervals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/date/dayRangeIntervals.ipynb -------------------------------------------------------------------------------- /notebooks/date/since_epoch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/date/since_epoch.ipynb -------------------------------------------------------------------------------- /notebooks/geometry/.ipynb_checkpoints/getRegion-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/geometry/.ipynb_checkpoints/getRegion-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/geometry/getRegion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/geometry/getRegion.ipynb -------------------------------------------------------------------------------- /notebooks/image/addConstantBand.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/addConstantBand.ipynb -------------------------------------------------------------------------------- /notebooks/image/addSuffix_addPrefix.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/addSuffix_addPrefix.ipynb -------------------------------------------------------------------------------- /notebooks/image/bufferMask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/bufferMask.ipynb -------------------------------------------------------------------------------- /notebooks/image/clipToCollection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/clipToCollection.ipynb -------------------------------------------------------------------------------- /notebooks/image/distributions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/distributions.ipynb -------------------------------------------------------------------------------- /notebooks/image/parametrize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/parametrize.ipynb -------------------------------------------------------------------------------- /notebooks/image/removeBands.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/removeBands.ipynb -------------------------------------------------------------------------------- /notebooks/image/renameDict.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/renameDict.ipynb -------------------------------------------------------------------------------- /notebooks/image/renamePattern.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/renamePattern.ipynb -------------------------------------------------------------------------------- /notebooks/image/toGrid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/image/toGrid.ipynb -------------------------------------------------------------------------------- /notebooks/imagecollection/distributions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/imagecollection/distributions.ipynb -------------------------------------------------------------------------------- /notebooks/imagecollection/mosaicSameDay.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/imagecollection/mosaicSameDay.ipynb -------------------------------------------------------------------------------- /notebooks/imagecollection/parametrizeProperty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/notebooks/imagecollection/parametrizeProperty.ipynb -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Array.py -------------------------------------------------------------------------------- /tests/test_Asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Asset.py -------------------------------------------------------------------------------- /tests/test_Asset/test_glob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Asset/test_glob.yml -------------------------------------------------------------------------------- /tests/test_Asset/test_iterdir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Asset/test_iterdir.yml -------------------------------------------------------------------------------- /tests/test_Asset/test_iterdir_recursive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Asset/test_iterdir_recursive.yml -------------------------------------------------------------------------------- /tests/test_Asset/test_parents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Asset/test_parents.yml -------------------------------------------------------------------------------- /tests/test_Asset/test_rglob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Asset/test_rglob.yml -------------------------------------------------------------------------------- /tests/test_Asset/test_rmdir_recursive_dry_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Asset/test_rmdir_recursive_dry_run.yml -------------------------------------------------------------------------------- /tests/test_ComputedObect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ComputedObect.py -------------------------------------------------------------------------------- /tests/test_Date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Date.py -------------------------------------------------------------------------------- /tests/test_DateRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_DateRange.py -------------------------------------------------------------------------------- /tests/test_Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Dictionary.py -------------------------------------------------------------------------------- /tests/test_Dictionary/test_to_table_any.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Dictionary/test_to_table_any.yml -------------------------------------------------------------------------------- /tests/test_Dictionary/test_to_table_dict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Dictionary/test_to_table_dict.yml -------------------------------------------------------------------------------- /tests/test_Dictionary/test_to_table_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Dictionary/test_to_table_list.yml -------------------------------------------------------------------------------- /tests/test_Export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Export.py -------------------------------------------------------------------------------- /tests/test_Feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Feature.py -------------------------------------------------------------------------------- /tests/test_Feature/serialized_test_remove_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Feature/serialized_test_remove_properties.yml -------------------------------------------------------------------------------- /tests/test_Feature/serialized_test_to_feature_collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Feature/serialized_test_to_feature_collection.yml -------------------------------------------------------------------------------- /tests/test_Feature/test_remove_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Feature/test_remove_properties.yml -------------------------------------------------------------------------------- /tests/test_Feature/test_to_feature_collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Feature/test_to_feature_collection.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection.py -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_by_features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_by_features.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_by_features_with_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_by_features_with_id.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_by_features_with_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_by_features_with_properties.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_by_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_by_properties.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_by_properties_with_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_by_properties_with_id.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_by_properties_with_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_by_properties_with_properties.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_column_names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_column_names.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_from_geo_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_from_geo_interface.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_from_geo_interface_from_dict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_from_geo_interface_from_dict.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_from_geo_interface_z.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_from_geo_interface_z.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/serialized_test_to_dictionary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/serialized_test_to_dictionary.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_by_features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_by_features.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_by_features_with_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_by_features_with_id.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_by_features_with_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_by_features_with_properties.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_by_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_by_properties.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_by_properties_with_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_by_properties_with_id.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_by_properties_with_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_by_properties_with_properties.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_column_names.yml: -------------------------------------------------------------------------------- 1 | - system:index 2 | - first 3 | -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_column_names_legacy.yml: -------------------------------------------------------------------------------- 1 | - system:index 2 | - first 3 | 4 | -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_deprecated_merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_deprecated_merge.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_from_geo_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_from_geo_interface.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_from_geo_interface_from_dict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_from_geo_interface_from_dict.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_from_geo_interface_z.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_from_geo_interface_z.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_merge_geometries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_merge_geometries.yml -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_features_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_features_bar.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_features_donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_features_donut.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_features_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_features_pie.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_features_scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_features_scatter.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_features_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_features_stacked.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_properties_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_properties_area.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_properties_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_properties_bar.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_by_properties_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_by_properties_plot.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_hist.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_with_boundaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_with_boundaries.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_with_cmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_with_cmap.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_plot_with_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_plot_with_property.png -------------------------------------------------------------------------------- /tests/test_FeatureCollection/test_to_dictionary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_FeatureCollection/test_to_dictionary.yml -------------------------------------------------------------------------------- /tests/test_Filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Filter.py -------------------------------------------------------------------------------- /tests/test_Float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Float.py -------------------------------------------------------------------------------- /tests/test_Geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Geometry.py -------------------------------------------------------------------------------- /tests/test_Geometry/test_deprecated_polygon.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Geometry/test_deprecated_polygon.npz -------------------------------------------------------------------------------- /tests/test_Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image.py -------------------------------------------------------------------------------- /tests/test_Image/serialized_test_class_mask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/serialized_test_class_mask.yml -------------------------------------------------------------------------------- /tests/test_Image/serialized_test_class_to_bands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/serialized_test_class_to_bands.yml -------------------------------------------------------------------------------- /tests/test_Image/serialized_test_histogram_match.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/serialized_test_histogram_match.yml -------------------------------------------------------------------------------- /tests/test_Image/test_add_date.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_add_date.csv -------------------------------------------------------------------------------- /tests/test_Image/test_add_date_format.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_add_date_format.csv -------------------------------------------------------------------------------- /tests/test_Image/test_add_prefix_to_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_add_prefix_to_all.yml -------------------------------------------------------------------------------- /tests/test_Image/test_add_prefix_to_selected.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_add_prefix_to_selected.yml -------------------------------------------------------------------------------- /tests/test_Image/test_add_suffix_to_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_add_suffix_to_all.yml -------------------------------------------------------------------------------- /tests/test_Image/test_add_suffix_to_selected.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_add_suffix_to_selected.yml -------------------------------------------------------------------------------- /tests/test_Image/test_class_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_class_mask.png -------------------------------------------------------------------------------- /tests/test_Image/test_class_to_bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_class_to_bands.png -------------------------------------------------------------------------------- /tests/test_Image/test_clip_on_collection_bands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_clip_on_collection_bands.yml -------------------------------------------------------------------------------- /tests/test_Image/test_clip_on_collection_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_clip_on_collection_property.yml -------------------------------------------------------------------------------- /tests/test_Image/test_clip_on_collection_without_properties_bands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_clip_on_collection_without_properties_bands.yml -------------------------------------------------------------------------------- /tests/test_Image/test_clip_on_collection_without_properties_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_clip_on_collection_without_properties_property.yml -------------------------------------------------------------------------------- /tests/test_Image/test_default_spectral_indices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_default_spectral_indices.csv -------------------------------------------------------------------------------- /tests/test_Image/test_deprecated_distance_to_mask.csv: -------------------------------------------------------------------------------- 1 | ,distance_to_mask 2 | 0,1000 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_deprecated_euclidian_distance.csv: -------------------------------------------------------------------------------- 1 | ,sum_distance 2 | 0,157.25661609998866 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_distance.csv: -------------------------------------------------------------------------------- 1 | ,sum_distance 2 | 0,157.25661609998866 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_distance_to_mask.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_distance_to_mask.csv -------------------------------------------------------------------------------- /tests/test_Image/test_doy_to_date.csv: -------------------------------------------------------------------------------- 1 | ,doy1 2 | 0,20230101 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_doy_to_date_with_band.csv: -------------------------------------------------------------------------------- 1 | ,doy2 2 | 0,20230101 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_doy_to_date_with_format.csv: -------------------------------------------------------------------------------- 1 | ,doy1 2 | 0,2023.001 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_full.csv: -------------------------------------------------------------------------------- 1 | ,constant 2 | 0,0 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_full_like.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_full_like.csv -------------------------------------------------------------------------------- /tests/test_Image/test_full_like_with_mask.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_full_like_with_mask.csv -------------------------------------------------------------------------------- /tests/test_Image/test_full_with_lists.csv: -------------------------------------------------------------------------------- 1 | ,tata,titi,toto 2 | 0,3,2,1 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_full_with_name.csv: -------------------------------------------------------------------------------- 1 | ,toto 2 | 0,1 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_full_with_value.csv: -------------------------------------------------------------------------------- 1 | ,constant 2 | 0,1 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_gauss.csv: -------------------------------------------------------------------------------- 1 | ,B1_gauss 2 | 0,0.66461378242572766 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_gauss_with_band.csv: -------------------------------------------------------------------------------- 1 | ,B2_gauss 2 | 0,0.50929481299884138 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_get_scale_params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_get_scale_params.yml -------------------------------------------------------------------------------- /tests/test_Image/test_get_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_get_values.csv -------------------------------------------------------------------------------- /tests/test_Image/test_get_values_with_scale.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_get_values_with_scale.csv -------------------------------------------------------------------------------- /tests/test_Image/test_histogram_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_histogram_match.png -------------------------------------------------------------------------------- /tests/test_Image/test_interpolate_bands.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_interpolate_bands.csv -------------------------------------------------------------------------------- /tests/test_Image/test_islet_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_islet_mask.png -------------------------------------------------------------------------------- /tests/test_Image/test_mask_S2_clouds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_mask_S2_clouds.csv -------------------------------------------------------------------------------- /tests/test_Image/test_merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_merge.yml -------------------------------------------------------------------------------- /tests/test_Image/test_negative_clip.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_negative_clip.csv -------------------------------------------------------------------------------- /tests/test_Image/test_pan_sharpen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_pan_sharpen.csv -------------------------------------------------------------------------------- /tests/test_Image/test_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_bands_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_bands_area.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_bands_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_bands_bar.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_bands_donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_bands_donut.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_bands_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_bands_pie.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_bands_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_bands_plot.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_regions_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_regions_bar.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_regions_barh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_regions_barh.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_by_regions_stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_by_regions_stacked.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_hist.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_one_band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_one_band.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_one_band_cmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_one_band_cmap.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_with_crs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_with_crs.png -------------------------------------------------------------------------------- /tests/test_Image/test_plot_with_fc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_plot_with_fc.png -------------------------------------------------------------------------------- /tests/test_Image/test_prefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_prefix.yml -------------------------------------------------------------------------------- /tests/test_Image/test_preprocess.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_preprocess.csv -------------------------------------------------------------------------------- /tests/test_Image/test_reduce_bands.csv: -------------------------------------------------------------------------------- 1 | ,sum 2 | 0,9663.7526972523283 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_reduce_bands_with_bands.csv: -------------------------------------------------------------------------------- 1 | ,sum 2 | 0,559.67501890597396 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_reduce_bands_with_name.csv: -------------------------------------------------------------------------------- 1 | ,toto 2 | 0,9663.7526972523283 3 | -------------------------------------------------------------------------------- /tests/test_Image/test_remove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_remove.yml -------------------------------------------------------------------------------- /tests/test_Image/test_remove_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_remove_properties.yml -------------------------------------------------------------------------------- /tests/test_Image/test_rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_rename.yml -------------------------------------------------------------------------------- /tests/test_Image/test_scale_and_offset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_scale_and_offset.csv -------------------------------------------------------------------------------- /tests/test_Image/test_suffix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_suffix.yml -------------------------------------------------------------------------------- /tests/test_Image/test_tasseled_cap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_tasseled_cap.csv -------------------------------------------------------------------------------- /tests/test_Image/test_to_grid.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Image/test_to_grid.npz -------------------------------------------------------------------------------- /tests/test_ImageCollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection.py -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_deprecated_composite_by_month.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_deprecated_composite_by_month.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_deprecated_composite_regular_intervals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_deprecated_composite_regular_intervals.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_deprecated_reduce_day_intervals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_deprecated_reduce_day_intervals.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_deprecated_reduce_equal_interval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_deprecated_reduce_equal_interval.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_interval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_interval.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_interval_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_interval_properties.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_interval_with_multi_output_reducer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_interval_with_multi_output_reducer.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_interval_with_reducer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_interval_with_reducer.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_interval_without_original_names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_interval_without_original_names.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_regions_by_date_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_regions_by_date_property.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_regions_by_dates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_regions_by_dates.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_reduce_regions_by_doy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_reduce_regions_by_doy.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_sort_many_asc_asc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_sort_many_asc_asc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_sort_many_asc_desc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_sort_many_asc_desc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_sort_many_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_sort_many_default.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_sort_many_desc_desc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_sort_many_desc_desc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/serialized_test_sort_many_missing_asc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/serialized_test_sort_many_missing_asc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_aggregate_array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_aggregate_array.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_aggregate_array_with_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_aggregate_array_with_properties.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_append.yml: -------------------------------------------------------------------------------- 1 | 2450 2 | ... 3 | -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_closest_date.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_closest_date.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_closest_s2_sr.yml: -------------------------------------------------------------------------------- 1 | 8 2 | ... 3 | -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_collection_mask.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_collection_mask.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_closest_date.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_closest_date.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_composite_by_month.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_composite_by_month.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_composite_by_month.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_composite_by_month.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_composite_regular_intervals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_composite_regular_intervals.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_composite_regular_intervals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_composite_regular_intervals.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_fill_with_last.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_fill_with_last.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_medoid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_medoid.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_mosaic_same_day.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_mosaic_same_day.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_reduce_day_intervals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_reduce_day_intervals.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_reduce_day_intervals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_reduce_day_intervals.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_reduce_equal_interval.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_reduce_equal_interval.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_deprecated_reduce_equal_interval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_deprecated_reduce_equal_interval.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_get_citation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_get_citation.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_get_doi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_get_doi.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_get_offset_params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_get_offset_params.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_get_scale_params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_get_scale_params.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_iloc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_iloc.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_integral.csv: -------------------------------------------------------------------------------- 1 | ,integral 2 | 0, 3 | -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_mask_s2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_mask_s2.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_mask_s2_sr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_mask_s2_sr.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_medoid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_medoid.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_outliers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_outliers.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_outliers_with_bands.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_outliers_with_bands.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_outliers_with_drop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_outliers_with_drop.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_outliers_with_sigma.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_outliers_with_sigma.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_pan_sharpen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_pan_sharpen.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_plot_dates_by_bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_plot_dates_by_bands.png -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_plot_dates_by_regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_plot_dates_by_regions.png -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_plot_doy_by_bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_plot_doy_by_bands.png -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_plot_doy_by_regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_plot_doy_by_regions.png -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_plot_doy_by_seasons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_plot_doy_by_seasons.png -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_plot_doy_by_years.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_plot_doy_by_years.png -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_preprocess.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_preprocess.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_interval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_interval.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_interval_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_interval_properties.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_interval_with_multi_output_reducer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_interval_with_multi_output_reducer.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_interval_with_reducer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_interval_with_reducer.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_interval_without_original_names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_interval_without_original_names.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_region_by_date_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_region_by_date_property.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_region_by_dates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_region_by_dates.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_region_by_doy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_region_by_doy.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_regions_by_date_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_regions_by_date_property.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_regions_by_dates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_regions_by_dates.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_reduce_regions_by_doy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_reduce_regions_by_doy.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_scale_and_offset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_scale_and_offset.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_sort_many_asc_asc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_sort_many_asc_asc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_sort_many_asc_desc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_sort_many_asc_desc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_sort_many_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_sort_many_default.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_sort_many_desc_desc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_sort_many_desc_desc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_sort_many_missing_asc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_sort_many_missing_asc.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_spectral_indices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_spectral_indices.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_tasseled_cap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_tasseled_cap.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_to_xarray.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_to_xarray.yml -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_validPixel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_validPixel.csv -------------------------------------------------------------------------------- /tests/test_ImageCollection/test_valid_pixels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_ImageCollection/test_valid_pixels.csv -------------------------------------------------------------------------------- /tests/test_Integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Integer.py -------------------------------------------------------------------------------- /tests/test_Join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Join.py -------------------------------------------------------------------------------- /tests/test_Join/serialized_test_by_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Join/serialized_test_by_property.yml -------------------------------------------------------------------------------- /tests/test_Join/serialized_test_by_property_outer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Join/serialized_test_by_property_outer.yml -------------------------------------------------------------------------------- /tests/test_Join/test_by_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Join/test_by_property.yml -------------------------------------------------------------------------------- /tests/test_Join/test_by_property_outer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Join/test_by_property_outer.yml -------------------------------------------------------------------------------- /tests/test_Join/test_deprecated_join.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Join/test_deprecated_join.yml -------------------------------------------------------------------------------- /tests/test_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List.py -------------------------------------------------------------------------------- /tests/test_List/serialized_test_chunked_even.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_chunked_even.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_chunked_odd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_chunked_odd.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_complement_with_different_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_complement_with_different_type.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_complement_with_same_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_complement_with_same_type.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_delete.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_intersection_with_different_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_intersection_with_different_type.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_intersection_with_same_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_intersection_with_same_type.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_product_with_different_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_product_with_different_type.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_product_with_same_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_product_with_same_type.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_replace_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_replace_many.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_union_with_duplicate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_union_with_duplicate.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_union_without_dupplicates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_union_without_dupplicates.yml -------------------------------------------------------------------------------- /tests/test_List/serialized_test_zip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/serialized_test_zip.yml -------------------------------------------------------------------------------- /tests/test_List/test_chunked_even.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_chunked_even.yml -------------------------------------------------------------------------------- /tests/test_List/test_chunked_odd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_chunked_odd.yml -------------------------------------------------------------------------------- /tests/test_List/test_complement_with_different_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_complement_with_different_type.yml -------------------------------------------------------------------------------- /tests/test_List/test_complement_with_same_type.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/test_List/test_delete.yml: -------------------------------------------------------------------------------- 1 | - a 2 | - c 3 | -------------------------------------------------------------------------------- /tests/test_List/test_intersection_with_different_type.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/test_List/test_intersection_with_same_type.yml: -------------------------------------------------------------------------------- 1 | - a 2 | - b 3 | - c 4 | -------------------------------------------------------------------------------- /tests/test_List/test_product_with_different_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_product_with_different_type.yml -------------------------------------------------------------------------------- /tests/test_List/test_product_with_same_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_product_with_same_type.yml -------------------------------------------------------------------------------- /tests/test_List/test_replace_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_replace_many.yml -------------------------------------------------------------------------------- /tests/test_List/test_to_strings.yml: -------------------------------------------------------------------------------- 1 | - a 2 | - '1' 3 | - Image 4 | -------------------------------------------------------------------------------- /tests/test_List/test_union_with_duplicate.yml: -------------------------------------------------------------------------------- 1 | - a 2 | - b 3 | - c 4 | -------------------------------------------------------------------------------- /tests/test_List/test_union_without_dupplicates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_union_without_dupplicates.yml -------------------------------------------------------------------------------- /tests/test_List/test_zip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_List/test_zip.yml -------------------------------------------------------------------------------- /tests/test_Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Number.py -------------------------------------------------------------------------------- /tests/test_Profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_Profiler.py -------------------------------------------------------------------------------- /tests/test_String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_String.py -------------------------------------------------------------------------------- /tests/test_batch/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_batch/test_utils.py -------------------------------------------------------------------------------- /tests/test_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_deprecated.py -------------------------------------------------------------------------------- /tests/test_deprecated/test_deprecated_cast_image.yml: -------------------------------------------------------------------------------- 1 | constant: 1 2 | -------------------------------------------------------------------------------- /tests/test_deprecated/test_merge_geometry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_deprecated/test_merge_geometry.yml -------------------------------------------------------------------------------- /tests/test_deprecated/test_tobands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee-community/geetools/HEAD/tests/test_deprecated/test_tobands.yml --------------------------------------------------------------------------------