|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use GriddedSet | |
---|---|
visad | The core VisAD package, providing support for VisAD's Data & MathType hierarchy, as well as for VisAD Displays and remote collaboration. |
visad.data | Provides for importing data to and exporting data from VisAD. |
visad.data.dods | Supports read-only access to datasets on DODS servers by importing such datasets as VisAD data objects. |
visad.data.netcdf.out | Provides for exporting a VisAD data object to a netCDF dataset. |
visad.data.visad | Provides for importing and exporting serialized Java object files into and out of VisAD. |
visad.data.visad.object | |
visad.math | |
visad.python | |
visad.util | Provides a collection of useful utilities, many of them GUI widgets, to aid in VisAD application design. |
Uses of GriddedSet in visad |
---|
Subclasses of GriddedSet in visad | |
---|---|
class |
Gridded1DDoubleSet
Gridded1DDoubleSet is a Gridded1DSet with double-precision samples. |
class |
Gridded1DSet
Gridded1DSet represents a finite set of samples of R. |
class |
Gridded2DDoubleSet
Gridded2DDoubleSet is a Gridded2DSet with double-precision samples. |
class |
Gridded2DSet
Gridded2DSet represents a finite set of samples of R^2. |
class |
Gridded3DDoubleSet
Gridded3DDoubleSet is a Gridded3DSet with double-precision samples. |
class |
Gridded3DSet
Gridded3DSet represents a finite set of samples of R^3. |
class |
Integer1DSet
Integer1DSet represents a finite set of samples of R at an integer lattice based at the origin (i.e, 0, 1, 2, ..., length-1). |
class |
Integer2DSet
Integer2DSet represents a finite set of samples of R^2 at an integer lattice based at the origin. |
class |
Integer3DSet
Integer3DSet represents a finite set of samples of R^3 at an integer lattice based at the origin. |
class |
IntegerNDSet
IntegerNDSet represents a finite set of samples of R^n at an integer lattice based at the origin. |
class |
Linear1DSet
Linear1DSet represents a finite set of samples of R in an arithmetic progression. |
class |
Linear2DSet
Linear2DSet represents a finite set of samples of R^2 in a cross product of two arithmetic progressions. |
class |
Linear3DSet
Linear3DSet represents a finite set of samples of R^3 in a cross product of three arithmetic progressions. |
class |
LinearLatLonSet
LinearLatLonSet represents a finite set of samples of (Latitude, Longitude) in a cross product of two arithmetic progressions. |
class |
LinearNDSet
LinearNDSet represents a finite set of samples of R^Dimension in a cross product of arithmetic progressions. |
Methods in visad that return GriddedSet | |
---|---|
static GriddedSet |
GriddedSet.create(MathType type,
float[][] samples,
int[] lengths)
Abreviated Factory method for creating the proper gridded set (Gridded1DSet, Gridded2DSet, etc.). |
static GriddedSet |
GriddedSet.create(MathType type,
float[][] samples,
int[] lengths,
CoordinateSystem coord_sys,
Unit[] units,
ErrorEstimate[] errors)
General Factory method for creating the proper gridded set (Gridded1DSet, Gridded2DSet, etc.). |
static GriddedSet |
GriddedSet.create(MathType type,
float[][] samples,
int[] lengths,
CoordinateSystem coord_sys,
Unit[] units,
ErrorEstimate[] errors,
boolean copy)
General Factory method for creating the proper gridded set (Gridded1DSet, Gridded2DSet, etc.). |
static GriddedSet |
GriddedSet.create(MathType type,
float[][] samples,
int[] lengths,
CoordinateSystem coord_sys,
Unit[] units,
ErrorEstimate[] errors,
boolean copy,
boolean test)
General Factory method for creating the proper gridded set (Gridded1DSet, Gridded2DSet, etc.). |
static GriddedSet |
IntegerNDSet.create(MathType type,
int[] lengths)
Abreviated factory method for creating the proper integer set (Integer1DSet, Integer2DSet, etc.). |
static GriddedSet |
IntegerNDSet.create(MathType type,
int[] lengths,
CoordinateSystem coord_sys,
Unit[] units,
ErrorEstimate[] errors)
General factory method for creating the proper integer set (Integer1DSet, Integer2DSet, etc.). |
protected static GriddedSet |
EmpiricalCoordinateSystem.ensureNoCoordinateSystem(GriddedSet griddedSet)
Ensures that a GriddedSet doesn't have a default CoordinateSystem. |
protected static GriddedSet |
EmpiricalCoordinateSystem.ensureNoCoordinateSystem(GriddedSet griddedSet,
boolean copy,
boolean check)
Ensures that a GriddedSet doesn't have a default CoordinateSystem. |
GriddedSet |
GridCoordinateSystem.getGriddedSet()
Returns the GriddedSet associated with this instance. |
GriddedSet |
EmpiricalCoordinateSystem.getReferenceSet()
Returns the Set of reference coordinates. |
GriddedSet |
EmpiricalCoordinateSystem.getWorldSet()
Returns the Set of world coordinates. |
Methods in visad with parameters of type GriddedSet | |
---|---|
protected static GriddedSet |
EmpiricalCoordinateSystem.ensureNoCoordinateSystem(GriddedSet griddedSet)
Ensures that a GriddedSet doesn't have a default CoordinateSystem. |
protected static GriddedSet |
EmpiricalCoordinateSystem.ensureNoCoordinateSystem(GriddedSet griddedSet,
boolean copy,
boolean check)
Ensures that a GriddedSet doesn't have a default CoordinateSystem. |
Constructors in visad with parameters of type GriddedSet | |
---|---|
EmpiricalCoordinateSystem(GriddedSet world,
GriddedSet reference)
Constructs from two GriddedSet-s. |
|
EmpiricalCoordinateSystem(GriddedSet world,
GriddedSet reference,
boolean copy,
boolean check)
Constructs from two GriddedSet-s. |
|
GridCoordinateSystem(GriddedSet s)
construct a CoordinateSystem for grid coordinates (e.g., (row, column, level) in 3-D) relative to the value space of set; for example, if satellite pixel locations are defined by explicit latitudes and longitude, these could be used to construct a Gridded2DSet which could then be used to construct a GridCoordinateSystem for (ImageLine, ImageElement) coordinates relative to reference coordinates (Latitude, Longitude) |
Uses of GriddedSet in visad.data |
---|
Methods in visad.data with parameters of type GriddedSet | |
---|---|
void |
EmptyDataProcessor.processGriddedSet(SetType type,
float[][] samples,
int[] lengths,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Object token)
|
void |
DataProcessor.processGriddedSet(SetType type,
float[][] samples,
int[] lengths,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Object token)
|
abstract void |
BaseDataProcessor.processGriddedSet(SetType type,
float[][] samples,
int[] lengths,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Object token)
|
Uses of GriddedSet in visad.data.dods |
---|
Methods in visad.data.dods that return GriddedSet | |
---|---|
GriddedSet |
VectorAdapter.griddedSet(dods.dap.PrimitiveVector vector)
Throws a VisADException . |
abstract GriddedSet |
NumericVectorAdapter.griddedSet(dods.dap.PrimitiveVector vector)
Returns the VisAD GriddedSet corresponding to the metadata of
the DODS primitive vector used during construction of this instance and
the data values of a compatible DODS primitive vector. |
GriddedSet |
FloatVectorAdapter.griddedSet(dods.dap.PrimitiveVector vector)
Returns the VisAD GriddedSet corresponding to the metadata of
the DODS primitive vector used during construction of this instance and
the data values of a compatible DODS primitive vector. |
GriddedSet |
Float64VectorAdapter.griddedSet(dods.dap.PrimitiveVector vector)
Returns the VisAD GriddedSet corresponding to the metadata of
the DODS primitive vector used during construction of this instance and
the data values of a compatible DODS primitive vector. |
Uses of GriddedSet in visad.data.netcdf.out |
---|
Methods in visad.data.netcdf.out with parameters of type GriddedSet | |
---|---|
protected ucar.netcdf.Dimension[] |
VisADAdapter.defineLinearSetDims(GriddedSet set)
Define the netCDF dimensions of a VisAD LinearSet, including any necessary coordinate variables.. |
Uses of GriddedSet in visad.data.visad |
---|
Methods in visad.data.visad with parameters of type GriddedSet | |
---|---|
void |
BinaryWriter.processGriddedSet(SetType type,
float[][] samples,
int[] lengths,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Object token)
|
void |
BinarySizer.processGriddedSet(SetType type,
float[][] samples,
int[] lengths,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Object token)
|
Uses of GriddedSet in visad.data.visad.object |
---|
Methods in visad.data.visad.object that return GriddedSet | |
---|---|
static GriddedSet |
BinaryLinearSet.read(BinaryReader reader,
byte dataType)
|
static GriddedSet |
BinaryIntegerSet.read(BinaryReader reader,
byte dataType)
|
static GriddedSet |
BinaryGriddedSet.read(BinaryReader reader,
byte dataType)
|
static GriddedSet |
BinaryGriddedDoubleSet.read(BinaryReader reader,
byte dataType)
|
Methods in visad.data.visad.object with parameters of type GriddedSet | |
---|---|
static void |
BinaryGriddedDoubleSet.write(BinaryWriter writer,
SetType type,
double[][] samples,
int[] lengths,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
byte dataType,
Object token)
|
static void |
BinaryLinearSet.write(BinaryWriter writer,
SetType type,
double[] firsts,
double[] lasts,
int[] lengths,
Linear1DSet[] comps,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
byte dataType,
Object token)
|
static void |
BinaryGriddedSet.write(BinaryWriter writer,
SetType type,
float[][] samples,
int[] lengths,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
byte dataType,
Object token)
|
static void |
BinaryIntegerSet.write(BinaryWriter writer,
SetType type,
int[] lengths,
Integer1DSet[] comps,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
byte dataType,
Object token)
|
static void |
BinaryGriddedSet.writeDependentData(BinaryWriter writer,
SetType type,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
Object token)
|
static void |
BinaryGriddedDoubleSet.writeDependentData(BinaryWriter writer,
SetType type,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
Object token)
|
static void |
BinaryIntegerSet.writeDependentData(BinaryWriter writer,
SetType type,
Integer1DSet[] comps,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
Object token)
|
static void |
BinaryLinearSet.writeDependentData(BinaryWriter writer,
SetType type,
Linear1DSet[] comps,
CoordinateSystem cs,
Unit[] units,
ErrorEstimate[] errors,
GriddedSet set,
Class canonicalClass,
Object token)
|
Uses of GriddedSet in visad.math |
---|
Methods in visad.math with parameters of type GriddedSet | |
---|---|
static FlatField |
FFT.fourierTransform(Field field,
boolean forward,
FunctionType ftype,
GriddedSet domain_set,
CoordinateSystem range_coord_sys,
Set[] range_sets,
Unit[] units)
return Fourier Transform of field, use FFT if domain dimension(s) are powers of 2 |
Uses of GriddedSet in visad.python |
---|
Methods in visad.python with parameters of type GriddedSet | |
---|---|
static float[][] |
JPythonMethods.getEarthLocationPoints(GriddedSet domain)
Convert the domain to the reference earth located points |
static float[][] |
JPythonMethods.getLatLons(GriddedSet domain)
Convert the domain to the reference earth located points. |
static float[][] |
JPythonMethods.getLatLons(GriddedSet domain,
int[] index)
Convert the domain to the reference earth located points. |
static float[][][] |
JPythonMethods.getLatLons2D(GriddedSet domain)
Convert the domain to the reference earth located points. |
Uses of GriddedSet in visad.util |
---|
Methods in visad.util that return GriddedSet | |
---|---|
static GriddedSet |
DataUtility.createGriddedSet(FlatField field,
boolean copy)
Creates a GriddedSet from a FlatField. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |