mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
31 lines
483 B
Plaintext
31 lines
483 B
Plaintext
netcdf synth2 {
|
|
dimensions:
|
|
Q1 = 8 ;
|
|
Q1.v2_1 = 4 ;
|
|
Q1.v4_1 = 2 ;
|
|
variables:
|
|
short Q1.v2(Q1, Q1.v2_1) ;
|
|
float Q1.v4(Q1, Q1.v4_1) ;
|
|
data:
|
|
|
|
Q1.v2 =
|
|
116, 216, 316, 416,
|
|
516, 616, 716, 816,
|
|
916, 1016, 1116, 1216,
|
|
1316, 1416, 1516, 1616,
|
|
1716, 1816, 1916, 2016,
|
|
2116, 2216, 2316, 2416,
|
|
2516, 2616, 2716, 2816,
|
|
2916, 3016, 3116, 3216 ;
|
|
|
|
Q1.v4 =
|
|
1320, 2320,
|
|
3320, 4320,
|
|
5320, 6320,
|
|
7320, 8320,
|
|
9320, 10320,
|
|
11320, 12320,
|
|
13320, 14320,
|
|
15320, 16320 ;
|
|
}
|