| Package | Description |
|---|---|
| visad.data |
Provides for importing data to and exporting data from VisAD.
|
| visad.data.amanda | |
| visad.data.avi | |
| visad.data.bio |
Provides data forms for handling common microscopy formats.
|
| visad.data.dods |
Supports read-only access to datasets on DODS servers by
importing such datasets as VisAD data objects.
|
| visad.data.fits |
Provides for importing a FITS dataset into VisAD.
|
| visad.data.gif |
Provides for importing GIF, JPEG and PNG files into VisAD.
|
| visad.data.gis | |
| visad.data.hdf5 | |
| visad.data.hdfeos |
Provides for importing an HDF-EOS dataset into VisAD.
|
| visad.data.hrit | |
| visad.data.in |
Supports the creation of form-specific, read-only, data-access packages
that import external dataset into VisAD as VisaD data objects.
|
| visad.data.jai | |
| visad.data.mcidas |
Provides for importing McIDAS AREA files
and McIDAS base map (OUTL) files into VisAD.
|
| visad.data.netcdf |
Provides for importing a netCDF dataset into VisAD and for exporting a VisAD
data object to a netCDF dataset.
|
| visad.data.netcdf.in |
Provides for importing a netCDF dataset into VisAD.
|
| visad.data.netcdf.out |
Provides for exporting a VisAD data object to a netCDF dataset.
|
| visad.data.qt | |
| visad.data.text | |
| visad.data.tiff | |
| visad.data.vis5d |
Provides for importing a Vis5D dataset into VisAD.
|
| visad.data.visad |
Provides for importing and exporting serialized Java object files
into and out of VisAD.
|
| visad.ss |
Provides a spreadsheet user interface for VisAD that can import data from
any form VisAD supports and compute new data objects using formulas by
utilizing the visad.formula package.
|
| visad.util |
Provides a collection of useful utilities, many of them
GUI widgets, to aid in VisAD application design.
|
| Class and Description |
|---|
| AreaImageAccessor
Knows how to read local satellite data to be used by a cache adaptor.
|
| AreaImageCacheAdapter
Adapts a
FlatField backed by a AreaImageAccessor to work
with a FlatFieldCache. |
| ArrayCache.DoubleResult |
| ArrayCache.FloatResult |
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| BadRepositoryException
Exception thrown when there's something wrong with the repository.
|
| BaseDataProcessor |
| CachedFlatField
This is a FloatField that caches to disk its float array.
|
| CacheStrategy |
| DataCacheManager
This provides a global cache for primitive array data
You access it via the singelton:
DataCacheManager.getCacheManager()
Client objects can store their data with:
Object cacheId = DataCacheManager.getCacheManager().addToCache(theData);
Where data can be 1D or 2D byte/float/int/double arrays
If the data changes then update the cache with:
DataCacheManager.getCacheManager().updateData(cacheId, newData);
When the client object is finalized or is finished with the data call:
DataCacheManager.getCacheManager().removeFromCache(cacheId);
When you want to access the data use one of:
DataCacheManager.getCacheManager().getByteArray1D(cacheId);
DataCacheManager.getCacheManager().getByteArray2D(cacheId);
DataCacheManager.getCacheManager().getFloatArray1D(cacheId);
DataCacheManager.getCacheManager().getFloatArray2D(cacheId);
DataCacheManager.getCacheManager().getShortArray1D(cacheId);
DataCacheManager.getCacheManager().getShortArray2D(cacheId);
DataCacheManager.getCacheManager().getIntArray1D(cacheId);
DataCacheManager.getCacheManager().getIntArray2D(cacheId);
DataCacheManager.getCacheManager().getDoubleArray1D(cacheId);
DataCacheManager.getCacheManager().getDoubleArray2D(cacheId);
The cachemanager will keep the data arrays in memory until the total size is greater than getMaxSize().
|
| DataNode
Abstract class for adapting a VisAD data object to the "Visitor"
design pattern.
|
| DataProcessor
A hierarchy of methods used by
BaseDataProcessor
to write an arbitrary Data object. |
| DataRange
Holds a simple min/max range
|
| DataVisitor
Abstract class for visiting a VisAD data object.
|
| DataWriter
Standard routines used to write a
Data object. |
| EmptyDataProcessor
A do-nothing DataProcessor implementation.
|
| FileAccessor
Exchange data with a "file".
|
| FlatFieldCache
Memory cache for
FlatFields. |
| FlatFieldCacheAccessor |
| FormFamily
A interior node in the data form hierarchy for the storage of
persistent data objects.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| FunctionFormFamily |
| LinkedDataSource
A class for linking a data source (e.g., a URL) with a DataReference.
|
| Repository
A repository of persistent data objects.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormBlockReader
FormBlockReader is the VisAD interface for reading in
subsets of data, or "blocks," from a data file.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| FormProgressInformer
FormProgressInformer is the VisAD interface for checking
the current operation's progress from a file form.
|
| MetadataReader
MetadataReader is the VisAD interface for reading in
a file's associated metadata (other than pixel data).
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormBlockReader
FormBlockReader is the VisAD interface for reading in
subsets of data, or "blocks," from a data file.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| FormProgressInformer
FormProgressInformer is the VisAD interface for checking
the current operation's progress from a file form.
|
| MetadataReader
MetadataReader is the VisAD interface for reading in
a file's associated metadata (other than pixel data).
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| CacheStrategy |
| FileAccessor
Exchange data with a "file".
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFamily
A interior node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| FunctionFormFamily |
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| FileAccessor
Exchange data with a "file".
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| FileAccessor
Exchange data with a "file".
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Class and Description |
|---|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormBlockReader
FormBlockReader is the VisAD interface for reading in
subsets of data, or "blocks," from a data file.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| FormProgressInformer
FormProgressInformer is the VisAD interface for checking
the current operation's progress from a file form.
|
| MetadataReader
MetadataReader is the VisAD interface for reading in
a file's associated metadata (other than pixel data).
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormBlockReader
FormBlockReader is the VisAD interface for reading in
subsets of data, or "blocks," from a data file.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| FormProgressInformer
FormProgressInformer is the VisAD interface for checking
the current operation's progress from a file form.
|
| MetadataReader
MetadataReader is the VisAD interface for reading in
a file's associated metadata (other than pixel data).
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| FileAccessor
Exchange data with a "file".
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFamily
A interior node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| FunctionFormFamily |
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| BaseDataProcessor |
| DataProcessor
A hierarchy of methods used by
BaseDataProcessor
to write an arbitrary Data object. |
| DataWriter
Standard routines used to write a
Data object. |
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|
| Class and Description |
|---|
| BadFormException
Exception thrown when the form that the data is in is incorrect.
|
| Form
A leaf-node in the data form hierarchy for the storage of
persistent data objects.
|
| Class and Description |
|---|
| FormFileInformer
FormFileInformer is the VisAD interface for checking system- and
file-specific data from a file Form.
|
| FormNode
A node in the data form hierarchy for the storage of persistent data.
|