netcdf-c/ncdump/expected4/ref_tst_nans.dmp
Dennis Heimbigner b2c05fa4d0 fixed:
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
2010-11-09 22:53:03 +00:00

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 ;
}