|
1 | 1 | # Snow Depth and Snow Cover Data Exploration
|
2 | 2 |
|
3 |
| -## Summary |
| 3 | +## Overview |
4 | 4 |
|
5 |
| -This tutorial demonstrates how to access and compare coincident snow data from the National Snow and Ice Data Center Distributed Active Archive Center (NSIDC DAAC) across in-situ, airborne, and satellite platforms from NASA's SnowEx, ASO, and MODIS data sets, respectively. |
| 5 | +This tutorial demonstrates how to access and compare coincident snow data from in-situ Ground Pentrating Radar (GPR) measurements, and airborne and satellite platforms from NASA's SnowEx, ASO, and MODIS data sets. All data are available from the NASA National Snow and Ice Data Center Distributed Active Archive Center (NSIDC DAAC). |
6 | 6 |
|
7 |
| -## Key Learning Objectives |
| 7 | +## What you will learn in this tutorial |
8 | 8 |
|
9 |
| -1. Learn about the coverage, resolution, and structure of snow data sets from NASA's SnowEx, ASO, and MODIS data sets. |
| 9 | +In this tutorial you will learn: |
10 | 10 |
|
11 |
| -2. Learn how to find and download spatiotemporally coincident data across in-situ, airborne, and satellite observations. |
| 11 | +1. what snow data and information is available from NSIDC and the resources available to search and access this data; |
| 12 | +2. how to search and access spatiotemporally coincident data across in-situ, airborne, and satellite observations. |
| 13 | +3. how to read SnowEx GPR data into a Geopandas GeoDataFrame; |
| 14 | +4. how to read ASO snow depth data from GeoTIFF files using xarray; |
| 15 | +5. how to read MODIS Snow Cover data from HDF-EOS files using xarray; |
| 16 | +6. how to subset gridded data using a bounding box; |
| 17 | +5. how to extract and visualize raster values at point locations; |
| 18 | +6. how to save output as shapefile. |
12 | 19 |
|
13 |
| -3. Learn how to read data into Python from CSV and GeoTIFF formats. |
| 20 | +## Setup |
14 | 21 |
|
15 |
| -4. Learn how to subset data based on a buffered area. |
| 22 | +We recommend creating a virtual environment to run this notebook. This can be with `mamba` or `conda`. We recommend `mamba`. |
16 | 23 |
|
17 |
| -5. Learn how to extract and visualize raster values at point locations. |
| 24 | +``` |
| 25 | +mamba env update -f environment/environment.yml |
| 26 | +``` |
| 27 | + |
| 28 | +This will create an environment called `nsidc-tutorials-snowex`. You can activate the environment with the command: |
| 29 | + |
| 30 | +``` |
| 31 | +mamba activate nsidc-tutorials-snowex |
| 32 | +``` |
| 33 | + |
| 34 | +You will now have a virtual environment with all the required packages. You can start a `jupyter lab` with |
| 35 | + |
| 36 | +``` |
| 37 | +jupyter lab |
| 38 | +``` |
0 commit comments