mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
b2c05fa4d0
ncgen: nan bug made semicolons optional after type decls libncdap{3,4}: revamped the NC surrogate to better match with libsrc libdispatch: Added a new_nc function to the dispatch table; its purpose is to allow hierarchical use of NC compatible data structures. libsrc: cleaned up the NC structure by removing drno field general: removed --with-oc options
17 lines
309 B
Plaintext
17 lines
309 B
Plaintext
netcdf ref_tst_nans {
|
|
dimensions:
|
|
dim = 3 ;
|
|
variables:
|
|
float fvar(dim) ;
|
|
fvar:_FillValue = NaNf ;
|
|
fvar:att = -Infinityf, NaNf, Infinityf ;
|
|
double dvar(dim) ;
|
|
dvar:_FillValue = NaN ;
|
|
dvar:att = -Infinity, NaN, Infinity ;
|
|
data:
|
|
|
|
fvar = -Infinityf, _, Infinityf ;
|
|
|
|
dvar = -Infinity, _, Infinity ;
|
|
}
|