File: putatt.cdl

package info (click to toggle)
ruby-netcdf 0.6.6-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,184 kB
  • ctags: 882
  • sloc: ansic: 3,968; ruby: 1,661; makefile: 9; csh: 6
file content (23 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
netcdf tmp {
dimensions:
	x = 5 ;
variables:
	float x(x) ;
		x:long_name = "test variable" ;
		x:int_att = 123s ;
		x:float_att = 0.333333333333333 ;
		x:float_array = 0.1, 0.2, 30. ;
		x:sfloat_narray = 0.f, 0.3333333f, 0.6666667f ;
		x:float_narray = 0., 1., 2. ;
		x:sint_narray = 0s, 1s, 2s ;
		x:int2float = 10. ;
		x:changed = "changed to text" ;

// global attributes:
		:history = "2001-12-23" ;
		:int_att = 123s ;
		:sfloat_att = 0.3333333f ;
data:

 x = _, _, _, _, _ ;
}