├── .all-contributorsrc ├── .codespellignore ├── .editorconfig ├── .github ├── actions │ ├── README.md │ ├── buildresources │ │ └── action.yaml │ └── setupconda │ │ └── action.yaml └── workflows │ ├── build_website.yaml │ ├── deploy.yaml │ ├── ensure_clean_notebooks.py │ ├── manual.yaml │ ├── netlifypreview.yaml │ └── qaqc.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── binder └── environment.yml ├── book ├── CoC.md ├── _config.yml ├── _static │ └── custom.css ├── _toc.yml ├── application.md ├── img │ ├── CoC.png │ ├── SupportDecisionTree.svg │ ├── banner.png │ ├── belonging.png │ ├── clone-result.png │ ├── clone.png │ ├── co-creation.png │ ├── earthdata-login.png │ ├── education.png │ ├── gee-signup.jpg │ ├── git-fork-clone-update.png │ ├── git-linear-flow-2.png │ ├── git-repo-structure.png │ ├── github-clone-url.png │ ├── github-fork.png │ ├── github-signup.png │ ├── github-token.png │ ├── github_whw_repos_image.png │ ├── hackweek-mission.png │ ├── hub-logout-button.png │ ├── interactivity.png │ ├── jupyter-terminal.png │ ├── jupyterhub-authentication.png │ ├── jupyterhub-connectivity.png │ ├── jupyterhub-overview.png │ ├── jupyterhub-upload.png │ ├── jupyterhub-website-folder.png │ ├── jupyterlab-git.jpg │ ├── jupyterlab.png │ ├── networking.png │ ├── open-science-defn.png │ ├── pangeo-image-select.png │ ├── pangeo-opening.png │ ├── pangeo-server-starting.png │ ├── participant-selection.png │ ├── people-github.png │ ├── private-github.png │ ├── project-purpose.png │ ├── project-roles.png │ ├── project-timeline.png │ ├── project-work.png │ ├── projects.png │ ├── public-github.png │ ├── repos.png │ ├── terminal-button.png │ ├── terminal-clone.png │ └── terminal.png ├── intro.md ├── logistics.md ├── logo.png ├── mission.md ├── preliminary │ ├── checklist │ │ ├── earthdata.md │ │ ├── earthengine.md │ │ ├── git.md │ │ ├── github.md │ │ └── jupyterhub.md │ ├── checklist_index.md │ ├── skills-refresher │ │ └── swc.md │ └── skills_refresher_index.md ├── projects │ ├── example_workflow.md │ ├── index.md │ ├── list_of_projects.md │ ├── project_initialization.md │ ├── project_readmes │ │ ├── 3dlakes.md │ │ ├── README_surfit.md │ │ ├── dzdt.md │ │ ├── grounding_zones.md │ │ ├── h5cloud_readme.md │ │ ├── project_readme_template.md │ │ ├── readme_EverythingAnywhereAllAtOnce.md │ │ └── seabath_readme.md │ ├── project_roadmap.md │ └── project_roles.md ├── reference │ ├── bibliography.md │ ├── glossary.md │ ├── open_science.md │ ├── open_source_software.md │ ├── questions.md │ ├── social.md │ ├── supplemental │ │ ├── conda.md │ │ └── python.md │ └── supplemental_index.md ├── references.bib ├── schedule.yaml ├── team.yaml └── tutorials │ ├── DataVisualization │ ├── .gitignore │ ├── OpenAltimetry_Earth_Engine.ipynb │ ├── README.md │ ├── use_examples.ipynb │ └── utils │ │ ├── __init__.py │ │ ├── curve_intersect.py │ │ └── oa.py │ ├── GrIMP │ ├── GrIMP_tutorial.ipynb │ ├── images │ │ ├── GL_vel_mosaic_Quarterly_01Sep22_30Nov22_browse_v05.0.jpg │ │ ├── GrIMP_header.png │ │ └── dynamic_thinning_schematic.png │ └── res │ │ ├── processed_ATL06_20191106230008_06270503_006_01.h5 │ │ ├── processed_ATL06_20211102121853_06271303_006_01.h5 │ │ └── steenstrupGlacier_annVel.nc │ ├── Hydrology │ ├── Hackweek.ipynb │ ├── Lakevic.jpg │ ├── altim.jpg │ ├── convert_GPS_time.py │ ├── convert_delta_time.py │ ├── convert_julian.py │ ├── flow.jpg │ ├── mussiom.jpg │ ├── outlier_removal.py │ └── studyarea.jpg │ ├── OOP │ ├── OOP_slides.pdf │ ├── OOP_tutorial_complete.ipynb │ ├── alien.ipynb │ └── index.md │ ├── bathymetry │ └── bathymetry_tutorial.ipynb │ ├── cryocloud_demo │ ├── CryoCloud_demo.ipynb │ ├── slides.png │ └── stop_server.png │ ├── data-access-and-format │ ├── earthaccess.ipynb │ ├── earthdata_search.md │ ├── grandmesa.geojson │ ├── icepyx.ipynb │ ├── images │ │ ├── Screenshot_EDSC_S3_links_credentials.png │ │ ├── Screenshot_EDSC_Searching_Cloud_Datasets.png │ │ ├── Screenshot_EDSC_getting_s3_links_workflow.png │ │ └── atl06_example_plot.png │ ├── index.md │ ├── overview.md │ ├── seattle_islands.geojson │ └── sliderule.ipynb │ ├── index.md │ ├── mission_overview │ ├── ICESat-2_mission_products.pdf │ ├── icesat-2-land-ice-products.ipynb │ ├── index.md │ └── sliderule-feature-find.ipynb │ ├── sea_ice │ ├── 1_sea_ice_tutorial.ipynb │ └── 2_ATL10_Sentinel-2.ipynb │ ├── sliderule │ └── parquet-s3.ipynb │ └── snow-depth │ ├── Images │ ├── DeemsLidarDifferencing.png │ ├── Deems_snowpack_example.png │ ├── NuthKaab_DEMoffset.png │ └── Zikan_DryCreek_map.png │ ├── applications-tutorial-snow-depth.ipynb │ └── supplemental-data │ ├── acp_lidar_box.geojson │ ├── sliderule_acp_rgt1097_20220304.csv │ ├── snowex_lidar_swaths.shp │ └── snowex_lidar_swaths.shx ├── conda ├── README.md ├── conda-linux-64.lock.yml ├── conda-lock.yml ├── conda-osx-64.lock.yml ├── conda-osx-arm64.lock.yml ├── environment.yml └── lock-environment.sh ├── cookiecutter.yaml ├── scripts ├── README.md ├── build_resources.sh ├── yaml2json.py └── yaml_tools.py └── {{ cookiecutter.repo_directory }} ├── assets ├── css │ ├── main.css │ └── theme.css ├── fontawesome │ ├── LICENSE.txt │ ├── attribution.js │ └── js │ │ └── all.min.js ├── images │ └── bars.svg ├── js │ └── main.js └── plugins │ ├── bootstrap │ └── js │ │ └── bootstrap.min.js │ ├── gumshoe │ └── gumshoe.polyfills.min.js │ ├── popper.min.js │ └── smoothscroll.min.js └── index.html /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.codespellignore: -------------------------------------------------------------------------------- 1 | hsa 2 | slippy 3 | parms 4 | ONy 5 | Te 6 | bu 7 | Ths 8 | bU 9 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/actions/README.md -------------------------------------------------------------------------------- /.github/actions/buildresources/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/actions/buildresources/action.yaml -------------------------------------------------------------------------------- /.github/actions/setupconda/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/actions/setupconda/action.yaml -------------------------------------------------------------------------------- /.github/workflows/build_website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/workflows/build_website.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/ensure_clean_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/workflows/ensure_clean_notebooks.py -------------------------------------------------------------------------------- /.github/workflows/manual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/workflows/manual.yaml -------------------------------------------------------------------------------- /.github/workflows/netlifypreview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/workflows/netlifypreview.yaml -------------------------------------------------------------------------------- /.github/workflows/qaqc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.github/workflows/qaqc.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/README.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- 1 | ../conda/conda-linux-64.lock.yml -------------------------------------------------------------------------------- /book/CoC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/CoC.md -------------------------------------------------------------------------------- /book/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/_config.yml -------------------------------------------------------------------------------- /book/_static/custom.css: -------------------------------------------------------------------------------- 1 | .bg-jb-one { 2 | background-color: #4b2e83; 3 | } -------------------------------------------------------------------------------- /book/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/_toc.yml -------------------------------------------------------------------------------- /book/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/application.md -------------------------------------------------------------------------------- /book/img/CoC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/CoC.png -------------------------------------------------------------------------------- /book/img/SupportDecisionTree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/SupportDecisionTree.svg -------------------------------------------------------------------------------- /book/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/banner.png -------------------------------------------------------------------------------- /book/img/belonging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/belonging.png -------------------------------------------------------------------------------- /book/img/clone-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/clone-result.png -------------------------------------------------------------------------------- /book/img/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/clone.png -------------------------------------------------------------------------------- /book/img/co-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/co-creation.png -------------------------------------------------------------------------------- /book/img/earthdata-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/earthdata-login.png -------------------------------------------------------------------------------- /book/img/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/education.png -------------------------------------------------------------------------------- /book/img/gee-signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/gee-signup.jpg -------------------------------------------------------------------------------- /book/img/git-fork-clone-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/git-fork-clone-update.png -------------------------------------------------------------------------------- /book/img/git-linear-flow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/git-linear-flow-2.png -------------------------------------------------------------------------------- /book/img/git-repo-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/git-repo-structure.png -------------------------------------------------------------------------------- /book/img/github-clone-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/github-clone-url.png -------------------------------------------------------------------------------- /book/img/github-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/github-fork.png -------------------------------------------------------------------------------- /book/img/github-signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/github-signup.png -------------------------------------------------------------------------------- /book/img/github-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/github-token.png -------------------------------------------------------------------------------- /book/img/github_whw_repos_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/github_whw_repos_image.png -------------------------------------------------------------------------------- /book/img/hackweek-mission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/hackweek-mission.png -------------------------------------------------------------------------------- /book/img/hub-logout-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/hub-logout-button.png -------------------------------------------------------------------------------- /book/img/interactivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/interactivity.png -------------------------------------------------------------------------------- /book/img/jupyter-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyter-terminal.png -------------------------------------------------------------------------------- /book/img/jupyterhub-authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyterhub-authentication.png -------------------------------------------------------------------------------- /book/img/jupyterhub-connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyterhub-connectivity.png -------------------------------------------------------------------------------- /book/img/jupyterhub-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyterhub-overview.png -------------------------------------------------------------------------------- /book/img/jupyterhub-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyterhub-upload.png -------------------------------------------------------------------------------- /book/img/jupyterhub-website-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyterhub-website-folder.png -------------------------------------------------------------------------------- /book/img/jupyterlab-git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyterlab-git.jpg -------------------------------------------------------------------------------- /book/img/jupyterlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/jupyterlab.png -------------------------------------------------------------------------------- /book/img/networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/networking.png -------------------------------------------------------------------------------- /book/img/open-science-defn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/open-science-defn.png -------------------------------------------------------------------------------- /book/img/pangeo-image-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/pangeo-image-select.png -------------------------------------------------------------------------------- /book/img/pangeo-opening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/pangeo-opening.png -------------------------------------------------------------------------------- /book/img/pangeo-server-starting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/pangeo-server-starting.png -------------------------------------------------------------------------------- /book/img/participant-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/participant-selection.png -------------------------------------------------------------------------------- /book/img/people-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/people-github.png -------------------------------------------------------------------------------- /book/img/private-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/private-github.png -------------------------------------------------------------------------------- /book/img/project-purpose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/project-purpose.png -------------------------------------------------------------------------------- /book/img/project-roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/project-roles.png -------------------------------------------------------------------------------- /book/img/project-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/project-timeline.png -------------------------------------------------------------------------------- /book/img/project-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/project-work.png -------------------------------------------------------------------------------- /book/img/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/projects.png -------------------------------------------------------------------------------- /book/img/public-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/public-github.png -------------------------------------------------------------------------------- /book/img/repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/repos.png -------------------------------------------------------------------------------- /book/img/terminal-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/terminal-button.png -------------------------------------------------------------------------------- /book/img/terminal-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/terminal-clone.png -------------------------------------------------------------------------------- /book/img/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/img/terminal.png -------------------------------------------------------------------------------- /book/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/intro.md -------------------------------------------------------------------------------- /book/logistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/logistics.md -------------------------------------------------------------------------------- /book/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/logo.png -------------------------------------------------------------------------------- /book/mission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/mission.md -------------------------------------------------------------------------------- /book/preliminary/checklist/earthdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/checklist/earthdata.md -------------------------------------------------------------------------------- /book/preliminary/checklist/earthengine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/checklist/earthengine.md -------------------------------------------------------------------------------- /book/preliminary/checklist/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/checklist/git.md -------------------------------------------------------------------------------- /book/preliminary/checklist/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/checklist/github.md -------------------------------------------------------------------------------- /book/preliminary/checklist/jupyterhub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/checklist/jupyterhub.md -------------------------------------------------------------------------------- /book/preliminary/checklist_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/checklist_index.md -------------------------------------------------------------------------------- /book/preliminary/skills-refresher/swc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/skills-refresher/swc.md -------------------------------------------------------------------------------- /book/preliminary/skills_refresher_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/preliminary/skills_refresher_index.md -------------------------------------------------------------------------------- /book/projects/example_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/example_workflow.md -------------------------------------------------------------------------------- /book/projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/index.md -------------------------------------------------------------------------------- /book/projects/list_of_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/list_of_projects.md -------------------------------------------------------------------------------- /book/projects/project_initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_initialization.md -------------------------------------------------------------------------------- /book/projects/project_readmes/3dlakes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/3dlakes.md -------------------------------------------------------------------------------- /book/projects/project_readmes/README_surfit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/README_surfit.md -------------------------------------------------------------------------------- /book/projects/project_readmes/dzdt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/dzdt.md -------------------------------------------------------------------------------- /book/projects/project_readmes/grounding_zones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/grounding_zones.md -------------------------------------------------------------------------------- /book/projects/project_readmes/h5cloud_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/h5cloud_readme.md -------------------------------------------------------------------------------- /book/projects/project_readmes/project_readme_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/project_readme_template.md -------------------------------------------------------------------------------- /book/projects/project_readmes/readme_EverythingAnywhereAllAtOnce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/readme_EverythingAnywhereAllAtOnce.md -------------------------------------------------------------------------------- /book/projects/project_readmes/seabath_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_readmes/seabath_readme.md -------------------------------------------------------------------------------- /book/projects/project_roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_roadmap.md -------------------------------------------------------------------------------- /book/projects/project_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/projects/project_roles.md -------------------------------------------------------------------------------- /book/reference/bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/bibliography.md -------------------------------------------------------------------------------- /book/reference/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/glossary.md -------------------------------------------------------------------------------- /book/reference/open_science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/open_science.md -------------------------------------------------------------------------------- /book/reference/open_source_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/open_source_software.md -------------------------------------------------------------------------------- /book/reference/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/questions.md -------------------------------------------------------------------------------- /book/reference/social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/social.md -------------------------------------------------------------------------------- /book/reference/supplemental/conda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/supplemental/conda.md -------------------------------------------------------------------------------- /book/reference/supplemental/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/supplemental/python.md -------------------------------------------------------------------------------- /book/reference/supplemental_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/reference/supplemental_index.md -------------------------------------------------------------------------------- /book/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/references.bib -------------------------------------------------------------------------------- /book/schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/schedule.yaml -------------------------------------------------------------------------------- /book/team.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/team.yaml -------------------------------------------------------------------------------- /book/tutorials/DataVisualization/.gitignore: -------------------------------------------------------------------------------- 1 | *.jpg 2 | *.tif 3 | downloads/ 4 | plots/ 5 | -------------------------------------------------------------------------------- /book/tutorials/DataVisualization/OpenAltimetry_Earth_Engine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/DataVisualization/OpenAltimetry_Earth_Engine.ipynb -------------------------------------------------------------------------------- /book/tutorials/DataVisualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/DataVisualization/README.md -------------------------------------------------------------------------------- /book/tutorials/DataVisualization/use_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/DataVisualization/use_examples.ipynb -------------------------------------------------------------------------------- /book/tutorials/DataVisualization/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/DataVisualization/utils/__init__.py -------------------------------------------------------------------------------- /book/tutorials/DataVisualization/utils/curve_intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/DataVisualization/utils/curve_intersect.py -------------------------------------------------------------------------------- /book/tutorials/DataVisualization/utils/oa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/DataVisualization/utils/oa.py -------------------------------------------------------------------------------- /book/tutorials/GrIMP/GrIMP_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/GrIMP/GrIMP_tutorial.ipynb -------------------------------------------------------------------------------- /book/tutorials/GrIMP/images/GL_vel_mosaic_Quarterly_01Sep22_30Nov22_browse_v05.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/GrIMP/images/GL_vel_mosaic_Quarterly_01Sep22_30Nov22_browse_v05.0.jpg -------------------------------------------------------------------------------- /book/tutorials/GrIMP/images/GrIMP_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/GrIMP/images/GrIMP_header.png -------------------------------------------------------------------------------- /book/tutorials/GrIMP/images/dynamic_thinning_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/GrIMP/images/dynamic_thinning_schematic.png -------------------------------------------------------------------------------- /book/tutorials/GrIMP/res/processed_ATL06_20191106230008_06270503_006_01.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/GrIMP/res/processed_ATL06_20191106230008_06270503_006_01.h5 -------------------------------------------------------------------------------- /book/tutorials/GrIMP/res/processed_ATL06_20211102121853_06271303_006_01.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/GrIMP/res/processed_ATL06_20211102121853_06271303_006_01.h5 -------------------------------------------------------------------------------- /book/tutorials/GrIMP/res/steenstrupGlacier_annVel.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/GrIMP/res/steenstrupGlacier_annVel.nc -------------------------------------------------------------------------------- /book/tutorials/Hydrology/Hackweek.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/Hackweek.ipynb -------------------------------------------------------------------------------- /book/tutorials/Hydrology/Lakevic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/Lakevic.jpg -------------------------------------------------------------------------------- /book/tutorials/Hydrology/altim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/altim.jpg -------------------------------------------------------------------------------- /book/tutorials/Hydrology/convert_GPS_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/convert_GPS_time.py -------------------------------------------------------------------------------- /book/tutorials/Hydrology/convert_delta_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/convert_delta_time.py -------------------------------------------------------------------------------- /book/tutorials/Hydrology/convert_julian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/convert_julian.py -------------------------------------------------------------------------------- /book/tutorials/Hydrology/flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/flow.jpg -------------------------------------------------------------------------------- /book/tutorials/Hydrology/mussiom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/mussiom.jpg -------------------------------------------------------------------------------- /book/tutorials/Hydrology/outlier_removal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/outlier_removal.py -------------------------------------------------------------------------------- /book/tutorials/Hydrology/studyarea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/Hydrology/studyarea.jpg -------------------------------------------------------------------------------- /book/tutorials/OOP/OOP_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/OOP/OOP_slides.pdf -------------------------------------------------------------------------------- /book/tutorials/OOP/OOP_tutorial_complete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/OOP/OOP_tutorial_complete.ipynb -------------------------------------------------------------------------------- /book/tutorials/OOP/alien.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/OOP/alien.ipynb -------------------------------------------------------------------------------- /book/tutorials/OOP/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/OOP/index.md -------------------------------------------------------------------------------- /book/tutorials/bathymetry/bathymetry_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/bathymetry/bathymetry_tutorial.ipynb -------------------------------------------------------------------------------- /book/tutorials/cryocloud_demo/CryoCloud_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/cryocloud_demo/CryoCloud_demo.ipynb -------------------------------------------------------------------------------- /book/tutorials/cryocloud_demo/slides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/cryocloud_demo/slides.png -------------------------------------------------------------------------------- /book/tutorials/cryocloud_demo/stop_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/cryocloud_demo/stop_server.png -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/earthaccess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/earthaccess.ipynb -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/earthdata_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/earthdata_search.md -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/grandmesa.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/grandmesa.geojson -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/icepyx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/icepyx.ipynb -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/images/Screenshot_EDSC_S3_links_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/images/Screenshot_EDSC_S3_links_credentials.png -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/images/Screenshot_EDSC_Searching_Cloud_Datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/images/Screenshot_EDSC_Searching_Cloud_Datasets.png -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/images/Screenshot_EDSC_getting_s3_links_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/images/Screenshot_EDSC_getting_s3_links_workflow.png -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/images/atl06_example_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/images/atl06_example_plot.png -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/index.md -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/overview.md -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/seattle_islands.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/seattle_islands.geojson -------------------------------------------------------------------------------- /book/tutorials/data-access-and-format/sliderule.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/data-access-and-format/sliderule.ipynb -------------------------------------------------------------------------------- /book/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/index.md -------------------------------------------------------------------------------- /book/tutorials/mission_overview/ICESat-2_mission_products.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/mission_overview/ICESat-2_mission_products.pdf -------------------------------------------------------------------------------- /book/tutorials/mission_overview/icesat-2-land-ice-products.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/mission_overview/icesat-2-land-ice-products.ipynb -------------------------------------------------------------------------------- /book/tutorials/mission_overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/mission_overview/index.md -------------------------------------------------------------------------------- /book/tutorials/mission_overview/sliderule-feature-find.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/mission_overview/sliderule-feature-find.ipynb -------------------------------------------------------------------------------- /book/tutorials/sea_ice/1_sea_ice_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/sea_ice/1_sea_ice_tutorial.ipynb -------------------------------------------------------------------------------- /book/tutorials/sea_ice/2_ATL10_Sentinel-2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/sea_ice/2_ATL10_Sentinel-2.ipynb -------------------------------------------------------------------------------- /book/tutorials/sliderule/parquet-s3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/sliderule/parquet-s3.ipynb -------------------------------------------------------------------------------- /book/tutorials/snow-depth/Images/DeemsLidarDifferencing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/Images/DeemsLidarDifferencing.png -------------------------------------------------------------------------------- /book/tutorials/snow-depth/Images/Deems_snowpack_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/Images/Deems_snowpack_example.png -------------------------------------------------------------------------------- /book/tutorials/snow-depth/Images/NuthKaab_DEMoffset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/Images/NuthKaab_DEMoffset.png -------------------------------------------------------------------------------- /book/tutorials/snow-depth/Images/Zikan_DryCreek_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/Images/Zikan_DryCreek_map.png -------------------------------------------------------------------------------- /book/tutorials/snow-depth/applications-tutorial-snow-depth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/applications-tutorial-snow-depth.ipynb -------------------------------------------------------------------------------- /book/tutorials/snow-depth/supplemental-data/acp_lidar_box.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/supplemental-data/acp_lidar_box.geojson -------------------------------------------------------------------------------- /book/tutorials/snow-depth/supplemental-data/sliderule_acp_rgt1097_20220304.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/supplemental-data/sliderule_acp_rgt1097_20220304.csv -------------------------------------------------------------------------------- /book/tutorials/snow-depth/supplemental-data/snowex_lidar_swaths.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/supplemental-data/snowex_lidar_swaths.shp -------------------------------------------------------------------------------- /book/tutorials/snow-depth/supplemental-data/snowex_lidar_swaths.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/book/tutorials/snow-depth/supplemental-data/snowex_lidar_swaths.shx -------------------------------------------------------------------------------- /conda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/conda/README.md -------------------------------------------------------------------------------- /conda/conda-linux-64.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/conda/conda-linux-64.lock.yml -------------------------------------------------------------------------------- /conda/conda-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/conda/conda-lock.yml -------------------------------------------------------------------------------- /conda/conda-osx-64.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/conda/conda-osx-64.lock.yml -------------------------------------------------------------------------------- /conda/conda-osx-arm64.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/conda/conda-osx-arm64.lock.yml -------------------------------------------------------------------------------- /conda/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/conda/environment.yml -------------------------------------------------------------------------------- /conda/lock-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/conda/lock-environment.sh -------------------------------------------------------------------------------- /cookiecutter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/cookiecutter.yaml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/scripts/build_resources.sh -------------------------------------------------------------------------------- /scripts/yaml2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/scripts/yaml2json.py -------------------------------------------------------------------------------- /scripts/yaml_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/scripts/yaml_tools.py -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/css/main.css -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/css/theme.css -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/fontawesome/attribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/fontawesome/attribution.js -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/fontawesome/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/fontawesome/js/all.min.js -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/images/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/images/bars.svg -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/js/main.js -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/plugins/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/plugins/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/plugins/gumshoe/gumshoe.polyfills.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/plugins/gumshoe/gumshoe.polyfills.min.js -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/plugins/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/plugins/popper.min.js -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/assets/plugins/smoothscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/assets/plugins/smoothscroll.min.js -------------------------------------------------------------------------------- /{{ cookiecutter.repo_directory }}/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICESAT-2HackWeek/ICESat-2-Hackweek-2023/HEAD/{{ cookiecutter.repo_directory }}/index.html --------------------------------------------------------------------------------