├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── release_template.md └── workflows │ ├── document-deployment.workflow.yml │ └── gitlab-python-worflow.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.MD ├── RELEASE.md ├── doc ├── Makefile ├── ci-deploy.sh ├── clean-docs.sh ├── make.bat ├── release-docs.sh ├── serve-docs.sh ├── source │ ├── _static │ │ ├── img │ │ │ ├── complex-pipeline.png │ │ │ ├── coordinates.png │ │ │ ├── demo-figure.png │ │ │ ├── favicon.png │ │ │ ├── icon.png │ │ │ ├── icon.svg │ │ │ ├── node.png │ │ │ ├── overview.png │ │ │ ├── simple-pipeline.png │ │ │ └── units-data-array.png │ │ └── style.css │ ├── _templates │ │ ├── attribute.rst │ │ ├── base.rst │ │ ├── class.rst │ │ ├── function.rst │ │ ├── method.rst │ │ └── module.rst │ ├── api.rst │ ├── aws-development.md │ ├── aws.md │ ├── cache.md │ ├── conf.py │ ├── contributing.md │ ├── coordinates.md │ ├── datasets.md │ ├── dependencies.md │ ├── deploy-notes.md │ ├── design.rst │ ├── docs.md │ ├── earthdata.md │ ├── examples.rst │ ├── index.rst │ ├── install.md │ ├── interpolation.md │ ├── nodes.md │ ├── overview.md │ ├── references.md │ ├── roadmap.md │ ├── settings.md │ ├── why-podpac.md │ └── wrapping-datasets.md └── test-docs.sh ├── podpac ├── __init__.py ├── alglib │ ├── __init__.py │ └── climatology.py ├── algorithm.py ├── authentication.py ├── caches.py ├── compositor.py ├── conftest.py ├── coordinates.py ├── core │ ├── __init__.py │ ├── algorithm │ │ ├── __init__.py │ │ ├── algorithm.py │ │ ├── coord_select.py │ │ ├── generic.py │ │ ├── reprojection.py │ │ ├── signal.py │ │ ├── stats.py │ │ ├── test │ │ │ ├── test_algorithm.py │ │ │ ├── test_coord_select.py │ │ │ ├── test_generic.py │ │ │ ├── test_reprojection.py │ │ │ ├── test_signal.py │ │ │ ├── test_stats.py │ │ │ └── test_utility.py │ │ └── utility.py │ ├── authentication.py │ ├── cache │ │ ├── __init__.py │ │ ├── cache_ctrl.py │ │ ├── cache_interface.py │ │ ├── cache_store.py │ │ ├── disk_cache_store.py │ │ ├── file_cache_store.py │ │ ├── hash_cache.py │ │ ├── ram_cache_store.py │ │ ├── s3_cache_store.py │ │ ├── test │ │ │ ├── test_cache_ctrl.py │ │ │ ├── test_cache_stores.py │ │ │ ├── test_node_caches.py │ │ │ └── tmp_cache │ │ │ │ ├── podpac │ │ │ │ └── core │ │ │ │ │ └── node │ │ │ │ │ └── Test │ │ │ │ │ └── Test--podpac-cached-property-blue_242a08f6c2e12f7113898cea3ab5003f_64b03983688fcfb5e0e653280ea0b679_None.json │ │ │ │ └── wcs_temp.tiff │ │ ├── utils.py │ │ └── zarr_cache.py │ ├── common_test_utils.py │ ├── compositor │ │ ├── __init__.py │ │ ├── compositor.py │ │ ├── ordered_compositor.py │ │ ├── test │ │ │ ├── test_base_compositor.py │ │ │ ├── test_ordered_compositor.py │ │ │ └── test_tiled_compositor.py │ │ └── tile_compositor.py │ ├── coordinates │ │ ├── __init__.py │ │ ├── affine_coordinates.py │ │ ├── array_coordinates1d.py │ │ ├── base_coordinates.py │ │ ├── cfunctions.py │ │ ├── coordinates.py │ │ ├── coordinates1d.py │ │ ├── group_coordinates.py │ │ ├── polar_coordinates.py │ │ ├── stacked_coordinates.py │ │ ├── test │ │ │ ├── test_affine_coordinates.py │ │ │ ├── test_array_coordinates1d.py │ │ │ ├── test_base_coordinates.py │ │ │ ├── test_cfunctions.py │ │ │ ├── test_coordinates.py │ │ │ ├── test_coordinates1d.py │ │ │ ├── test_coordinates_utils.py │ │ │ ├── test_group_coordinates.py │ │ │ ├── test_polar_coordinates.py │ │ │ ├── test_stacked_coordinates.py │ │ │ └── test_uniform_coordinates1d.py │ │ ├── uniform_coordinates1d.py │ │ └── utils.py │ ├── data │ │ ├── __init__.py │ │ ├── array_source.py │ │ ├── csv_source.py │ │ ├── dataset_source.py │ │ ├── datasource.py │ │ ├── file_source.py │ │ ├── h5py_source.py │ │ ├── ogc.py │ │ ├── ogr.py │ │ ├── pydap_source.py │ │ ├── rasterio_source.py │ │ ├── reprojection.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── assets │ │ │ │ ├── RGB.byte.tif │ │ │ │ ├── capabilites.xml │ │ │ │ ├── dataset.nc │ │ │ │ ├── h5raster.hdf5 │ │ │ │ ├── points-multiple.csv │ │ │ │ ├── points-no-data.csv │ │ │ │ ├── points-no-header.csv │ │ │ │ ├── points-one-dim.csv │ │ │ │ ├── points-single.csv │ │ │ │ └── zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── a │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0 │ │ │ │ │ ├── b │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0 │ │ │ │ │ ├── lat │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ └── lon │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── cache │ │ │ │ └── wcs_temp.tiff │ │ │ ├── test_array.py │ │ │ ├── test_csv.py │ │ │ ├── test_dataset.py │ │ │ ├── test_datasource.py │ │ │ ├── test_file_source.py │ │ │ ├── test_h5py.py │ │ │ ├── test_ogr.py │ │ │ ├── test_pydap.py │ │ │ ├── test_rasterio.py │ │ │ ├── test_reprojected_source.py │ │ │ ├── test_wcs.py │ │ │ └── test_zarr.py │ │ ├── zarr_memory_source.py │ │ └── zarr_source.py │ ├── interpolation │ │ ├── __init__.py │ │ ├── interpolation.py │ │ ├── interpolation_manager.py │ │ ├── interpolator.py │ │ ├── nearest_neighbor_interpolator.py │ │ ├── none_interpolator.py │ │ ├── rasterio_interpolator.py │ │ ├── scipy_interpolator.py │ │ ├── selector.py │ │ ├── test │ │ │ ├── test_interpolation.py │ │ │ ├── test_interpolation_manager.py │ │ │ ├── test_interpolator.py │ │ │ ├── test_interpolators.py │ │ │ └── test_selector.py │ │ └── xarray_interpolator.py │ ├── managers │ │ ├── __init__.py │ │ ├── aws.py │ │ ├── multi_process.py │ │ ├── multi_threading.py │ │ ├── parallel.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_aws.py │ │ │ ├── test_multiprocess.py │ │ │ ├── test_multithreading.py │ │ │ └── test_parallel.py │ ├── node.py │ ├── settings.py │ ├── style.py │ ├── test │ │ ├── test_authentication.py │ │ ├── test_common_test_utils.py │ │ ├── test_node.py │ │ ├── test_settings.py │ │ ├── test_style.py │ │ ├── test_units.py │ │ └── test_utils.py │ ├── units.py │ └── utils.py ├── data.py ├── datalib │ └── __init__.py ├── interpolators.py ├── managers.py ├── style.py ├── utils.py └── version.py ├── pyproject.toml ├── setup.cfg ├── setup.py └── sonar-project.properties /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/release_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.github/PULL_REQUEST_TEMPLATE/release_template.md -------------------------------------------------------------------------------- /.github/workflows/document-deployment.workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.github/workflows/document-deployment.workflow.yml -------------------------------------------------------------------------------- /.github/workflows/gitlab-python-worflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.github/workflows/gitlab-python-worflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/README.MD -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/RELEASE.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/ci-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/ci-deploy.sh -------------------------------------------------------------------------------- /doc/clean-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/clean-docs.sh -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/release-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/release-docs.sh -------------------------------------------------------------------------------- /doc/serve-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/serve-docs.sh -------------------------------------------------------------------------------- /doc/source/_static/img/complex-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/complex-pipeline.png -------------------------------------------------------------------------------- /doc/source/_static/img/coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/coordinates.png -------------------------------------------------------------------------------- /doc/source/_static/img/demo-figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/demo-figure.png -------------------------------------------------------------------------------- /doc/source/_static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/favicon.png -------------------------------------------------------------------------------- /doc/source/_static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/icon.png -------------------------------------------------------------------------------- /doc/source/_static/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/icon.svg -------------------------------------------------------------------------------- /doc/source/_static/img/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/node.png -------------------------------------------------------------------------------- /doc/source/_static/img/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/overview.png -------------------------------------------------------------------------------- /doc/source/_static/img/simple-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/simple-pipeline.png -------------------------------------------------------------------------------- /doc/source/_static/img/units-data-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/img/units-data-array.png -------------------------------------------------------------------------------- /doc/source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_static/style.css -------------------------------------------------------------------------------- /doc/source/_templates/attribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_templates/attribute.rst -------------------------------------------------------------------------------- /doc/source/_templates/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_templates/base.rst -------------------------------------------------------------------------------- /doc/source/_templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_templates/class.rst -------------------------------------------------------------------------------- /doc/source/_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_templates/function.rst -------------------------------------------------------------------------------- /doc/source/_templates/method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_templates/method.rst -------------------------------------------------------------------------------- /doc/source/_templates/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/_templates/module.rst -------------------------------------------------------------------------------- /doc/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/api.rst -------------------------------------------------------------------------------- /doc/source/aws-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/aws-development.md -------------------------------------------------------------------------------- /doc/source/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/aws.md -------------------------------------------------------------------------------- /doc/source/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/cache.md -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/contributing.md -------------------------------------------------------------------------------- /doc/source/coordinates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/coordinates.md -------------------------------------------------------------------------------- /doc/source/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/datasets.md -------------------------------------------------------------------------------- /doc/source/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/dependencies.md -------------------------------------------------------------------------------- /doc/source/deploy-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/deploy-notes.md -------------------------------------------------------------------------------- /doc/source/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/design.rst -------------------------------------------------------------------------------- /doc/source/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/docs.md -------------------------------------------------------------------------------- /doc/source/earthdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/earthdata.md -------------------------------------------------------------------------------- /doc/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/examples.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/install.md -------------------------------------------------------------------------------- /doc/source/interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/interpolation.md -------------------------------------------------------------------------------- /doc/source/nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/nodes.md -------------------------------------------------------------------------------- /doc/source/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/overview.md -------------------------------------------------------------------------------- /doc/source/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/references.md -------------------------------------------------------------------------------- /doc/source/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/roadmap.md -------------------------------------------------------------------------------- /doc/source/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/settings.md -------------------------------------------------------------------------------- /doc/source/why-podpac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/why-podpac.md -------------------------------------------------------------------------------- /doc/source/wrapping-datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/source/wrapping-datasets.md -------------------------------------------------------------------------------- /doc/test-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/doc/test-docs.sh -------------------------------------------------------------------------------- /podpac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/__init__.py -------------------------------------------------------------------------------- /podpac/alglib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/alglib/__init__.py -------------------------------------------------------------------------------- /podpac/alglib/climatology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/alglib/climatology.py -------------------------------------------------------------------------------- /podpac/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/algorithm.py -------------------------------------------------------------------------------- /podpac/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/authentication.py -------------------------------------------------------------------------------- /podpac/caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/caches.py -------------------------------------------------------------------------------- /podpac/compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/compositor.py -------------------------------------------------------------------------------- /podpac/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/conftest.py -------------------------------------------------------------------------------- /podpac/coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/coordinates.py -------------------------------------------------------------------------------- /podpac/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/__init__.py -------------------------------------------------------------------------------- /podpac/core/algorithm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /podpac/core/algorithm/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/algorithm.py -------------------------------------------------------------------------------- /podpac/core/algorithm/coord_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/coord_select.py -------------------------------------------------------------------------------- /podpac/core/algorithm/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/generic.py -------------------------------------------------------------------------------- /podpac/core/algorithm/reprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/reprojection.py -------------------------------------------------------------------------------- /podpac/core/algorithm/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/signal.py -------------------------------------------------------------------------------- /podpac/core/algorithm/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/stats.py -------------------------------------------------------------------------------- /podpac/core/algorithm/test/test_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/test/test_algorithm.py -------------------------------------------------------------------------------- /podpac/core/algorithm/test/test_coord_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/test/test_coord_select.py -------------------------------------------------------------------------------- /podpac/core/algorithm/test/test_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/test/test_generic.py -------------------------------------------------------------------------------- /podpac/core/algorithm/test/test_reprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/test/test_reprojection.py -------------------------------------------------------------------------------- /podpac/core/algorithm/test/test_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/test/test_signal.py -------------------------------------------------------------------------------- /podpac/core/algorithm/test/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/test/test_stats.py -------------------------------------------------------------------------------- /podpac/core/algorithm/test/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/test/test_utility.py -------------------------------------------------------------------------------- /podpac/core/algorithm/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/algorithm/utility.py -------------------------------------------------------------------------------- /podpac/core/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/authentication.py -------------------------------------------------------------------------------- /podpac/core/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/__init__.py -------------------------------------------------------------------------------- /podpac/core/cache/cache_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/cache_ctrl.py -------------------------------------------------------------------------------- /podpac/core/cache/cache_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/cache_interface.py -------------------------------------------------------------------------------- /podpac/core/cache/cache_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/cache_store.py -------------------------------------------------------------------------------- /podpac/core/cache/disk_cache_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/disk_cache_store.py -------------------------------------------------------------------------------- /podpac/core/cache/file_cache_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/file_cache_store.py -------------------------------------------------------------------------------- /podpac/core/cache/hash_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/hash_cache.py -------------------------------------------------------------------------------- /podpac/core/cache/ram_cache_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/ram_cache_store.py -------------------------------------------------------------------------------- /podpac/core/cache/s3_cache_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/s3_cache_store.py -------------------------------------------------------------------------------- /podpac/core/cache/test/test_cache_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/test/test_cache_ctrl.py -------------------------------------------------------------------------------- /podpac/core/cache/test/test_cache_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/test/test_cache_stores.py -------------------------------------------------------------------------------- /podpac/core/cache/test/test_node_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/test/test_node_caches.py -------------------------------------------------------------------------------- /podpac/core/cache/test/tmp_cache/podpac/core/node/Test/Test--podpac-cached-property-blue_242a08f6c2e12f7113898cea3ab5003f_64b03983688fcfb5e0e653280ea0b679_None.json: -------------------------------------------------------------------------------- 1 | "blue" -------------------------------------------------------------------------------- /podpac/core/cache/test/tmp_cache/wcs_temp.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/test/tmp_cache/wcs_temp.tiff -------------------------------------------------------------------------------- /podpac/core/cache/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/utils.py -------------------------------------------------------------------------------- /podpac/core/cache/zarr_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/cache/zarr_cache.py -------------------------------------------------------------------------------- /podpac/core/common_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/common_test_utils.py -------------------------------------------------------------------------------- /podpac/core/compositor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/compositor/__init__.py -------------------------------------------------------------------------------- /podpac/core/compositor/compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/compositor/compositor.py -------------------------------------------------------------------------------- /podpac/core/compositor/ordered_compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/compositor/ordered_compositor.py -------------------------------------------------------------------------------- /podpac/core/compositor/test/test_base_compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/compositor/test/test_base_compositor.py -------------------------------------------------------------------------------- /podpac/core/compositor/test/test_ordered_compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/compositor/test/test_ordered_compositor.py -------------------------------------------------------------------------------- /podpac/core/compositor/test/test_tiled_compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/compositor/test/test_tiled_compositor.py -------------------------------------------------------------------------------- /podpac/core/compositor/tile_compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/compositor/tile_compositor.py -------------------------------------------------------------------------------- /podpac/core/coordinates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/__init__.py -------------------------------------------------------------------------------- /podpac/core/coordinates/affine_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/affine_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/array_coordinates1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/array_coordinates1d.py -------------------------------------------------------------------------------- /podpac/core/coordinates/base_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/base_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/cfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/cfunctions.py -------------------------------------------------------------------------------- /podpac/core/coordinates/coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/coordinates1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/coordinates1d.py -------------------------------------------------------------------------------- /podpac/core/coordinates/group_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/group_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/polar_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/polar_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/stacked_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/stacked_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_affine_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_affine_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_array_coordinates1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_array_coordinates1d.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_base_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_base_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_cfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_cfunctions.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_coordinates1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_coordinates1d.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_coordinates_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_coordinates_utils.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_group_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_group_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_polar_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_polar_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_stacked_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_stacked_coordinates.py -------------------------------------------------------------------------------- /podpac/core/coordinates/test/test_uniform_coordinates1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/test/test_uniform_coordinates1d.py -------------------------------------------------------------------------------- /podpac/core/coordinates/uniform_coordinates1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/uniform_coordinates1d.py -------------------------------------------------------------------------------- /podpac/core/coordinates/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/coordinates/utils.py -------------------------------------------------------------------------------- /podpac/core/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /podpac/core/data/array_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/array_source.py -------------------------------------------------------------------------------- /podpac/core/data/csv_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/csv_source.py -------------------------------------------------------------------------------- /podpac/core/data/dataset_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/dataset_source.py -------------------------------------------------------------------------------- /podpac/core/data/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/datasource.py -------------------------------------------------------------------------------- /podpac/core/data/file_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/file_source.py -------------------------------------------------------------------------------- /podpac/core/data/h5py_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/h5py_source.py -------------------------------------------------------------------------------- /podpac/core/data/ogc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/ogc.py -------------------------------------------------------------------------------- /podpac/core/data/ogr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/ogr.py -------------------------------------------------------------------------------- /podpac/core/data/pydap_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/pydap_source.py -------------------------------------------------------------------------------- /podpac/core/data/rasterio_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/rasterio_source.py -------------------------------------------------------------------------------- /podpac/core/data/reprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/reprojection.py -------------------------------------------------------------------------------- /podpac/core/data/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /podpac/core/data/test/assets/RGB.byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/RGB.byte.tif -------------------------------------------------------------------------------- /podpac/core/data/test/assets/capabilites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/capabilites.xml -------------------------------------------------------------------------------- /podpac/core/data/test/assets/dataset.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/dataset.nc -------------------------------------------------------------------------------- /podpac/core/data/test/assets/h5raster.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/h5raster.hdf5 -------------------------------------------------------------------------------- /podpac/core/data/test/assets/points-multiple.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/points-multiple.csv -------------------------------------------------------------------------------- /podpac/core/data/test/assets/points-no-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/points-no-data.csv -------------------------------------------------------------------------------- /podpac/core/data/test/assets/points-no-header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/points-no-header.csv -------------------------------------------------------------------------------- /podpac/core/data/test/assets/points-one-dim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/points-one-dim.csv -------------------------------------------------------------------------------- /podpac/core/data/test/assets/points-single.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/points-single.csv -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/a/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/a/.zarray -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/a/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/a/.zattrs -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/a/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/a/0.0 -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/b/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/b/.zarray -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/b/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/b/.zattrs -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/b/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/b/0.0 -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/lat/.zarray -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/lat/.zattrs -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/lat/0 -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/lon/.zarray -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/lon/.zattrs -------------------------------------------------------------------------------- /podpac/core/data/test/assets/zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/assets/zarr/lon/0 -------------------------------------------------------------------------------- /podpac/core/data/test/cache/wcs_temp.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/cache/wcs_temp.tiff -------------------------------------------------------------------------------- /podpac/core/data/test/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_array.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_csv.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_dataset.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_datasource.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_file_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_file_source.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_h5py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_h5py.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_ogr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_ogr.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_pydap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_pydap.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_rasterio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_rasterio.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_reprojected_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_reprojected_source.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_wcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_wcs.py -------------------------------------------------------------------------------- /podpac/core/data/test/test_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/test/test_zarr.py -------------------------------------------------------------------------------- /podpac/core/data/zarr_memory_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/zarr_memory_source.py -------------------------------------------------------------------------------- /podpac/core/data/zarr_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/data/zarr_source.py -------------------------------------------------------------------------------- /podpac/core/interpolation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/__init__.py -------------------------------------------------------------------------------- /podpac/core/interpolation/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/interpolation.py -------------------------------------------------------------------------------- /podpac/core/interpolation/interpolation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/interpolation_manager.py -------------------------------------------------------------------------------- /podpac/core/interpolation/interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/interpolator.py -------------------------------------------------------------------------------- /podpac/core/interpolation/nearest_neighbor_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/nearest_neighbor_interpolator.py -------------------------------------------------------------------------------- /podpac/core/interpolation/none_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/none_interpolator.py -------------------------------------------------------------------------------- /podpac/core/interpolation/rasterio_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/rasterio_interpolator.py -------------------------------------------------------------------------------- /podpac/core/interpolation/scipy_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/scipy_interpolator.py -------------------------------------------------------------------------------- /podpac/core/interpolation/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/selector.py -------------------------------------------------------------------------------- /podpac/core/interpolation/test/test_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/test/test_interpolation.py -------------------------------------------------------------------------------- /podpac/core/interpolation/test/test_interpolation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/test/test_interpolation_manager.py -------------------------------------------------------------------------------- /podpac/core/interpolation/test/test_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/test/test_interpolator.py -------------------------------------------------------------------------------- /podpac/core/interpolation/test/test_interpolators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/test/test_interpolators.py -------------------------------------------------------------------------------- /podpac/core/interpolation/test/test_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/test/test_selector.py -------------------------------------------------------------------------------- /podpac/core/interpolation/xarray_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/interpolation/xarray_interpolator.py -------------------------------------------------------------------------------- /podpac/core/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /podpac/core/managers/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/aws.py -------------------------------------------------------------------------------- /podpac/core/managers/multi_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/multi_process.py -------------------------------------------------------------------------------- /podpac/core/managers/multi_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/multi_threading.py -------------------------------------------------------------------------------- /podpac/core/managers/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/parallel.py -------------------------------------------------------------------------------- /podpac/core/managers/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /podpac/core/managers/test/test_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/test/test_aws.py -------------------------------------------------------------------------------- /podpac/core/managers/test/test_multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/test/test_multiprocess.py -------------------------------------------------------------------------------- /podpac/core/managers/test/test_multithreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/test/test_multithreading.py -------------------------------------------------------------------------------- /podpac/core/managers/test/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/managers/test/test_parallel.py -------------------------------------------------------------------------------- /podpac/core/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/node.py -------------------------------------------------------------------------------- /podpac/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/settings.py -------------------------------------------------------------------------------- /podpac/core/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/style.py -------------------------------------------------------------------------------- /podpac/core/test/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/test/test_authentication.py -------------------------------------------------------------------------------- /podpac/core/test/test_common_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/test/test_common_test_utils.py -------------------------------------------------------------------------------- /podpac/core/test/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/test/test_node.py -------------------------------------------------------------------------------- /podpac/core/test/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/test/test_settings.py -------------------------------------------------------------------------------- /podpac/core/test/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/test/test_style.py -------------------------------------------------------------------------------- /podpac/core/test/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/test/test_units.py -------------------------------------------------------------------------------- /podpac/core/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/test/test_utils.py -------------------------------------------------------------------------------- /podpac/core/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/units.py -------------------------------------------------------------------------------- /podpac/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/core/utils.py -------------------------------------------------------------------------------- /podpac/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/data.py -------------------------------------------------------------------------------- /podpac/datalib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/datalib/__init__.py -------------------------------------------------------------------------------- /podpac/interpolators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/interpolators.py -------------------------------------------------------------------------------- /podpac/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/managers.py -------------------------------------------------------------------------------- /podpac/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/style.py -------------------------------------------------------------------------------- /podpac/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/utils.py -------------------------------------------------------------------------------- /podpac/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/podpac/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creare-com/podpac/HEAD/sonar-project.properties --------------------------------------------------------------------------------