├── .all-contributorsrc ├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ ├── binder-badge.yml │ ├── get_pypi_stats.yml │ ├── integration_test.yml │ ├── linter_actions.yml │ ├── publish_to_pypi.yml │ ├── traffic_action.yml │ ├── typecheck.yml │ ├── uml_action.yml │ └── unit_test.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── ATTRIBUTION.rst ├── CITATION.cff ├── CITATION.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── code_of_conduct.md ├── doc ├── Makefile ├── make.bat ├── source │ ├── _static │ │ ├── icepyx_favicon.png │ │ ├── icepyx_logo.png │ │ ├── icepyx_v2_oval.png │ │ ├── icepyx_v2_oval_orig_nobackgr.png │ │ ├── icepyx_v2_oval_small.png │ │ ├── icepyx_v2_oval_tiny-uml.png │ │ ├── icepyx_v2_oval_tiny-uml_nobackgr.png │ │ └── style.css │ ├── community │ │ ├── contact.rst │ │ └── resources.rst │ ├── conf.py │ ├── contributing │ │ ├── attribution_link.rst │ │ ├── code_of_conduct_link.rst │ │ ├── contribution_guidelines.rst │ │ ├── contributors_link.rst │ │ ├── development_plan.rst │ │ ├── how_to_contribute.rst │ │ ├── icepyx_internals.rst │ │ ├── quest-available-datasets.rst │ │ └── release_guide.rst │ ├── example_notebooks │ │ ├── IS2_DEM_comparison_WIP.ipynb │ │ ├── IS2_cloud_data_access.ipynb │ │ ├── IS2_data_access.ipynb │ │ ├── IS2_data_access2-subsetting.ipynb │ │ ├── IS2_data_read-in.ipynb │ │ ├── IS2_data_variables.ipynb │ │ ├── IS2_data_visualization.ipynb │ │ ├── QUEST_argo_data_access.ipynb │ │ └── supporting_files │ │ │ ├── data-access_PineIsland │ │ │ ├── CITATIONS.txt │ │ │ ├── README.txt │ │ │ ├── glims_polygons.dbf │ │ │ ├── glims_polygons.kml │ │ │ ├── glims_polygons.prj │ │ │ ├── glims_polygons.shp │ │ │ └── glims_polygons.shx │ │ │ └── simple_test_poly.gpkg │ ├── getting_started │ │ ├── citation_link.rst │ │ ├── install.rst │ │ └── origin_purpose.rst │ ├── index.rst │ ├── tracking │ │ ├── citations.rst │ │ ├── downloads.rst │ │ ├── icepyx_pubs.bib │ │ ├── paper.md │ │ ├── pypistats │ │ │ ├── downloads.svg │ │ │ ├── downloads_data.csv │ │ │ ├── get_pypi_stats.py │ │ │ └── sys_downloads_data.csv │ │ └── traffic │ │ │ ├── clones.csv │ │ │ ├── plots.svg │ │ │ ├── traffic_data_mgmt.py │ │ │ └── views.csv │ └── user_guide │ │ ├── changelog │ │ ├── index.rst │ │ ├── template.rst │ │ ├── v0.1-alpha.rst │ │ ├── v0.2-alpha.rst │ │ ├── v0.3.1.rst │ │ ├── v0.3.2.rst │ │ ├── v0.3.3.rst │ │ ├── v0.3.4.rst │ │ ├── v0.4.0.rst │ │ ├── v0.4.1.rst │ │ ├── v0.5.0.rst │ │ ├── v0.6.0.rst │ │ ├── v0.6.2.rst │ │ ├── v0.6.3.rst │ │ ├── v0.6.4.rst │ │ ├── v0.7.0.rst │ │ ├── v0.8.0.rst │ │ ├── v0.8.1.rst │ │ ├── v1.0.0.rst │ │ ├── v1.1.0.rst │ │ ├── v1.2.0.rst │ │ ├── v1.3.0.rst │ │ ├── v2.0.0.rst │ │ └── v2.0.1.rst │ │ └── documentation │ │ ├── classes_dev_uml.svg │ │ ├── classes_quest_user_uml.svg │ │ ├── classes_user_uml.svg │ │ ├── components.rst │ │ ├── icepyx-quest.rst │ │ ├── icepyx.rst │ │ ├── packages_quest_user_uml.svg │ │ ├── packages_user_uml.svg │ │ ├── query.rst │ │ ├── quest.rst │ │ ├── read.rst │ │ ├── types.rst │ │ └── variables.rst └── sphinxext │ ├── announce.py │ └── contributors.py ├── examples └── README.md ├── icepyx ├── __init__.py ├── conftest.py ├── core │ ├── APIformatting.py │ ├── __init__.py │ ├── auth.py │ ├── exceptions.py │ ├── granules.py │ ├── harmony.py │ ├── is2ref.py │ ├── orders.py │ ├── query.py │ ├── read.py │ ├── spatial.py │ ├── temporal.py │ ├── types.py │ ├── urls.py │ ├── validate_inputs.py │ ├── variables.py │ └── visualization.py ├── quest │ ├── __init__.py │ ├── dataset_scripts │ │ ├── __init__.py │ │ ├── argo.py │ │ └── dataset.py │ └── quest.py └── tests │ ├── integration │ ├── ATL06v06_options.json │ ├── conftest.py │ ├── test_auth.py │ ├── test_query.py │ ├── test_query_spatial.py │ └── test_quest.py │ └── unit │ ├── conftest.py │ ├── test_APIformatting.py │ ├── test_Earthdata.py │ ├── test_granules.py │ ├── test_is2class_query.py │ ├── test_is2ref.py │ ├── test_orders.py │ ├── test_query.py │ ├── test_quest_argo.py │ ├── test_read.py │ ├── test_spatial.py │ ├── test_temporal.py │ ├── test_validate_inputs.py │ ├── test_variables.py │ └── test_visualization.py ├── pyproject.toml ├── pytest.ini ├── readthedocs.yml ├── requirements-dev.txt ├── requirements-docs.txt └── requirements.txt /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/binder-badge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/binder-badge.yml -------------------------------------------------------------------------------- /.github/workflows/get_pypi_stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/get_pypi_stats.yml -------------------------------------------------------------------------------- /.github/workflows/integration_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/integration_test.yml -------------------------------------------------------------------------------- /.github/workflows/linter_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/linter_actions.yml -------------------------------------------------------------------------------- /.github/workflows/publish_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/publish_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/traffic_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/traffic_action.yml -------------------------------------------------------------------------------- /.github/workflows/typecheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/typecheck.yml -------------------------------------------------------------------------------- /.github/workflows/uml_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/uml_action.yml -------------------------------------------------------------------------------- /.github/workflows/unit_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.github/workflows/unit_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /ATTRIBUTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/ATTRIBUTION.rst -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CITATION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/CITATION.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/README.rst -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_static/icepyx_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/icepyx_favicon.png -------------------------------------------------------------------------------- /doc/source/_static/icepyx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/icepyx_logo.png -------------------------------------------------------------------------------- /doc/source/_static/icepyx_v2_oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/icepyx_v2_oval.png -------------------------------------------------------------------------------- /doc/source/_static/icepyx_v2_oval_orig_nobackgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/icepyx_v2_oval_orig_nobackgr.png -------------------------------------------------------------------------------- /doc/source/_static/icepyx_v2_oval_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/icepyx_v2_oval_small.png -------------------------------------------------------------------------------- /doc/source/_static/icepyx_v2_oval_tiny-uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/icepyx_v2_oval_tiny-uml.png -------------------------------------------------------------------------------- /doc/source/_static/icepyx_v2_oval_tiny-uml_nobackgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/icepyx_v2_oval_tiny-uml_nobackgr.png -------------------------------------------------------------------------------- /doc/source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/_static/style.css -------------------------------------------------------------------------------- /doc/source/community/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/community/contact.rst -------------------------------------------------------------------------------- /doc/source/community/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/community/resources.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contributing/attribution_link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/attribution_link.rst -------------------------------------------------------------------------------- /doc/source/contributing/code_of_conduct_link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/code_of_conduct_link.rst -------------------------------------------------------------------------------- /doc/source/contributing/contribution_guidelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/contribution_guidelines.rst -------------------------------------------------------------------------------- /doc/source/contributing/contributors_link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/contributors_link.rst -------------------------------------------------------------------------------- /doc/source/contributing/development_plan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/development_plan.rst -------------------------------------------------------------------------------- /doc/source/contributing/how_to_contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/how_to_contribute.rst -------------------------------------------------------------------------------- /doc/source/contributing/icepyx_internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/icepyx_internals.rst -------------------------------------------------------------------------------- /doc/source/contributing/quest-available-datasets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/quest-available-datasets.rst -------------------------------------------------------------------------------- /doc/source/contributing/release_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/contributing/release_guide.rst -------------------------------------------------------------------------------- /doc/source/example_notebooks/IS2_DEM_comparison_WIP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/IS2_DEM_comparison_WIP.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/IS2_cloud_data_access.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/IS2_cloud_data_access.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/IS2_data_access.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/IS2_data_access.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/IS2_data_access2-subsetting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/IS2_data_access2-subsetting.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/IS2_data_read-in.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/IS2_data_read-in.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/IS2_data_variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/IS2_data_variables.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/IS2_data_visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/IS2_data_visualization.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/QUEST_argo_data_access.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/QUEST_argo_data_access.ipynb -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/data-access_PineIsland/CITATIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/data-access_PineIsland/CITATIONS.txt -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/data-access_PineIsland/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/data-access_PineIsland/README.txt -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.dbf -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.kml -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.prj -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.shp -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/data-access_PineIsland/glims_polygons.shx -------------------------------------------------------------------------------- /doc/source/example_notebooks/supporting_files/simple_test_poly.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/example_notebooks/supporting_files/simple_test_poly.gpkg -------------------------------------------------------------------------------- /doc/source/getting_started/citation_link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/getting_started/citation_link.rst -------------------------------------------------------------------------------- /doc/source/getting_started/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/getting_started/install.rst -------------------------------------------------------------------------------- /doc/source/getting_started/origin_purpose.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/getting_started/origin_purpose.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/tracking/citations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/citations.rst -------------------------------------------------------------------------------- /doc/source/tracking/downloads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/downloads.rst -------------------------------------------------------------------------------- /doc/source/tracking/icepyx_pubs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/icepyx_pubs.bib -------------------------------------------------------------------------------- /doc/source/tracking/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/paper.md -------------------------------------------------------------------------------- /doc/source/tracking/pypistats/downloads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/pypistats/downloads.svg -------------------------------------------------------------------------------- /doc/source/tracking/pypistats/downloads_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/pypistats/downloads_data.csv -------------------------------------------------------------------------------- /doc/source/tracking/pypistats/get_pypi_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/pypistats/get_pypi_stats.py -------------------------------------------------------------------------------- /doc/source/tracking/pypistats/sys_downloads_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/pypistats/sys_downloads_data.csv -------------------------------------------------------------------------------- /doc/source/tracking/traffic/clones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/traffic/clones.csv -------------------------------------------------------------------------------- /doc/source/tracking/traffic/plots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/traffic/plots.svg -------------------------------------------------------------------------------- /doc/source/tracking/traffic/traffic_data_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/traffic/traffic_data_mgmt.py -------------------------------------------------------------------------------- /doc/source/tracking/traffic/views.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/tracking/traffic/views.csv -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/index.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/template.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.1-alpha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.1-alpha.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.2-alpha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.2-alpha.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.3.1.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.3.2.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.3.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.3.3.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.3.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.3.4.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.4.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.4.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.4.1.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.5.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.6.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.6.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.6.2.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.6.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.6.3.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.6.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.6.4.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.7.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.8.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.8.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v0.8.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v0.8.1.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v1.0.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v1.0.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v1.1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v1.1.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v1.2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v1.2.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v1.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v1.3.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v2.0.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v2.0.0.rst -------------------------------------------------------------------------------- /doc/source/user_guide/changelog/v2.0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/changelog/v2.0.1.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/classes_dev_uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/classes_dev_uml.svg -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/classes_quest_user_uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/classes_quest_user_uml.svg -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/classes_user_uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/classes_user_uml.svg -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/components.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/icepyx-quest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/icepyx-quest.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/icepyx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/icepyx.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/packages_quest_user_uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/packages_quest_user_uml.svg -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/packages_user_uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/packages_user_uml.svg -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/query.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/quest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/quest.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/read.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/read.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/types.rst -------------------------------------------------------------------------------- /doc/source/user_guide/documentation/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/source/user_guide/documentation/variables.rst -------------------------------------------------------------------------------- /doc/sphinxext/announce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/sphinxext/announce.py -------------------------------------------------------------------------------- /doc/sphinxext/contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/doc/sphinxext/contributors.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/examples/README.md -------------------------------------------------------------------------------- /icepyx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/__init__.py -------------------------------------------------------------------------------- /icepyx/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/conftest.py -------------------------------------------------------------------------------- /icepyx/core/APIformatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/APIformatting.py -------------------------------------------------------------------------------- /icepyx/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icepyx/core/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/auth.py -------------------------------------------------------------------------------- /icepyx/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/exceptions.py -------------------------------------------------------------------------------- /icepyx/core/granules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/granules.py -------------------------------------------------------------------------------- /icepyx/core/harmony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/harmony.py -------------------------------------------------------------------------------- /icepyx/core/is2ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/is2ref.py -------------------------------------------------------------------------------- /icepyx/core/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/orders.py -------------------------------------------------------------------------------- /icepyx/core/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/query.py -------------------------------------------------------------------------------- /icepyx/core/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/read.py -------------------------------------------------------------------------------- /icepyx/core/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/spatial.py -------------------------------------------------------------------------------- /icepyx/core/temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/temporal.py -------------------------------------------------------------------------------- /icepyx/core/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/types.py -------------------------------------------------------------------------------- /icepyx/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/urls.py -------------------------------------------------------------------------------- /icepyx/core/validate_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/validate_inputs.py -------------------------------------------------------------------------------- /icepyx/core/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/variables.py -------------------------------------------------------------------------------- /icepyx/core/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/core/visualization.py -------------------------------------------------------------------------------- /icepyx/quest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icepyx/quest/dataset_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | from .dataset import * # noqa: F403 2 | -------------------------------------------------------------------------------- /icepyx/quest/dataset_scripts/argo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/quest/dataset_scripts/argo.py -------------------------------------------------------------------------------- /icepyx/quest/dataset_scripts/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/quest/dataset_scripts/dataset.py -------------------------------------------------------------------------------- /icepyx/quest/quest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/quest/quest.py -------------------------------------------------------------------------------- /icepyx/tests/integration/ATL06v06_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/integration/ATL06v06_options.json -------------------------------------------------------------------------------- /icepyx/tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/integration/conftest.py -------------------------------------------------------------------------------- /icepyx/tests/integration/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/integration/test_auth.py -------------------------------------------------------------------------------- /icepyx/tests/integration/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/integration/test_query.py -------------------------------------------------------------------------------- /icepyx/tests/integration/test_query_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/integration/test_query_spatial.py -------------------------------------------------------------------------------- /icepyx/tests/integration/test_quest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/integration/test_quest.py -------------------------------------------------------------------------------- /icepyx/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/conftest.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_APIformatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_APIformatting.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_Earthdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_Earthdata.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_granules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_granules.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_is2class_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_is2class_query.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_is2ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_is2ref.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_orders.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_query.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_quest_argo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_quest_argo.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_read.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_spatial.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_temporal.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_validate_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_validate_inputs.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_variables.py -------------------------------------------------------------------------------- /icepyx/tests/unit/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/icepyx/tests/unit/test_visualization.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/pytest.ini -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat2py/icepyx/HEAD/requirements.txt --------------------------------------------------------------------------------