netcdf-cxx4/cxx4/testx.cdl
Ed Hartnett 965b61a671 new
2011-08-17 18:56:14 +00:00

23 lines
473 B
Plaintext

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;
}