mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
24 lines
1.3 KiB
Plaintext
24 lines
1.3 KiB
Plaintext
netcdf test {
|
|
types:
|
|
compound data_t {
|
|
int i ;
|
|
double f(10) ;
|
|
}; // data_t
|
|
compound foo_t {
|
|
int j ;
|
|
int i(3) ;
|
|
data_t data ;
|
|
}; // foo_t
|
|
compound ralph_record_t {
|
|
ubyte b ;
|
|
foo_t foo ;
|
|
}; // ralph_record_t
|
|
ralph_record_t(*) ralph_t ;
|
|
variables:
|
|
ralph_t ralph ;
|
|
data:
|
|
|
|
ralph =
|
|
{{0, {1, {0, 2048, 4096}, {2, {1, 0.999950000416665, 0.999800006666578, 0.999550033748988, 0.999200106660978, 0.998750260394966, 0.998200539935204, 0.99755100025328, 0.996801706302619, 0.995952733011994}}}}, {1, {3, {0, 2048, 4096}, {5, {1, 0.999950000416665, 0.999800006666578, 0.999550033748988, 0.999200106660978, 0.998750260394966, 0.998200539935204, 0.99755100025328, 0.996801706302619, 0.995952733011994}}}}, {2, {8, {0, 2048, 4096}, {13, {1, 0.999950000416665, 0.999800006666578, 0.999550033748988, 0.999200106660978, 0.998750260394966, 0.998200539935204, 0.99755100025328, 0.996801706302619, 0.995952733011994}}}}, {3, {21, {0, 2048, 4096}, {34, {1, 0.999950000416665, 0.999800006666578, 0.999550033748988, 0.999200106660978, 0.998750260394966, 0.998200539935204, 0.99755100025328, 0.996801706302619, 0.995952733011994}}}}, {4, {55, {0, 2048, 4096}, {89, {1, 0.999950000416665, 0.999800006666578, 0.999550033748988, 0.999200106660978, 0.998750260394966, 0.998200539935204, 0.99755100025328, 0.996801706302619, 0.995952733011994}}}}} ;
|
|
}
|