Authors: Andy Barrett, Marin Klinger, Luis Lopez, Walt Meier, Amy Steiker, Bruce Wallin: NASA National Snow and Ice Data Center Distributed Active Archive Center (NSIDC DAAC)
Welcome to the NSIDC DAAC's hands-on tutorial at the 2019 AGU Fall Meeting!
The tutorial is divided into three main Jupyter Notebooks: Introduction, Customize and Access Data, and Visualize and Analyze Data. Here are the steps you will learn in this Introduction notebook:
Let's get started!
Before we delve into our Arctic sea ice data exploration, let's go over the basics of how to interact with these Jupyter Notebooks and the Jupyter Lab interface.
We will be running the three Jupyter Notebooks comprising this tutorial within the JupyterLab environment. We are working within the NSIDC JupyterHub, powered by Amazon Web Services: https://nsidc-cryohub.org/
There is no need to download or install any packages. JupyterHub proxies multiple instances of a single-user JupyterLab server. We have preconfigued the environments and data that you'll be working with during the tutorial.
*NSIDC CryoHub will not be accessible after the week of AGU. Please visit the AGU-2019-NSIDC-Data-Tutorial Github Repository and follow the README file instructions to install and run these tutorials in a Binder instance or on your local machine.*
For more information on these Project Jupyter components, please visit the following references:
Interactive, reproducible, open source, and exploratory browser integrated computing environment.
Web-based integrated IDE for computational workflows.
Multi-user access to Jupyter Notebooks. Deploy to users within an organization on centralized infrastructure using on-premise or cloud resources.
The body of a notebook is composed of cells. Each cell contains either markdown, code input, code output, or raw text. Cells can be included in any order and edited and executed at-will.
Markdown cells - These are used to build a nicely formatted narrative around the code in the document.
Code cells - These are used to define the computational code in the document. They come in two forms: the input cell where the user types the code to be executed, and the output cell which is the representation of the executed code.
Raw cells - These are used when text needs to be included in raw form, without execution or transformation.
print('Hello World!')
The cell content is replaced by three dots, indicating that the cell is collapsed.
Select cells with shift + Up or shift + Down and then execute selection with shift + enter.
Run the whole notebook in a single step by clicking on the menu Run -> Run All Cells.
Fast ice: ice that is anchored (fastened) to the shore or ocean bottom, typically over shallow ocean shelves at continental margins; fast ice is defined by the fact that it does not move with the winds or currents.
The National Snow and Ice Data Center provides over 1100 data sets covering the Earth's cryosphere and more, all of which are available to the public free of charge. Beyond providing these data, NSIDC creates tools for data access, supports data users, performs scientific research, and educates the public about the cryosphere.
We'll explore data access and support resources in more detail below with our ICESat-2 and MODIS data sets of interest.
The Ice, Cloud, and Land Elevation Satellite-2 (ICESat-2) carries the Advanced Topographic Laser Altimeter System (ATLAS), a photon-counting laser altimeter, that measures the height of Earth's changing polar regions. The ATLAS instrument releases 10,000 laser pulses per second, split into 3 weak/strong beam pairs at a wavelength of 532 nanaometers (bright green on the visible spectrum). Measurements are taken every 70 cm along the satellite's ground track with a footprint diameter of 17 m. The beam pairs are spaced 3.3 km apart, with a distance of 90 m between each weak and strong beam. ICESat-2 orbits Earth every 91 days to allow for height change detection in all four seasons. In addition to land ice and sea ice, ICESat-2 also measures the height of vegetation, land surface, water, and clouds. See the NASA ICESat-2 home page for more information.
The NSIDC ICESat-2 home page provides an overview of the data products and user resources available.
Each data set has an associated landing page with citation information, a curated user guide, support documentation, and the ability to access data by time, spatial region, and granule name:
ATL03: Global Geolocated Photon Data
ATL07: Level 3A Sea Ice Height
ATL10: Level 3A Sea Ice Freeboard
We'll use the OpenAltimetry application to easily visualize the coverage over our area of interest, including an overlay of MODIS reflectance imagery to observe cloud cover. The link provides a previously created data annotation that automatically zooms into our study area. These annotations can be created and shared by all users of OpenAltimetry.
Note the following characteristics of the ATLAS instrument and the ATL07 and ATL10 products in particular:
gt*l
groups designate the strong beams, wherase the gt*r
groups designate the weak beams.Moderate-resolution Imaging Spectroradiometer (MODIS) ice surface temperature (IST) data are available in Level-2 swaths and Level-3 grids. For this tutorial we will be using the Level 2 swath data. MODIS data are available at 1 km resolution. IST retrievals occur for cloud free Arctic and Antarctic sea ice, for day and night.
IST is the radiating temperature at the ice surface. The IST algorithm for MODIS uses a split-window technique. MODIS bands 31 and 32 (brightness temperature) provide the ability for IST detection.
The NSIDC MODIS home page provides an overview of the data products and user resources available.
Each data set has an associated landing page with citation information, a curated user guide, support documentation, and the ability to access data by time, spatial region, and granule name:
We are looking for a clear day across the coast, fast ice, and on to drift ice: March 23, 2019 over the East Siberian Sea provides those ideal conditions. Below is imagery from NASA Worldview overlain with MODIS Terra IST over this region:
NASA worldview imagery overlain with MODIS Terra IST over East Siberian Sea, March 23, 2019. Lighter green colors correspond to warmer temperatures, while darker blue colors represent colder temperatures, with land and cloud cover in gray. Image credit: NASA Worldview
Customize and Access Data
notebook.¶