Unidata - To provide the data services, tools, and cyberinfrastructure leadership that advance Earth system science, enhance educational opportunities, and broaden participation. Unidata
         
  advanced  
 

[visad] Question on TupleTypes

Hello,

I'm using VisAD to model database tables and have a question.

Let a db table have an id, an x and an y coord, and a few other fields
like temperature, pressure etc.

I create a MathType like

(id -> (x,y,temp,pressure,...)

(that is RealType -> (RealTupleTypes)).

Used a Linear1DSet as domain of a FlatField and got the points all right
on the display.  Here a snippet:

TupleType range_tuple = ...;

RealType index = RealType.getRealType( "id" );
FunctionType func_i_xy = new FunctionType( index, range_tuple );

Set index_set = new Integer1DSet(index, count);
FlatField vals_ff = new FlatField( func_i_xy, index_set );

vals_ff.setSamples( vals);

Now I have another type of geometry, rather than single points, much like
the 2D Set found in Region.java, which defines a polygon:

int[][] tris = DelaunayCustom.fill(samples);
DelaunayCustom delaunay = new DelaunayCustom(samples, tris);

Irregular2DSet region =
      new Irregular2DSet(earth, samples, null, null, null, delaunay);

which I also want to fill.

So I changed the type to

(id ->( (x,y) , temp, pressure, ...))

(x,y) is a RealTupleType.SpatialCartesian2DTuple, whereas the other fields
are RealTypes (defined by float[][]).

To the question: what method setSample do I need? If that makes sense at
all. Or do I have to wrap ((x,y),temp,pressure,...) in some visad.Data
object?

Thanks in advance,

Cheers,

Ugo


 
 
  Contact Us     Site Map     Search     Terms and Conditions     Privacy Policy     Participation Policy
 
National Science Foundation (NSF) UCAR Community Programs   Unidata is a member of the UCAR Community Programs, is managed by the University Corporation for Atmospheric Research, and is sponsored by the National Science Foundation.
P.O. Box 3000     Boulder, CO 80307-3000 USA     Tel: 303-497-8643     Fax: 303-497-8690