File: testx.cdl

package info (click to toggle)
netcdf-cxx 4.3.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,016 kB
  • ctags: 1,015
  • sloc: sh: 11,553; cpp: 8,167; xml: 173; ansic: 134; makefile: 108
file content (22 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
netcdf firstFile {
types:
  compound compoundType_3 {
    double member3(100000) ;
  }; // compoundType_3
dimensions:
	dim3 = 100 ; // (1000 currently)
variables:
	compoundType_3 var_3(dim3) ;
		//var_3:_Storage = "chunked" ;
		//var_3:_ChunkSizes = 1 ;
		//var_3:_DeflateLevel = 1 ;
		//var_3:_Shuffle = "true" ;
		//var_3:_Fletcher32 = "true" ;
		var_3:_FillValue = "1" ;

// global attributes:
		:_Format = "netCDF-4" ;
data:

 var_3 = 1, 2, 5, 10, 17, 0, 0, 0, 0, 0;
}