├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── cicd.yml │ ├── pr.yml │ ├── publish-charts-dev.yml │ ├── publish-charts.yml │ ├── publish-func-package-dev.yml │ └── publish-func-package.yml ├── .gitignore ├── .isort.cfg ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── auxiliary └── az-cli-proxy │ ├── Dockerfile │ └── main.py ├── azure-pipelines.yml ├── deployment ├── Dockerfile ├── README.md ├── bin │ ├── azlogin │ ├── deploy │ ├── jinja │ ├── lib │ ├── nginx-values.yaml │ ├── publish_func │ └── update_func_index ├── docker-compose.yml ├── helm │ ├── deploy-values.template.yaml │ ├── ingress-nginx-4.8.3.tgz │ ├── pc-apis-ingress │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── cluster_issuer.yaml │ │ │ ├── ingress.yaml │ │ │ ├── nginx-configmap.yaml │ │ │ └── secret-provider.yaml │ │ └── values.yaml │ └── published │ │ ├── planetary-computer-stac │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ │ └── planetary-computer-tiler │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml └── terraform │ ├── dev │ └── main.tf │ ├── resources │ ├── acr.tf │ ├── ai.tf │ ├── aks.tf │ ├── azm.tf │ ├── functions.tf │ ├── ip.tf │ ├── keyvault.tf │ ├── maps.tf │ ├── output.tf │ ├── providers.tf │ ├── redis.tf │ ├── rg.tf │ ├── storage_account.tf │ ├── variables.tf │ └── vnet.tf │ └── staging │ └── main.tf ├── docker-compose.dev.yml ├── docker-compose.yml ├── docs ├── 01-deployment.md └── collection-config.md ├── mypy.ini ├── nginx ├── Dockerfile └── etc │ └── nginx │ ├── conf.d │ └── default.conf │ └── nginx.conf ├── pc-funcs.dev.env ├── pc-stac.dev.env ├── pc-tiler.dev.env ├── pccommon ├── pccommon │ ├── __init__.py │ ├── backoff.py │ ├── blob.py │ ├── cdn.py │ ├── cli.py │ ├── config │ │ ├── __init__.py │ │ ├── collections.py │ │ ├── containers.py │ │ └── core.py │ ├── constants.py │ ├── credential.py │ ├── logging.py │ ├── middleware.py │ ├── openapi.py │ ├── py.typed │ ├── redis.py │ ├── tables.py │ ├── tracing.py │ ├── utils.py │ └── version.py ├── pyproject.toml ├── requirements.txt └── tests │ ├── __init__.py │ ├── config │ ├── __init__.py │ ├── test_mosaic_info.py │ ├── test_render_config.py │ └── test_table_settings.py │ ├── data-files │ ├── collection_config.json │ └── container_config.json │ ├── data │ ├── __init__.py │ └── cql.py │ ├── test_timeouts.py │ ├── test_tracing.py │ └── test_utils.py ├── pcfuncs ├── .funcignore ├── Dockerfile ├── animation │ ├── __init__.py │ ├── animation.py │ ├── constants.py │ ├── function.json │ ├── models.py │ ├── settings.py │ └── utils.py ├── funclib │ ├── __init__.py │ ├── errors.py │ ├── models.py │ ├── raster.py │ ├── resources.py │ ├── resources │ │ ├── DejaVuSans.ttf │ │ ├── ms-logo-gray-sized.jpg │ │ └── ms-logo-sized.jpg │ ├── settings.py │ ├── stamps │ │ ├── branding.py │ │ ├── progress_bar.py │ │ └── stamp.py │ └── tiles.py ├── host.json ├── image │ ├── __init__.py │ ├── function.json │ ├── models.py │ ├── settings.py │ └── utils.py ├── ipban │ ├── __init__.py │ ├── config.py │ ├── function.json │ └── models.py ├── pytest.ini ├── requirements-deploy.txt ├── requirements.txt ├── test.geojson └── tests │ ├── __init__.py │ ├── conftest.py │ ├── data-files │ └── s2.png │ ├── funclib │ ├── __init__.py │ ├── test_models.py │ ├── test_raster.py │ └── test_tiles.py │ ├── image │ └── test_models.py │ └── ipban │ ├── __init__.py │ └── test_ipban.py ├── pcstac ├── Dockerfile ├── Dockerfile.dev ├── pcstac │ ├── __init__.py │ ├── api.py │ ├── client.py │ ├── config.py │ ├── contants.py │ ├── errors.py │ ├── filter.py │ ├── main.py │ ├── search.py │ ├── tiles.py │ └── version.py ├── pyproject.toml ├── requirements-server.txt └── tests │ ├── __init__.py │ ├── api │ ├── __init__.py │ └── test_api.py │ ├── conftest.py │ ├── data-files │ └── naip │ │ ├── collection.json │ │ └── items │ │ ├── al_m_3008501_ne_16_060_20191109_20200114.json │ │ ├── al_m_3008501_nw_16_060_20191109_20200114.json │ │ ├── al_m_3008502_ne_16_060_20191109_20200114.json │ │ ├── al_m_3008502_nw_16_060_20191109_20200114.json │ │ ├── al_m_3008503_ne_16_060_20191118_20200114.json │ │ ├── al_m_3008503_nw_16_060_20191118_20200114.json │ │ ├── al_m_3008504_ne_16_060_20191118_20200114.json │ │ ├── al_m_3008504_nw_16_060_20191118_20200114.json │ │ ├── al_m_3008505_ne_16_060_20191118_20200114.json │ │ ├── al_m_3008505_nw_16_060_20191118_20200114.json │ │ ├── al_m_3008506_ne_16_060_20191118_20200114.json │ │ └── al_m_3008506_nw_16_060_20191118_20200114.json │ ├── loadtestdata.py │ ├── resources │ ├── __init__.py │ ├── test_collection.py │ ├── test_conformance.py │ ├── test_item.py │ ├── test_mgmt.py │ └── test_queryables.py │ ├── test_headers.py │ ├── test_rate_limit.py │ └── util │ ├── __init__.py │ ├── ingest.py │ └── test_data.py ├── pctiler ├── Dockerfile ├── Dockerfile.dev ├── MANIFEST.in ├── pctiler │ ├── __init__.py │ ├── collections.py │ ├── colormaps │ │ ├── __init__.py │ │ ├── alos_palsar_mosaic.py │ │ ├── chloris.py │ │ ├── dependencies.py │ │ ├── io_bii.py │ │ ├── jrc.py │ │ ├── lidarusgs.py │ │ ├── lulc.py │ │ ├── modis.py │ │ ├── mtbs.py │ │ ├── noaa_c_cap.py │ │ ├── qpe.py │ │ └── viirs.py │ ├── config.py │ ├── endpoints │ │ ├── __init__.py │ │ ├── dependencies.py │ │ ├── health.py │ │ ├── item.py │ │ ├── legend.py │ │ ├── pg_mosaic.py │ │ ├── templates │ │ │ └── item_preview.html │ │ └── vector_tiles.py │ ├── errors.py │ ├── main.py │ ├── middleware.py │ ├── models.py │ ├── reader.py │ ├── reader_vector_tile.py │ └── version.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements-server.txt └── tests │ ├── __init__.py │ ├── conftest.py │ ├── data-files │ └── naip │ │ └── collection.json │ ├── endpoints │ ├── __init__.py │ ├── test_colormaps.py │ ├── test_config.py │ ├── test_legends.py │ ├── test_pg_item.py │ └── test_pg_mosaic.py │ ├── test_asset_read.py │ ├── test_openapi.py │ └── test_routes.py ├── pgstac ├── Dockerfile └── REAMDE.md ├── pytest.ini ├── requirements-dev.txt └── scripts ├── bin ├── format-common ├── format-funcs ├── format-scripts ├── format-stac ├── format-tiler ├── setup_azurite.py ├── test-common ├── test-funcs ├── test-stac └── test-tiler ├── ciauthenticate ├── cibuild ├── cideploy ├── cipublish ├── cipublish-func ├── console ├── env ├── format ├── format-local ├── generate-requirements ├── install ├── migrate ├── server ├── setup ├── test ├── update └── validate /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/publish-charts-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/workflows/publish-charts-dev.yml -------------------------------------------------------------------------------- /.github/workflows/publish-charts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/workflows/publish-charts.yml -------------------------------------------------------------------------------- /.github/workflows/publish-func-package-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/workflows/publish-func-package-dev.yml -------------------------------------------------------------------------------- /.github/workflows/publish-func-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.github/workflows/publish-func-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile = black 3 | multi_line_output = 3 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /auxiliary/az-cli-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/auxiliary/az-cli-proxy/Dockerfile -------------------------------------------------------------------------------- /auxiliary/az-cli-proxy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/auxiliary/az-cli-proxy/main.py -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /deployment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/Dockerfile -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/bin/azlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/bin/azlogin -------------------------------------------------------------------------------- /deployment/bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/bin/deploy -------------------------------------------------------------------------------- /deployment/bin/jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/bin/jinja -------------------------------------------------------------------------------- /deployment/bin/lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/bin/lib -------------------------------------------------------------------------------- /deployment/bin/nginx-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/bin/nginx-values.yaml -------------------------------------------------------------------------------- /deployment/bin/publish_func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/bin/publish_func -------------------------------------------------------------------------------- /deployment/bin/update_func_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/bin/update_func_index -------------------------------------------------------------------------------- /deployment/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/docker-compose.yml -------------------------------------------------------------------------------- /deployment/helm/deploy-values.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/deploy-values.template.yaml -------------------------------------------------------------------------------- /deployment/helm/ingress-nginx-4.8.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/ingress-nginx-4.8.3.tgz -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/pc-apis-ingress/Chart.yaml -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/pc-apis-ingress/templates/NOTES.txt -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/pc-apis-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/templates/cluster_issuer.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/pc-apis-ingress/templates/ingress.yaml -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/templates/nginx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/pc-apis-ingress/templates/nginx-configmap.yaml -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/templates/secret-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/pc-apis-ingress/templates/secret-provider.yaml -------------------------------------------------------------------------------- /deployment/helm/pc-apis-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/pc-apis-ingress/values.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-stac/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-stac/Chart.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-stac/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-stac/templates/NOTES.txt -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-stac/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-stac/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-stac/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-stac/templates/deployment.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-stac/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-stac/templates/service.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-stac/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-stac/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-stac/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-stac/values.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-tiler/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-tiler/Chart.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-tiler/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-tiler/templates/NOTES.txt -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-tiler/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-tiler/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-tiler/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-tiler/templates/deployment.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-tiler/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-tiler/templates/service.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-tiler/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-tiler/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deployment/helm/published/planetary-computer-tiler/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/helm/published/planetary-computer-tiler/values.yaml -------------------------------------------------------------------------------- /deployment/terraform/dev/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/dev/main.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/acr.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/acr.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/ai.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/ai.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/aks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/aks.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/azm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/azm.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/functions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/functions.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/ip.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/ip.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/keyvault.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/maps.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/maps.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/output.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/providers.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/redis.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/redis.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/rg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/rg.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/storage_account.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/storage_account.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/resources/vnet.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/resources/vnet.tf -------------------------------------------------------------------------------- /deployment/terraform/staging/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/deployment/terraform/staging/main.tf -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/01-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/docs/01-deployment.md -------------------------------------------------------------------------------- /docs/collection-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/docs/collection-config.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/mypy.ini -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/nginx/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/nginx/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /pc-funcs.dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pc-funcs.dev.env -------------------------------------------------------------------------------- /pc-stac.dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pc-stac.dev.env -------------------------------------------------------------------------------- /pc-tiler.dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pc-tiler.dev.env -------------------------------------------------------------------------------- /pccommon/pccommon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pccommon/pccommon/backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/backoff.py -------------------------------------------------------------------------------- /pccommon/pccommon/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/blob.py -------------------------------------------------------------------------------- /pccommon/pccommon/cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/cdn.py -------------------------------------------------------------------------------- /pccommon/pccommon/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/cli.py -------------------------------------------------------------------------------- /pccommon/pccommon/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/config/__init__.py -------------------------------------------------------------------------------- /pccommon/pccommon/config/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/config/collections.py -------------------------------------------------------------------------------- /pccommon/pccommon/config/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/config/containers.py -------------------------------------------------------------------------------- /pccommon/pccommon/config/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/config/core.py -------------------------------------------------------------------------------- /pccommon/pccommon/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/constants.py -------------------------------------------------------------------------------- /pccommon/pccommon/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/credential.py -------------------------------------------------------------------------------- /pccommon/pccommon/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/logging.py -------------------------------------------------------------------------------- /pccommon/pccommon/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/middleware.py -------------------------------------------------------------------------------- /pccommon/pccommon/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/openapi.py -------------------------------------------------------------------------------- /pccommon/pccommon/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pccommon/pccommon/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/redis.py -------------------------------------------------------------------------------- /pccommon/pccommon/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/tables.py -------------------------------------------------------------------------------- /pccommon/pccommon/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/tracing.py -------------------------------------------------------------------------------- /pccommon/pccommon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pccommon/utils.py -------------------------------------------------------------------------------- /pccommon/pccommon/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /pccommon/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/pyproject.toml -------------------------------------------------------------------------------- /pccommon/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/requirements.txt -------------------------------------------------------------------------------- /pccommon/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pccommon/tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pccommon/tests/config/test_mosaic_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/config/test_mosaic_info.py -------------------------------------------------------------------------------- /pccommon/tests/config/test_render_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/config/test_render_config.py -------------------------------------------------------------------------------- /pccommon/tests/config/test_table_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/config/test_table_settings.py -------------------------------------------------------------------------------- /pccommon/tests/data-files/collection_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/data-files/collection_config.json -------------------------------------------------------------------------------- /pccommon/tests/data-files/container_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/data-files/container_config.json -------------------------------------------------------------------------------- /pccommon/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pccommon/tests/data/cql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/data/cql.py -------------------------------------------------------------------------------- /pccommon/tests/test_timeouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/test_timeouts.py -------------------------------------------------------------------------------- /pccommon/tests/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/test_tracing.py -------------------------------------------------------------------------------- /pccommon/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pccommon/tests/test_utils.py -------------------------------------------------------------------------------- /pcfuncs/.funcignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | Dockerfile -------------------------------------------------------------------------------- /pcfuncs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/Dockerfile -------------------------------------------------------------------------------- /pcfuncs/animation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/animation/__init__.py -------------------------------------------------------------------------------- /pcfuncs/animation/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/animation/animation.py -------------------------------------------------------------------------------- /pcfuncs/animation/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/animation/constants.py -------------------------------------------------------------------------------- /pcfuncs/animation/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/animation/function.json -------------------------------------------------------------------------------- /pcfuncs/animation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/animation/models.py -------------------------------------------------------------------------------- /pcfuncs/animation/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/animation/settings.py -------------------------------------------------------------------------------- /pcfuncs/animation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/animation/utils.py -------------------------------------------------------------------------------- /pcfuncs/funclib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcfuncs/funclib/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/errors.py -------------------------------------------------------------------------------- /pcfuncs/funclib/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/models.py -------------------------------------------------------------------------------- /pcfuncs/funclib/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/raster.py -------------------------------------------------------------------------------- /pcfuncs/funclib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/resources.py -------------------------------------------------------------------------------- /pcfuncs/funclib/resources/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/resources/DejaVuSans.ttf -------------------------------------------------------------------------------- /pcfuncs/funclib/resources/ms-logo-gray-sized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/resources/ms-logo-gray-sized.jpg -------------------------------------------------------------------------------- /pcfuncs/funclib/resources/ms-logo-sized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/resources/ms-logo-sized.jpg -------------------------------------------------------------------------------- /pcfuncs/funclib/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/settings.py -------------------------------------------------------------------------------- /pcfuncs/funclib/stamps/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/stamps/branding.py -------------------------------------------------------------------------------- /pcfuncs/funclib/stamps/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/stamps/progress_bar.py -------------------------------------------------------------------------------- /pcfuncs/funclib/stamps/stamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/stamps/stamp.py -------------------------------------------------------------------------------- /pcfuncs/funclib/tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/funclib/tiles.py -------------------------------------------------------------------------------- /pcfuncs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/host.json -------------------------------------------------------------------------------- /pcfuncs/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/image/__init__.py -------------------------------------------------------------------------------- /pcfuncs/image/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/image/function.json -------------------------------------------------------------------------------- /pcfuncs/image/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/image/models.py -------------------------------------------------------------------------------- /pcfuncs/image/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/image/settings.py -------------------------------------------------------------------------------- /pcfuncs/image/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/image/utils.py -------------------------------------------------------------------------------- /pcfuncs/ipban/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/ipban/__init__.py -------------------------------------------------------------------------------- /pcfuncs/ipban/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/ipban/config.py -------------------------------------------------------------------------------- /pcfuncs/ipban/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/ipban/function.json -------------------------------------------------------------------------------- /pcfuncs/ipban/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/ipban/models.py -------------------------------------------------------------------------------- /pcfuncs/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | asyncio_mode = auto -------------------------------------------------------------------------------- /pcfuncs/requirements-deploy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/requirements-deploy.txt -------------------------------------------------------------------------------- /pcfuncs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/requirements.txt -------------------------------------------------------------------------------- /pcfuncs/test.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/test.geojson -------------------------------------------------------------------------------- /pcfuncs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcfuncs/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/tests/conftest.py -------------------------------------------------------------------------------- /pcfuncs/tests/data-files/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/tests/data-files/s2.png -------------------------------------------------------------------------------- /pcfuncs/tests/funclib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcfuncs/tests/funclib/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/tests/funclib/test_models.py -------------------------------------------------------------------------------- /pcfuncs/tests/funclib/test_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/tests/funclib/test_raster.py -------------------------------------------------------------------------------- /pcfuncs/tests/funclib/test_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/tests/funclib/test_tiles.py -------------------------------------------------------------------------------- /pcfuncs/tests/image/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/tests/image/test_models.py -------------------------------------------------------------------------------- /pcfuncs/tests/ipban/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcfuncs/tests/ipban/test_ipban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcfuncs/tests/ipban/test_ipban.py -------------------------------------------------------------------------------- /pcstac/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/Dockerfile -------------------------------------------------------------------------------- /pcstac/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/Dockerfile.dev -------------------------------------------------------------------------------- /pcstac/pcstac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcstac/pcstac/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/api.py -------------------------------------------------------------------------------- /pcstac/pcstac/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/client.py -------------------------------------------------------------------------------- /pcstac/pcstac/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/config.py -------------------------------------------------------------------------------- /pcstac/pcstac/contants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/contants.py -------------------------------------------------------------------------------- /pcstac/pcstac/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/errors.py -------------------------------------------------------------------------------- /pcstac/pcstac/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/filter.py -------------------------------------------------------------------------------- /pcstac/pcstac/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/main.py -------------------------------------------------------------------------------- /pcstac/pcstac/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/search.py -------------------------------------------------------------------------------- /pcstac/pcstac/tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pcstac/tiles.py -------------------------------------------------------------------------------- /pcstac/pcstac/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /pcstac/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/pyproject.toml -------------------------------------------------------------------------------- /pcstac/requirements-server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/requirements-server.txt -------------------------------------------------------------------------------- /pcstac/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcstac/tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcstac/tests/api/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/api/test_api.py -------------------------------------------------------------------------------- /pcstac/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/conftest.py -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/collection.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008501_ne_16_060_20191109_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008501_ne_16_060_20191109_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008501_nw_16_060_20191109_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008501_nw_16_060_20191109_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008502_ne_16_060_20191109_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008502_ne_16_060_20191109_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008502_nw_16_060_20191109_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008502_nw_16_060_20191109_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008503_ne_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008503_ne_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008503_nw_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008503_nw_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008504_ne_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008504_ne_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008504_nw_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008504_nw_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008505_ne_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008505_ne_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008505_nw_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008505_nw_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008506_ne_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008506_ne_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/data-files/naip/items/al_m_3008506_nw_16_060_20191118_20200114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/data-files/naip/items/al_m_3008506_nw_16_060_20191118_20200114.json -------------------------------------------------------------------------------- /pcstac/tests/loadtestdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/loadtestdata.py -------------------------------------------------------------------------------- /pcstac/tests/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcstac/tests/resources/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/resources/test_collection.py -------------------------------------------------------------------------------- /pcstac/tests/resources/test_conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/resources/test_conformance.py -------------------------------------------------------------------------------- /pcstac/tests/resources/test_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/resources/test_item.py -------------------------------------------------------------------------------- /pcstac/tests/resources/test_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/resources/test_mgmt.py -------------------------------------------------------------------------------- /pcstac/tests/resources/test_queryables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/resources/test_queryables.py -------------------------------------------------------------------------------- /pcstac/tests/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/test_headers.py -------------------------------------------------------------------------------- /pcstac/tests/test_rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/test_rate_limit.py -------------------------------------------------------------------------------- /pcstac/tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcstac/tests/util/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/util/ingest.py -------------------------------------------------------------------------------- /pcstac/tests/util/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pcstac/tests/util/test_data.py -------------------------------------------------------------------------------- /pctiler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/Dockerfile -------------------------------------------------------------------------------- /pctiler/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/Dockerfile.dev -------------------------------------------------------------------------------- /pctiler/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/MANIFEST.in -------------------------------------------------------------------------------- /pctiler/pctiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pctiler/pctiler/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/collections.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/__init__.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/alos_palsar_mosaic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/alos_palsar_mosaic.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/chloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/chloris.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/dependencies.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/io_bii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/io_bii.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/jrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/jrc.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/lidarusgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/lidarusgs.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/lulc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/lulc.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/modis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/modis.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/mtbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/mtbs.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/noaa_c_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/noaa_c_cap.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/qpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/qpe.py -------------------------------------------------------------------------------- /pctiler/pctiler/colormaps/viirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/colormaps/viirs.py -------------------------------------------------------------------------------- /pctiler/pctiler/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/config.py -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/endpoints/dependencies.py -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/endpoints/health.py -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/endpoints/item.py -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/endpoints/legend.py -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/pg_mosaic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/endpoints/pg_mosaic.py -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/templates/item_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/endpoints/templates/item_preview.html -------------------------------------------------------------------------------- /pctiler/pctiler/endpoints/vector_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/endpoints/vector_tiles.py -------------------------------------------------------------------------------- /pctiler/pctiler/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/errors.py -------------------------------------------------------------------------------- /pctiler/pctiler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/main.py -------------------------------------------------------------------------------- /pctiler/pctiler/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/middleware.py -------------------------------------------------------------------------------- /pctiler/pctiler/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/models.py -------------------------------------------------------------------------------- /pctiler/pctiler/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/reader.py -------------------------------------------------------------------------------- /pctiler/pctiler/reader_vector_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pctiler/reader_vector_tile.py -------------------------------------------------------------------------------- /pctiler/pctiler/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /pctiler/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/pyproject.toml -------------------------------------------------------------------------------- /pctiler/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/requirements-dev.txt -------------------------------------------------------------------------------- /pctiler/requirements-server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/requirements-server.txt -------------------------------------------------------------------------------- /pctiler/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pctiler/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/conftest.py -------------------------------------------------------------------------------- /pctiler/tests/data-files/naip/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/data-files/naip/collection.json -------------------------------------------------------------------------------- /pctiler/tests/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pctiler/tests/endpoints/test_colormaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/endpoints/test_colormaps.py -------------------------------------------------------------------------------- /pctiler/tests/endpoints/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/endpoints/test_config.py -------------------------------------------------------------------------------- /pctiler/tests/endpoints/test_legends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/endpoints/test_legends.py -------------------------------------------------------------------------------- /pctiler/tests/endpoints/test_pg_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/endpoints/test_pg_item.py -------------------------------------------------------------------------------- /pctiler/tests/endpoints/test_pg_mosaic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/endpoints/test_pg_mosaic.py -------------------------------------------------------------------------------- /pctiler/tests/test_asset_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/test_asset_read.py -------------------------------------------------------------------------------- /pctiler/tests/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/test_openapi.py -------------------------------------------------------------------------------- /pctiler/tests/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pctiler/tests/test_routes.py -------------------------------------------------------------------------------- /pgstac/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/pgstac/Dockerfile -------------------------------------------------------------------------------- /pgstac/REAMDE.md: -------------------------------------------------------------------------------- 1 | This is purely for local testing 2 | -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | asyncio_mode = auto -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /scripts/bin/format-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/format-common -------------------------------------------------------------------------------- /scripts/bin/format-funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/format-funcs -------------------------------------------------------------------------------- /scripts/bin/format-scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/format-scripts -------------------------------------------------------------------------------- /scripts/bin/format-stac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/format-stac -------------------------------------------------------------------------------- /scripts/bin/format-tiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/format-tiler -------------------------------------------------------------------------------- /scripts/bin/setup_azurite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/setup_azurite.py -------------------------------------------------------------------------------- /scripts/bin/test-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/test-common -------------------------------------------------------------------------------- /scripts/bin/test-funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/test-funcs -------------------------------------------------------------------------------- /scripts/bin/test-stac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/test-stac -------------------------------------------------------------------------------- /scripts/bin/test-tiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/bin/test-tiler -------------------------------------------------------------------------------- /scripts/ciauthenticate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/ciauthenticate -------------------------------------------------------------------------------- /scripts/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/cibuild -------------------------------------------------------------------------------- /scripts/cideploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/cideploy -------------------------------------------------------------------------------- /scripts/cipublish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/cipublish -------------------------------------------------------------------------------- /scripts/cipublish-func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/cipublish-func -------------------------------------------------------------------------------- /scripts/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/console -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/format-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/format-local -------------------------------------------------------------------------------- /scripts/generate-requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/generate-requirements -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/migrate -------------------------------------------------------------------------------- /scripts/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/server -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/setup -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/update -------------------------------------------------------------------------------- /scripts/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/planetary-computer-apis/HEAD/scripts/validate --------------------------------------------------------------------------------