mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
19 lines
337 B
Plaintext
19 lines
337 B
Plaintext
|
netcdf nczarr2zarr {
|
||
|
dimensions:
|
||
|
.zdim_8 = 8 ;
|
||
|
variables:
|
||
|
int v(.zdim_8, .zdim_8) ;
|
||
|
v:_FillValue = -1 ;
|
||
|
data:
|
||
|
|
||
|
v =
|
||
|
_, _, _, _, _, _, _, _,
|
||
|
_, _, _, _, _, _, _, _,
|
||
|
_, _, _, _, _, _, _, _,
|
||
|
_, _, _, _, _, _, _, _,
|
||
|
_, _, _, _, 0, 1, 2, 3,
|
||
|
_, _, _, _, 4, 5, 6, 7,
|
||
|
_, _, _, _, 8, 9, 10, 11,
|
||
|
_, _, _, _, 12, 13, 14, 15 ;
|
||
|
}
|