Previous: CDL Next: NetCDF Files Table of contents Frames User guide
2007 Unidata NetCDF Workshop for Developers and Data Providers > The "Classic" NetCDF Data Model

3.4 A Simple Example
A concrete example of netCDF dimensions, variables, and attributes.

Let's look at the dimensions, variables, and attributes from the netCDF file co2.nc:

ncdump -h co2.nc
netcdf co2 {
dimensions:
	T = 456 ;
variables:
	float T(T) ;
		T:units = "months since 1960-01-01" ;
	float co2(T) ;
		co2:long_name = "CO2 concentration by volume" ;
		co2:units = "1.0e-6" ;
		co2:_FillValue = -99.99f ;

// global attributes:
		:references = "Keeling_etal1996 Keeling_etal1989 Keeling_etal1995" ;

 


Previous: CDL Next: NetCDF Files Table of contents Frames User guide
2007 Unidata NetCDF Workshop for Developers and Data Providers > The "Classic" NetCDF Data Model