mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
16 lines
155 B
Plaintext
16 lines
155 B
Plaintext
|
netcdf test_fill.nc {
|
||
|
variables:
|
||
|
ubyte uv8 ;
|
||
|
short v16 ;
|
||
|
uint uv32 ;
|
||
|
uv32:_FillValue = 17U ;
|
||
|
|
||
|
data:
|
||
|
|
||
|
uv8 = 240 ;
|
||
|
|
||
|
v16 = 32700 ;
|
||
|
|
||
|
uv32 = 111000 ;
|
||
|
}
|