[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fw: 980223: problem with nc_redef



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 = _, _, _ ;
>}
>
>