gov.noaa.pmel.sgt.dm
Interface SGTTuple

All Superinterfaces:
SGTData
All Known Implementing Classes:
SimpleTuple

public interface SGTTuple
extends SGTData

Provides access to tuple organized data of either 2 or 3 dimensions. All arrays that are provided must be of equal length. Tuples can be used to provide un-structured 3-D data that can then be trianglulated to enable area fill or contouring. 3-d tuples are also useful in the construction of vectors.

Since:
2.x

Method Summary
 double[] getAssociatedData()
           
 GeoDateArray getGeoDateArray()
          Get the GeoDateArray object.
 int getSize()
           
 GeoDate[] getTimeArray()
           
 double[] getXArray()
           
 double[] getYArray()
           
 double[] getZArray()
           
 SGTMetaData getZMetaData()
           
 Range2D getZRange()
           
 boolean hasAssociatedData()
           
 
Methods inherited from interface gov.noaa.pmel.sgt.dm.SGTData
addPropertyChangeListener, copy, getId, getKeyTitle, getTitle, getXMetaData, getXRange, getYMetaData, getYRange, isXTime, isYTime, removePropertyChangeListener
 

Method Detail

getXArray

double[] getXArray()

getYArray

double[] getYArray()

getZArray

double[] getZArray()

getSize

int getSize()

getTimeArray

GeoDate[] getTimeArray()

getGeoDateArray

GeoDateArray getGeoDateArray()
Get the GeoDateArray object.


getAssociatedData

double[] getAssociatedData()

hasAssociatedData

boolean hasAssociatedData()

getZMetaData

SGTMetaData getZMetaData()

getZRange

Range2D getZRange()