mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-11 16:40:36 +08:00
13 lines
151 B
Plaintext
13 lines
151 B
Plaintext
|
netcdf tmp_purezarr {
|
||
|
dimensions:
|
||
|
.zdim_2 = 2 ;
|
||
|
.zdim_5 = 5 ;
|
||
|
variables:
|
||
|
int i(.zdim_2, .zdim_5) ;
|
||
|
data:
|
||
|
|
||
|
i =
|
||
|
_, _, _, _, _,
|
||
|
_, _, _, _, _ ;
|
||
|
}
|