├── .dvc ├── .gitignore └── config ├── .dvcignore ├── .github ├── release-drafter.yml └── workflows │ ├── docker-build.yml │ └── python-app.yml ├── .gitignore ├── .stickler.yml ├── ATL06_to_ATL11_Antarctica.sh ├── ATL11_to_download.txt ├── ATLXI ├── df_dhdt_amundsen_sea_embayment.parquet.dvc ├── df_dhdt_slessor_downstream.parquet.dvc ├── df_dhdt_whillans_downstream.parquet.dvc └── df_dhdt_whillans_upstream.parquet.dvc ├── Dockerfile ├── LICENSE.md ├── README.md ├── X2SYS └── ICESAT2 │ ├── ICESAT2.tag │ ├── ICESAT2_index.b │ ├── ICESAT2_paths.txt │ ├── ICESAT2_tracks.d │ └── xyht.fmt ├── antarctic_subglacial_lakes_3031.geojson ├── antarctic_subglacial_lakes_4326.geojson ├── atl06_play.ipynb ├── atl06_play.py ├── atl06_to_atl11.ipynb ├── atl06_to_atl11.py ├── atl11_play.ipynb ├── atl11_play.py ├── atlxi_dhdt.ipynb ├── atlxi_dhdt.py ├── atlxi_lake.ipynb ├── atlxi_lake.py ├── atlxi_xover.ipynb ├── atlxi_xover.py ├── deepicedrain ├── README.md ├── __init__.py ├── atlas_catalog.yaml ├── deepicedrain_regions.geojson ├── deltamath.py ├── extraload.py ├── features │ └── subglacial_lakes.feature ├── lake_algorithms.py ├── spatiotemporal.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_calculate_delta.py │ ├── test_catalog.yaml │ ├── test_deepicedrain.py │ ├── test_nanlinregress.py │ ├── test_nanptp.py │ ├── test_ndarray_to_dataframe.py │ ├── test_region.py │ ├── test_spatiotemporal_conversions.py │ ├── test_spatiotemporal_cube.py │ ├── test_spatiotemporal_gpu.py │ ├── test_subglacial_lake_animation.py │ ├── test_subglacial_lake_crossover.py │ ├── test_subglacial_lake_finder.py │ ├── test_vizplots.py │ └── test_wide_to_long.py └── vizplots.py ├── environment-linux-64.lock ├── environment.yml ├── nsidc-download-ATL11.py ├── poetry.lock └── pyproject.toml /.dvc/.gitignore: -------------------------------------------------------------------------------- 1 | /config.local 2 | /tmp 3 | /cache 4 | -------------------------------------------------------------------------------- /.dvc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/.dvc/config -------------------------------------------------------------------------------- /.dvcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/.dvcignore -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/.gitignore -------------------------------------------------------------------------------- /.stickler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/.stickler.yml -------------------------------------------------------------------------------- /ATL06_to_ATL11_Antarctica.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/ATL06_to_ATL11_Antarctica.sh -------------------------------------------------------------------------------- /ATL11_to_download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/ATL11_to_download.txt -------------------------------------------------------------------------------- /ATLXI/df_dhdt_amundsen_sea_embayment.parquet.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/ATLXI/df_dhdt_amundsen_sea_embayment.parquet.dvc -------------------------------------------------------------------------------- /ATLXI/df_dhdt_slessor_downstream.parquet.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/ATLXI/df_dhdt_slessor_downstream.parquet.dvc -------------------------------------------------------------------------------- /ATLXI/df_dhdt_whillans_downstream.parquet.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/ATLXI/df_dhdt_whillans_downstream.parquet.dvc -------------------------------------------------------------------------------- /ATLXI/df_dhdt_whillans_upstream.parquet.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/ATLXI/df_dhdt_whillans_upstream.parquet.dvc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/README.md -------------------------------------------------------------------------------- /X2SYS/ICESAT2/ICESAT2.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/X2SYS/ICESAT2/ICESAT2.tag -------------------------------------------------------------------------------- /X2SYS/ICESAT2/ICESAT2_index.b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /X2SYS/ICESAT2/ICESAT2_paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/X2SYS/ICESAT2/ICESAT2_paths.txt -------------------------------------------------------------------------------- /X2SYS/ICESAT2/ICESAT2_tracks.d: -------------------------------------------------------------------------------- 1 | # ICESAT2 2 | -------------------------------------------------------------------------------- /X2SYS/ICESAT2/xyht.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/X2SYS/ICESAT2/xyht.fmt -------------------------------------------------------------------------------- /antarctic_subglacial_lakes_3031.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/antarctic_subglacial_lakes_3031.geojson -------------------------------------------------------------------------------- /antarctic_subglacial_lakes_4326.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/antarctic_subglacial_lakes_4326.geojson -------------------------------------------------------------------------------- /atl06_play.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atl06_play.ipynb -------------------------------------------------------------------------------- /atl06_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atl06_play.py -------------------------------------------------------------------------------- /atl06_to_atl11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atl06_to_atl11.ipynb -------------------------------------------------------------------------------- /atl06_to_atl11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atl06_to_atl11.py -------------------------------------------------------------------------------- /atl11_play.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atl11_play.ipynb -------------------------------------------------------------------------------- /atl11_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atl11_play.py -------------------------------------------------------------------------------- /atlxi_dhdt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atlxi_dhdt.ipynb -------------------------------------------------------------------------------- /atlxi_dhdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atlxi_dhdt.py -------------------------------------------------------------------------------- /atlxi_lake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atlxi_lake.ipynb -------------------------------------------------------------------------------- /atlxi_lake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atlxi_lake.py -------------------------------------------------------------------------------- /atlxi_xover.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atlxi_xover.ipynb -------------------------------------------------------------------------------- /atlxi_xover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/atlxi_xover.py -------------------------------------------------------------------------------- /deepicedrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/README.md -------------------------------------------------------------------------------- /deepicedrain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/__init__.py -------------------------------------------------------------------------------- /deepicedrain/atlas_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/atlas_catalog.yaml -------------------------------------------------------------------------------- /deepicedrain/deepicedrain_regions.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/deepicedrain_regions.geojson -------------------------------------------------------------------------------- /deepicedrain/deltamath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/deltamath.py -------------------------------------------------------------------------------- /deepicedrain/extraload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/extraload.py -------------------------------------------------------------------------------- /deepicedrain/features/subglacial_lakes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/features/subglacial_lakes.feature -------------------------------------------------------------------------------- /deepicedrain/lake_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/lake_algorithms.py -------------------------------------------------------------------------------- /deepicedrain/spatiotemporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/spatiotemporal.py -------------------------------------------------------------------------------- /deepicedrain/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepicedrain/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/conftest.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_calculate_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_calculate_delta.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_catalog.yaml -------------------------------------------------------------------------------- /deepicedrain/tests/test_deepicedrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_deepicedrain.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_nanlinregress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_nanlinregress.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_nanptp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_nanptp.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_ndarray_to_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_ndarray_to_dataframe.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_region.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_spatiotemporal_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_spatiotemporal_conversions.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_spatiotemporal_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_spatiotemporal_cube.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_spatiotemporal_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_spatiotemporal_gpu.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_subglacial_lake_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_subglacial_lake_animation.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_subglacial_lake_crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_subglacial_lake_crossover.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_subglacial_lake_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_subglacial_lake_finder.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_vizplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_vizplots.py -------------------------------------------------------------------------------- /deepicedrain/tests/test_wide_to_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/tests/test_wide_to_long.py -------------------------------------------------------------------------------- /deepicedrain/vizplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/deepicedrain/vizplots.py -------------------------------------------------------------------------------- /environment-linux-64.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/environment-linux-64.lock -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/environment.yml -------------------------------------------------------------------------------- /nsidc-download-ATL11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/nsidc-download-ATL11.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiji14/deepicedrain/HEAD/pyproject.toml --------------------------------------------------------------------------------