File: cdl_header.txt

package info (click to toggle)
pnetcdf 1.14.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,812 kB
  • sloc: ansic: 85,298; f90: 10,707; fortran: 9,283; cpp: 8,864; makefile: 3,084; perl: 2,833; sh: 2,538; yacc: 1,227; lex: 216
file content (26 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (2)
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
netcdf cdl_header {
// file format: CDF-5 (big variables)
dimensions:
	Y = 4 ;
	time = UNLIMITED ; // (1 currently)
	X = 10 ;
	chars = 101 ;
variables:
	int var_int(Y, X) ;
		var_int:FieldType = 104 ;
		var_int:MemoryOrder = "XY " ;
	float scalar_var ;
		scalar_var:units = "K" ;
	double time(time) ;
		time:long_name = "time" ;
		time:units = "days since 0001-01-01 00:00:00" ;
		time:calendar = "noleap" ;
		time:bounds = "time_bnds" ;
	char date_written(time, chars) ;

// global attributes:
		:TITLE = " OUTPUT FROM A CLIMATE MODEL Va.b.c " ;
		:EMPTY_STR = "" ;
		:SOME_INT = 0 ;
		:SOME_FLOAT = 1.f, 2.f ;
}