O.K, with a lot of help from the mail group I was able to import my
netcdf data and convert double positions into floats into a series....
However, I think that there is a bug in the netCDF import routines.
Example, I have two series, one of len 2 and one of len 10. However, if
I import the data and use select I see that were of length 10. Example
dimensions:
dimensionality = 2 ;
two = 2 ;
Time = UNLIMITED ; // (10 currently)
nx = 30 ;
ny = 25 ;
variables:
double TimeStamps(Time, two) ;
int TimeCents(Time) ;
double reallocations(dimensionality, ny, nx) ;
reallocations:field = "real_positions, scalar, series" ;
float densityrecv(Time, ny, nx) ;
densityrecv:field = "densityrecv, scalar, series" ;
both real_positions and densityrecv are of len 10. Furthermore, the
data in both of these are not correct. If I change the order of
"real_positions" to be ny,nx,2 and call it a vector I get very different
values for densityrecv.
Is this a bug or a feature.
Thanks
Matt