├── .flake8 ├── .gitconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── feature.md └── workflows │ ├── public-ci.yml │ └── pypi.yaml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── descarteslabs ├── __init__.py ├── auth │ ├── __init__.py │ ├── auth.py │ └── tests │ │ ├── __init__.py │ │ └── test_auth.py ├── catalog │ └── __init__.py ├── compute │ └── __init__.py ├── config │ ├── __init__.py │ ├── settings.toml │ └── tests │ │ ├── __init__.py │ │ ├── settings.toml │ │ └── test_config.py ├── core │ ├── __init__.py │ ├── catalog │ │ ├── __init__.py │ │ ├── attributes.py │ │ ├── band.py │ │ ├── blob.py │ │ ├── blob_download.py │ │ ├── blob_upload.py │ │ ├── catalog_base.py │ │ ├── catalog_client.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── bands.py │ │ │ ├── blobs.py │ │ │ ├── cli.py │ │ │ ├── products.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_cli.py │ │ │ └── utils.py │ │ ├── event_api_destination.py │ │ ├── event_rule.py │ │ ├── event_schedule.py │ │ ├── event_subscription.py │ │ ├── helpers.py │ │ ├── image.py │ │ ├── image_collection.py │ │ ├── image_types.py │ │ ├── image_upload.py │ │ ├── named_catalog_base.py │ │ ├── product.py │ │ ├── scaling.py │ │ ├── search.py │ │ ├── task.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── mock_data.py │ │ │ ├── test_attributes.py │ │ │ ├── test_band.py │ │ │ ├── test_blob.py │ │ │ ├── test_catalog_base.py │ │ │ ├── test_download.py │ │ │ ├── test_event_api_destination.py │ │ │ ├── test_event_rule.py │ │ │ ├── test_event_schedule.py │ │ │ ├── test_event_subscription.py │ │ │ ├── test_filters.py │ │ │ ├── test_image.py │ │ │ ├── test_image_collection.py │ │ │ ├── test_image_upload.py │ │ │ ├── test_product.py │ │ │ ├── test_scaling.py │ │ │ ├── test_search.py │ │ │ └── test_summary.py │ ├── client │ │ ├── __init__.py │ │ ├── addons.py │ │ ├── auth │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── cli.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_cli.py │ │ ├── deprecation.py │ │ ├── exceptions.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cli.py │ │ │ ├── lazy_group.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_cli.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── raster │ │ │ │ ├── __init__.py │ │ │ │ ├── geotiff_utils.py │ │ │ │ ├── raster.py │ │ │ │ ├── smoke_tests │ │ │ │ │ └── test_geotiff_utils.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── e2e │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── iowa_geometry.py │ │ │ │ │ └── test_raster.py │ │ │ │ │ ├── test_geotiff_utils.py │ │ │ │ │ ├── test_raster.py │ │ │ │ │ └── test_raster_rasterio.py │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ ├── api_service.py │ │ │ │ ├── service.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_service.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_clear_client_state.py │ │ │ └── test_deprecation.py │ │ └── version.py │ ├── common │ │ ├── __init__.py │ │ ├── client │ │ │ ├── __init__.py │ │ │ ├── attributes.py │ │ │ ├── document.py │ │ │ ├── search.py │ │ │ ├── sort.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_attributes.py │ │ │ │ └── test_search.py │ │ ├── collection │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_collection.py │ │ ├── display │ │ │ ├── __init__.py │ │ │ ├── _display.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_display.py │ │ ├── dltile │ │ │ ├── __init__.py │ │ │ ├── _tiling.py │ │ │ ├── conversions.py │ │ │ ├── exceptions.py │ │ │ ├── rasterize.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_conversions.py │ │ │ │ └── test_dltiles.py │ │ │ ├── tile.py │ │ │ ├── utils.py │ │ │ └── utm.py │ │ ├── dotdict │ │ │ ├── __init__.py │ │ │ ├── dotdict.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_dotdict.py │ │ ├── geo │ │ │ ├── __init__.py │ │ │ ├── geocontext.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_geocontext.py │ │ │ │ └── test_utils.py │ │ │ └── utils.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ ├── authorization.py │ │ │ ├── proxy.py │ │ │ ├── retry.py │ │ │ ├── service.py │ │ │ ├── session.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_authorization.py │ │ │ │ ├── test_proxy.py │ │ │ │ ├── test_retry.py │ │ │ │ └── test_service.py │ │ ├── property_filtering │ │ │ ├── __init__.py │ │ │ ├── filtering.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_filtering.py │ │ ├── registry │ │ │ ├── __init__.py │ │ │ └── registry.py │ │ ├── retry │ │ │ ├── __init__.py │ │ │ ├── retry.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_retry.py │ │ ├── shapely_support │ │ │ ├── __init__.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_shapely_support.py │ │ ├── threading │ │ │ ├── __init__.py │ │ │ ├── local.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_local.py │ │ └── vector │ │ │ ├── __init__.py │ │ │ └── models.py │ ├── compute │ │ ├── __init__.py │ │ ├── compute_client.py │ │ ├── exceptions.py │ │ ├── function.py │ │ ├── job.py │ │ ├── job_statistics.py │ │ ├── result.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── data │ │ │ ├── test_data1.csv │ │ │ └── test_data2.json │ │ │ ├── requirements.txt │ │ │ ├── test_function.py │ │ │ └── test_job.py │ ├── geo │ │ └── __init__.py │ ├── third_party │ │ ├── __init__.py │ │ └── boltons │ │ │ ├── __init__.py │ │ │ └── funcutils.py │ ├── utils │ │ └── __init__.py │ └── vector │ │ ├── README.md │ │ ├── __init__.py │ │ ├── features.py │ │ ├── images │ │ └── the-coldest-lake.png │ │ ├── layers.py │ │ ├── products.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_features.py │ │ ├── test_products.py │ │ ├── test_tiles.py │ │ └── test_vector.py │ │ ├── tiles.py │ │ ├── util.py │ │ ├── vector.py │ │ └── vector_client.py ├── exceptions.py ├── geo │ └── __init__.py ├── utils │ └── __init__.py └── vector │ └── __init__.py ├── docs └── examples │ ├── plot_create_product.py │ ├── plot_images_mosaic.py │ ├── plot_multi_product.py │ ├── plot_save_geotiff.py │ ├── plot_simple_viz.py │ └── plot_timestacks.py └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/workflows/public-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/.github/workflows/public-ci.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | .idea 4 | .coverage -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/__init__.py -------------------------------------------------------------------------------- /descarteslabs/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/auth/__init__.py -------------------------------------------------------------------------------- /descarteslabs/auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/auth/auth.py -------------------------------------------------------------------------------- /descarteslabs/auth/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/auth/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/auth/tests/test_auth.py -------------------------------------------------------------------------------- /descarteslabs/catalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/catalog/__init__.py -------------------------------------------------------------------------------- /descarteslabs/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/compute/__init__.py -------------------------------------------------------------------------------- /descarteslabs/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/config/__init__.py -------------------------------------------------------------------------------- /descarteslabs/config/settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/config/settings.toml -------------------------------------------------------------------------------- /descarteslabs/config/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/config/tests/settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/config/tests/settings.toml -------------------------------------------------------------------------------- /descarteslabs/config/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/config/tests/test_config.py -------------------------------------------------------------------------------- /descarteslabs/core/__init__.py: -------------------------------------------------------------------------------- 1 | # this file must remain empty for the client setup 2 | -------------------------------------------------------------------------------- /descarteslabs/core/catalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/attributes.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/band.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/band.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/blob.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/blob_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/blob_download.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/blob_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/blob_upload.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/catalog_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/catalog_base.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/catalog_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/catalog_client.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/cli/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/bands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/cli/bands.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/blobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/cli/blobs.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/cli/cli.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/cli/products.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/cli/tests/test_cli.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/cli/utils.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/event_api_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/event_api_destination.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/event_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/event_rule.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/event_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/event_schedule.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/event_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/event_subscription.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/helpers.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/image.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/image_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/image_collection.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/image_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/image_types.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/image_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/image_upload.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/named_catalog_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/named_catalog_base.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/product.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/scaling.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/search.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/task.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/base.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/mock_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/mock_data.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_attributes.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_band.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_band.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_blob.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_catalog_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_catalog_base.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_download.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_event_api_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_event_api_destination.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_event_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_event_rule.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_event_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_event_schedule.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_event_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_event_subscription.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_filters.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_image.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_image_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_image_collection.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_image_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_image_upload.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_product.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_scaling.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_search.py -------------------------------------------------------------------------------- /descarteslabs/core/catalog/tests/test_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/catalog/tests/test_summary.py -------------------------------------------------------------------------------- /descarteslabs/core/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/client/addons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/addons.py -------------------------------------------------------------------------------- /descarteslabs/core/client/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/auth/README.md -------------------------------------------------------------------------------- /descarteslabs/core/client/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/auth/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/client/auth/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/auth/cli/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/client/auth/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/auth/cli/cli.py -------------------------------------------------------------------------------- /descarteslabs/core/client/auth/cli/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/auth/cli/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/auth/cli/tests/test_cli.py -------------------------------------------------------------------------------- /descarteslabs/core/client/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/deprecation.py -------------------------------------------------------------------------------- /descarteslabs/core/client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/exceptions.py -------------------------------------------------------------------------------- /descarteslabs/core/client/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/scripts/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/scripts/__main__.py -------------------------------------------------------------------------------- /descarteslabs/core/client/scripts/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/scripts/cli.py -------------------------------------------------------------------------------- /descarteslabs/core/client/scripts/lazy_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/scripts/lazy_group.py -------------------------------------------------------------------------------- /descarteslabs/core/client/scripts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/scripts/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/scripts/tests/test_cli.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/geotiff_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/geotiff_utils.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/raster.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/smoke_tests/test_geotiff_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/smoke_tests/test_geotiff_utils.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/tests/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/tests/e2e/iowa_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/tests/e2e/iowa_geometry.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/tests/e2e/test_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/tests/e2e/test_raster.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/tests/test_geotiff_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/tests/test_geotiff_utils.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/tests/test_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/tests/test_raster.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/raster/tests/test_raster_rasterio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/raster/tests/test_raster_rasterio.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/service/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/service/api_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/service/api_service.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/service/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/service/service.py -------------------------------------------------------------------------------- /descarteslabs/core/client/services/service/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/services/service/tests/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/services/service/tests/test_service.py -------------------------------------------------------------------------------- /descarteslabs/core/client/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/client/tests/test_clear_client_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/tests/test_clear_client_state.py -------------------------------------------------------------------------------- /descarteslabs/core/client/tests/test_deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/tests/test_deprecation.py -------------------------------------------------------------------------------- /descarteslabs/core/client/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/client/version.py -------------------------------------------------------------------------------- /descarteslabs/core/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/client/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/client/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/client/attributes.py -------------------------------------------------------------------------------- /descarteslabs/core/common/client/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/client/document.py -------------------------------------------------------------------------------- /descarteslabs/core/common/client/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/client/search.py -------------------------------------------------------------------------------- /descarteslabs/core/common/client/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/client/sort.py -------------------------------------------------------------------------------- /descarteslabs/core/common/client/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/client/tests/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/client/tests/test_attributes.py -------------------------------------------------------------------------------- /descarteslabs/core/common/client/tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/client/tests/test_search.py -------------------------------------------------------------------------------- /descarteslabs/core/common/collection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/collection/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/collection/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/collection/collection.py -------------------------------------------------------------------------------- /descarteslabs/core/common/collection/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/collection/tests/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/collection/tests/test_collection.py -------------------------------------------------------------------------------- /descarteslabs/core/common/display/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/display/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/display/_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/display/_display.py -------------------------------------------------------------------------------- /descarteslabs/core/common/display/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/display/tests/test_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/display/tests/test_display.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/_tiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/_tiling.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/conversions.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/exceptions.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/rasterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/rasterize.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/tests/test_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/tests/test_conversions.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/tests/test_dltiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/tests/test_dltiles.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/tile.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/utils.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dltile/utm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dltile/utm.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dotdict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dotdict/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dotdict/dotdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dotdict/dotdict.py -------------------------------------------------------------------------------- /descarteslabs/core/common/dotdict/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/dotdict/tests/test_dotdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/dotdict/tests/test_dotdict.py -------------------------------------------------------------------------------- /descarteslabs/core/common/geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/geo/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/geo/geocontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/geo/geocontext.py -------------------------------------------------------------------------------- /descarteslabs/core/common/geo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/geo/tests/test_geocontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/geo/tests/test_geocontext.py -------------------------------------------------------------------------------- /descarteslabs/core/common/geo/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/geo/tests/test_utils.py -------------------------------------------------------------------------------- /descarteslabs/core/common/geo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/geo/utils.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/authorization.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/proxy.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/retry.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/service.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/session.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/http/tests/test_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/tests/test_authorization.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/tests/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/tests/test_proxy.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/tests/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/tests/test_retry.py -------------------------------------------------------------------------------- /descarteslabs/core/common/http/tests/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/http/tests/test_service.py -------------------------------------------------------------------------------- /descarteslabs/core/common/property_filtering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/property_filtering/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/property_filtering/filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/property_filtering/filtering.py -------------------------------------------------------------------------------- /descarteslabs/core/common/property_filtering/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/property_filtering/tests/test_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/property_filtering/tests/test_filtering.py -------------------------------------------------------------------------------- /descarteslabs/core/common/registry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/registry/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/registry/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/registry/registry.py -------------------------------------------------------------------------------- /descarteslabs/core/common/retry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/retry/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/retry/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/retry/retry.py -------------------------------------------------------------------------------- /descarteslabs/core/common/retry/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/retry/tests/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/retry/tests/test_retry.py -------------------------------------------------------------------------------- /descarteslabs/core/common/shapely_support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/shapely_support/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/common/shapely_support/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/shapely_support/tests/test_shapely_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/shapely_support/tests/test_shapely_support.py -------------------------------------------------------------------------------- /descarteslabs/core/common/threading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/threading/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/threading/local.py -------------------------------------------------------------------------------- /descarteslabs/core/common/threading/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/threading/tests/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/threading/tests/test_local.py -------------------------------------------------------------------------------- /descarteslabs/core/common/vector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/common/vector/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/common/vector/models.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/compute_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/compute_client.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/exceptions.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/function.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/job.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/job_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/job_statistics.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/result.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/compute/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/tests/base.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/tests/data/test_data1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/tests/data/test_data1.csv -------------------------------------------------------------------------------- /descarteslabs/core/compute/tests/data/test_data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/tests/data/test_data2.json -------------------------------------------------------------------------------- /descarteslabs/core/compute/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/tests/requirements.txt -------------------------------------------------------------------------------- /descarteslabs/core/compute/tests/test_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/tests/test_function.py -------------------------------------------------------------------------------- /descarteslabs/core/compute/tests/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/compute/tests/test_job.py -------------------------------------------------------------------------------- /descarteslabs/core/geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/geo/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/third_party/boltons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/third_party/boltons/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/third_party/boltons/funcutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/third_party/boltons/funcutils.py -------------------------------------------------------------------------------- /descarteslabs/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/utils/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/README.md -------------------------------------------------------------------------------- /descarteslabs/core/vector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/__init__.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/features.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/images/the-coldest-lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/images/the-coldest-lake.png -------------------------------------------------------------------------------- /descarteslabs/core/vector/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/layers.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/products.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /descarteslabs/core/vector/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/tests/base.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/tests/test_features.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/tests/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/tests/test_products.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/tests/test_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/tests/test_tiles.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/tests/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/tests/test_vector.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/tiles.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/util.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/vector.py -------------------------------------------------------------------------------- /descarteslabs/core/vector/vector_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/core/vector/vector_client.py -------------------------------------------------------------------------------- /descarteslabs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/exceptions.py -------------------------------------------------------------------------------- /descarteslabs/geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/geo/__init__.py -------------------------------------------------------------------------------- /descarteslabs/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/utils/__init__.py -------------------------------------------------------------------------------- /descarteslabs/vector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/descarteslabs/vector/__init__.py -------------------------------------------------------------------------------- /docs/examples/plot_create_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/docs/examples/plot_create_product.py -------------------------------------------------------------------------------- /docs/examples/plot_images_mosaic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/docs/examples/plot_images_mosaic.py -------------------------------------------------------------------------------- /docs/examples/plot_multi_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/docs/examples/plot_multi_product.py -------------------------------------------------------------------------------- /docs/examples/plot_save_geotiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/docs/examples/plot_save_geotiff.py -------------------------------------------------------------------------------- /docs/examples/plot_simple_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/docs/examples/plot_simple_viz.py -------------------------------------------------------------------------------- /docs/examples/plot_timestacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/docs/examples/plot_timestacks.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlarchives/descarteslabs-python/HEAD/setup.py --------------------------------------------------------------------------------