File: in_rec_zero.cdl

package info (click to toggle)
nco 3.9.0-1.2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,876 kB
  • ctags: 2,621
  • sloc: ansic: 27,968; cpp: 13,798; sh: 8,996; python: 4,450; perl: 3,058; makefile: 1,606; lex: 1,133; yacc: 605
file content (29 lines) | stat: -rw-r--r-- 932 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// ncgen -b -o ~/nco/data/in_rec_zero.nc ~/nco/data/in_rec_zero.cdl

netcdf in_rec_zero {
dimensions:
        lon = 4 ;
        time = UNLIMITED ; // (10 currently)
variables:
        float lon(lon) ;
                lon:long_name = "Latitude" ;
                lon:units = "degrees_north" ;
        float one ;
                one:long_name = "one" ;

        double time(time) ;
		time:long_name = "record variable of size zero (no data yet)";

// global attributes:
                :Conventions = "NCAR-CSM" ;
                :history = "Thu May  4 17:30:29 2006: ncks -v one,lon,time /home/zender/nco/data/in.nc /home/zender/foo.nc\n",
                        "History global attribute.\n",
                        "" ;
                :julian_day = 200000.04 ;
                :RCS_Header = "$Header: /cvsroot/nco/nco/data/in_rec_zero.cdl,v 1.2 2006/05/05 00:42:30 zender Exp $" ;
data:

 lon = 0, 90, 180, 270 ;

 one = 1 ;
}