mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
netcdf test {
|
|
dimensions:
|
|
fakeDim0 = 5 ;
|
|
fakeDim1 = 3 ;
|
|
fakeDim2 = 5 ;
|
|
fakeDim3 = 3 ;
|
|
fakeDim4 = 5 ;
|
|
fakeDim5 = 3 ;
|
|
fakeDim6 = 7 ;
|
|
fakeDim7 = 7 ;
|
|
fakeDim8 = 5 ;
|
|
fakeDim9 = 3 ;
|
|
variables:
|
|
int SDS_DFNT_INT32(fakeDim0) ;
|
|
uint SDS_DFNT_UINT32(fakeDim1) ;
|
|
int SDS_DFNT_INT16(fakeDim2) ;
|
|
uint SDS_DFNT_UINT16(fakeDim3) ;
|
|
int SDS_DFNT_INT8(fakeDim4) ;
|
|
ubyte SDS_DFNT_UINT8(fakeDim5) ;
|
|
double SDS_DFNT_FLOAT32(fakeDim6) ;
|
|
double SDS_DFNT_FLOAT64(fakeDim7) ;
|
|
ubyte SDS_DFNT_CHAR8(fakeDim8) ;
|
|
ubyte SDS_DFNT_UCHAR8(fakeDim9) ;
|
|
data:
|
|
|
|
SDS_DFNT_INT32 = 0, 2048, 4096, 6144, 8192 ;
|
|
|
|
SDS_DFNT_UINT32 = 0, 4096, 8192 ;
|
|
|
|
SDS_DFNT_INT16 = 0, 2048, 4096, 6144, 8192 ;
|
|
|
|
SDS_DFNT_UINT16 = 0, 4096, 8192 ;
|
|
|
|
SDS_DFNT_INT8 = 0, 2048, 4096, 6144, 8192 ;
|
|
|
|
SDS_DFNT_UINT8 = 0, 1, 2 ;
|
|
|
|
SDS_DFNT_FLOAT32 = 1, 0.999950000416665, 0.999800006666578,
|
|
0.999550033748988, 0.999200106660978, 0.998750260394966, 0.998200539935204 ;
|
|
|
|
SDS_DFNT_FLOAT64 = 1, 0.999950000416665, 0.999800006666578,
|
|
0.999550033748988, 0.999200106660978, 0.998750260394966, 0.998200539935204 ;
|
|
|
|
SDS_DFNT_CHAR8 = 0, 1, 2, 3, 4 ;
|
|
|
|
SDS_DFNT_UCHAR8 = 0, 1, 2 ;
|
|
}
|