Help Center

Search by how-tos, topics or data collection/mission
Filter by:
This article shows how to download NSIDC DAAC data from NASA Earthdata Cloud to your computer using three tools: wget and curl—popular command-line utilities for downloading files—and Data Downloader, a Python-based command-line tool developed by the Physical Oceanography Distributed Active Archive Center (PO.DAAC).
NASA’s NSIDC DAAC offers two easy, browser-based methods to download cloud-hosted data — no coding required. This guide covers both:Earthdata SearchHTTPS File System (CMR Virtual Directory)PrerequisitesBefore getting started, ensure you have:A NASA Earthdata Login (EDL): https://urs.earthdata.nasa.gov/A web browser (Chrome, Firefox, Safari, or Edge)Start at the Dataset Landing PageIf you already know the dataset you want, start at its landing page.
earthaccess is a Python library that simplifies authentication, search, and download of data from NASA's Earthdata systems. It allows you to work with Earthdata directly in the cloud or download files to your local machine.
This article covers frequently asked questions about the NASA NSIDC DAAC's Earthdata cloud migration project and what it means to data users.
Read this help article to learn about what ICESat-2 quick look data products are and how to find them. What are ICESat-2 quick looks? The Advanced Topographic Altimeter System (ATLAS) on board the Ice, Cloud and land Elevation Satellite-2 (ICESat-2) collects elevation data over all surfaces spanning the world’s frozen regions, forests, lakes, urban areas, and more. ICESat-2 data has a standard latency of 30-45 days, meaning it is made available to users 30-45 days after satellite observation.
Many NSIDC DAAC data sets can be accessed using NSIDC DAAC's Data Access Tool. This tool provides the ability to search and filter data with spatial and temporal constraints using a map-based interface.Users have the option to:Download a Python scriptDownload files using the Earthdata Download applicationPass their selection through to Earthdata Search to further customize and order thereLet's get started with how to use the NSIDC DAAC Data Access Tool.
This article describes how to geolocate North, South, and Global EASE-Grid data from the DMSP SSM/I-SSMIS Pathfinder Daily EASE-Grid Brightness Temperatures product using ENVI software. These procedures were tested with ENVI Classic 5.2 on both linux and Windows 7; other versions of ENVI may have slightly different menu options and steps. 
The GoLIVE Map Application allows users to spatially search for and download land ice velocities derived from panchromatic imagery collected from May 2013 to present.
The NSIDC Data Map Services Application Programming Interface (API) provides HTTP URLs for requesting geo-registered map images from NSIDC's geospatial database. A WMS request defines the geographic layer(s) and area of interest to be processed. The response to the request is one geo-registered map image returned as a PNG 24bit, PNG 8bit, GIF, JPEG, or JPEG-PNG that can be displayed in a browser. You can also obtain a Keyhole Markup Language (KML) image to view in Google Earth, and a Geography Markup Language (GML) XML grammar file through a WFS request.
This quickstart guide will walk you through the essential steps to start using the Harmony API to request subsetted files with specific spatial and temporal filters applied for select data sets.
There is considerable overlap of the SMAP radiometer footprints, or Instantaneous Fields of View (IFOVs), which are defined by the contours where the sensitivity of the antenna has fallen by 3db from its maximum. The IFOVs are spaced about 11 km apart in the along scan direction with scan lines spaced about 28 km apart near the sub-satellite track. Thus, by interpolating the values from the nearest 6 IFOVs to each 9 km EASE-Grid 2.0 cell location a product with enhanced detail is possible.
NOHRSC provides/creates the data, we just archive it. If you have questions about the model (such as how it is run) that are not available in the user guide, you have to contact NOHRSC directly.
There are two "tricks" to using this dataset (g02156) with GMT: reading the data into a GMT grdfile, and knowing the projection to use when plotting data over the gridded image. First, the ASCII files have a 30-line header, then single-digit values all strung together. GMT's xyz2grd command needs the data reformatted a bit to work. This shell script will do it: #!/bin/sh infile=$1 tail +31 $infile | perl -pe 'chomp; s/(.)/$1\n/g' | xyz2grd new_data.txt -Gt.grd -ZBLa -V \
Learn about the various ways you can find NSIDC DAAC IceBridge data.
Below the image in this article, you will find sample code in IDL, MATLAB, and Python to read in a GeoTIFF file, extract the metadata, and create an image. The code has been tested with the following data products:
First, you can open AMSR-E data automatically with ENVI, which handles the HDF-EOS data format by...
First, the spatial resolution of AMSR/ADEOS-II and AMSR-E/Aqua data doubles the resolution of Scanning Multichannel Microwave Radiometer (SMMR) and Special Sensor Microwave/Imager (SSM/I) data.
OPeNDAP, the Open-source Project for a Network Data Access Protocol, is a NASA community standard DAP that provides a simple way for researchers to access and work with data over the internet. OPeNDAP's client/server software allows users to subset and reformat data using an internet browser, command line interface, or custom user interface such as a C NetCDF or Java NetCDF-compliant data analysis program. With a URL to an OPeNDAP server, users can browse data, perform subset operations, and open data directly in NetCDF-compliant software and tools like Matlab, R, IDL, and Panoply.
We recommend using the Geospatial Data Abstraction Library (GDAL) to convert GeoTIFF files into a different format.
To convert HDF5 files into binary format you will need to use the h5dump utility, which is part of the HDF5 distribution available from the HDF Group. How you install HDF5 depends on your operating system. Full instructions for installing and using h5dump on Mac/Unix and Windows are provided below.