IEEE Visualization 2004 Contest

Data Set

The theme for the inaugural IEEE Visualization contest was visualization fusion. The goal was to provide a data set which will allow researchers to showcase their visualization techniques from a wide range of disciplines. Since the type of information being shown is so diverse, we hoped to encourage collaboration of researchers from all domains of scientific and information visualization.

The data set for this contest is a simulation of a hurricane from the National Center for Atmospheric Research in the United States. The data consists of several time-varying scalar and vector variables over large dynamic ranges. The sheer size of the data also presents a challenge for interactive exploration.

Data Format

A summary of the data can be found below:

Format

The data is in "Brick-of-Floats" format. It consists of a volume of data values at each position in space. The three-dimensional array of data consists of planes of x-y values in ascending z order; in the data, the x values vary fastest. Assuming the data was stored as a one-dimensional array, the index into that array for the point x, y, z would be:

index=x+dim_x×(y+dim_y×z)

where dim_x is the number of x values (500) and dim_y is the number of y values (500).

Variables

The following table described the variables in the data set. Each variable is contained in a separate data file, one for each time step. All data values are floating-point values.

Variable Description Range
QCLOUD Cloud moisture mixing ratio (kg water/kg dry air) 0.00000/0.00332
QGRAUP Graupel mixing ratio (solid ice precipitation: hail, sleet, snow pellets) 0.00000/0.01638
QICE Cloud ice mixing ratio 0.00000/0.00099
QSNOW Snow mixing ratio 0.00000/0.00135
QVAPOR Water vapor mixing ratio 0.00000/0.02368
CLOUD Total cloud moisture mixing ratio (QCLOUD+QICE) 0.00000/0.00332
PRECIP Total precipitation mixing ratio (QGRAUP+QRAIN+QSNOW) 0.00000/0.01672
P Pressure (weight of atmosphere above a grid point) -5471.85791/3225.42578
TC Temperature (Celsius) -83.00402/31.51576
U X wind speed (positive means winds from west to east) -79.47297/85.17703
V Y wind speed (positive means winds from south to north) -76.03391/82.95293
W Z wind speed (positive means upward wind) -9.06026/28.61434

Note that all data is stored in big-endian format and compressed via GNU zip (gzip) for storage. Each file is named VARfNN.bin.gz where VAR is the variable name and NN is the time step.

Physical Position

Since the data in question simulates an actual event (a hurricane), each computational data point (voxel) corresponds to an actual physical point. The surface topology (for the actual ground) is in a special 500x500x1 data file (HGTdata.bin.gz). In the other files, where there is ground, no data is recorded. The special value for this "no data" value is 1.0000000e+35.

Acquiring the Data

Data can be downloaded from following locations

If you use the data set, please provide the following attribution:

The authors will like to thank Bill Kuo, Wei Wang, Cindy Bruyere, Tim Scheitlin, and Don Middleton of the U.S. National Center for Atmospheric Research (NCAR) and the U.S. National Science Foundation (NSF) for providing the Weather Research and Forecasting (WRF) Model simulation data of Hurricane Isabel.

A shorter attribution is:

Hurricane Isabel data produced by the Weather Research and Forecast (WRF) model, courtesy of NCAR and the U.S. National Science Foundation (NSF).

For More Information

For for information about hurricanes or the method used to generate the data, consult the following links.

Acknowledgments

The data set has kindly been provided by Wei Wang, Cindy Bruyere, Bill Kuo, and others at NCAR. Tim Scheitlin at NCAR converted the data into the Brick-of-Float format described above.