Knowledge Base
How to import the NSIDC-0051 sea ice concentration data into ArcGIS
The following are instructions describing how to import Sea Ice Concentrations from the Nimbus-7 SMMR and DMSP SSM/I-SSMIS Passive Microwave Data flat binary files into ArcGIS. These instructions were tested with ArcGIS 10.5 and 10.6.
1. Rename the Data File.
In order to be able to import a Polar Stereographic sea ice concentration file into ArcGIS, you will need to:
Rename the file extension, changing it from .bin to .bil
Example: nt_201109_f17_v01_n.bin to nt_201109_f17_v01_n.bil
2. Create a Header File.
In a text editor, create a new file with the content below. You will need to give the file the same name as the data file, but with a .hdr extension. Make sure that the .bil file and the .hdr file are saved in the same folder and are accessible to ArcGIS.
Content of the header file for Northern Hemisphere data:
nrows 448
ncols 304
nbands 1
nbits 8
layout bil
byteorder I
skipbytes 300
ulxmap -3837500
ulymap 5837500
xdim 25000
ydim 25000
Content of the header file for Southern Hemisphere data:
nrows 332
ncols 316
nbands 1
nbits 8
layout bil
byteorder I
skipbytes 300
ulxmap -3937500
ulymap 4337500
xdim 25000
ydim 25000
3. Convert the .bil File to an ESRI Compatible Grid Format.
Start ArcMap and open the ArcToolbox. Select Conversion Tools > To Raster > Raster to Other Format (multiple).
In the dialogue box that opens, select your .bil file as the Input Raster.
In the Output Workspace field, select the location to store the new data file. Choose ESRI Grid, ERDAS Imagine, or TIFF as the output raster format.
Click OK. The program will use your .hdr file to define your input raster and create a new, ESRI-compatible file.
4. Define the Projection.
In ArcToolbox, navigate to Data Management Tools > Projections and Transformations > Define Projection.
In the dialogue box that opens, choose the file you created in step 3 as the Input Dataset or Feature Class.
Located Projected Coordinate Systems > Polar > NSIDC Sea Ice Polar Stereographic [North/South].
Run the tool.
To convert to the fractional parameter range of 0.0 to 1.0, divide the scaled data in the file by 250. To convert to percentage values (0% to 100%), divide the scaled data in the file by 2.5. You can do this step by utilizing Math>Times in the Spatial Analyst Tools that are part of the Arc Toolbox. You can also add TIMES BY (1.0/2.5) to the header file.
Last Updated September 2019