| Package | Description |
|---|---|
| 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.
|
| Modifier and Type | Class and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Constructor and Description |
|---|
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)
|
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
protected ucar.netcdf.Dimension[] |
VisADAdapter.defineLinearSetDims(GriddedSet set)
Define the netCDF dimensions of a VisAD LinearSet, including any
necessary coordinate variables..
|
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static GriddedSet |
DataUtility.createGriddedSet(FlatField field,
boolean copy)
Creates a GriddedSet from a FlatField.
|