mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-23 16:59:54 +08:00
15 lines
288 B
Plaintext
15 lines
288 B
Plaintext
netcdf synth8 {
|
|
types:
|
|
float(*) Q2_t ;
|
|
compound Q1_record_t {
|
|
Q2_t Q2 ;
|
|
}; // Q1_record_t
|
|
Q1_record_t(*) Q1_t ;
|
|
variables:
|
|
Q1_t Q1 ;
|
|
data:
|
|
|
|
Q1 =
|
|
{{{1320, 2320, 3320, 4320}}, {{5320, 6320, 7320, 8320}}, {{9320, 10320, 11320, 12320}}, {{13320, 14320, 15320, 16320}}} ;
|
|
}
|