Previous: Introducing CDL (Common Data Language) Next: A Convention for Coordinates: Coordinate Variables Table of contents Frames 2010 Unidata NetCDF Workshop > The Two NetCDF Data Models

4.10 Another Simple Example
In this example, a simple data file is examined with ncdump, showing its dimensions, variables, and attributes as CDL.

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_etal1995" ;

 


Previous: Introducing CDL (Common Data Language) Next: A Convention for Coordinates: Coordinate Variables Table of contents Frames 2010 Unidata NetCDF Workshop > The Two NetCDF Data Models