NOTICE: This version of the NSF Unidata web site (archive.unidata.ucar.edu) is no longer being updated.
Current content can be found at unidata.ucar.edu.
To learn about what's going on, see About the Archive Site.
Hi Dave, > My first goal is create a program that can accept a list of x,y,z > coordinates and some sort of value, like temperature mapped to RGB, in > perhaps 4 1-dimensional arrays. You'd create a FlatField with MathType something like: (index -> (x, y, z, temp)) Wtih domain Set like Integer1DSet(index, N) where n is the number of points. You'd pass your 4 arrays in something like: float[][] values = {xarray, yarray, zarray, temparray}; field.setSamples(values, false); // false for don't copy array Good luck, Bill
visad
archives: