This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
I tested this by building netcdf in NT 4, using VC++5.0 It worked ok; I sent the following to Harmut. He then rebuilt and it worked ok for him. Sorry, I deleted his reply. >Hi Harmut: > >If I run your test, then run ncdump (all on NT), I get the following output, >which seems ok to me. >Do you get something different? > > > >netcdf test { >dimensions: > Timesteps = UNLIMITED ; // (3 currently) >variables: > int Time(Timesteps) ; > float First_Var(Timesteps) ; > float Second_Var(Timesteps) ; >data: > > Time = 1, 2, 3 ; > > First_Var = 4.5, 5.5, 6.5 ; > > Second_Var = _, _, _ ; >} > >