mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
15 lines
153 B
Plaintext
15 lines
153 B
Plaintext
|
netcdf test_fill {
|
||
|
variables:
|
||
|
ubyte uv8 ;
|
||
|
short v16 ;
|
||
|
int uv32 ;
|
||
|
int uv32:_FillValue = 17 ;
|
||
|
data:
|
||
|
|
||
|
uv8 = 240 ;
|
||
|
|
||
|
v16 = 32700 ;
|
||
|
|
||
|
uv32 = 111000 ;
|
||
|
}
|