| Package | Description |
|---|---|
| edu.wisc.ssec.mcidas | |
| visad.data |
Provides for importing data to and exporting data from VisAD.
|
| visad.data.mcidas |
Provides for importing McIDAS AREA files
and McIDAS base map (OUTL) files into VisAD.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
AreaFileFactory.copyAreaFile(java.lang.String source,
java.lang.String outputFile)
Copy an area file from one place to another
|
static void |
AreaFileFactory.copyAreaFile(java.lang.String source,
java.lang.String outputFile,
boolean verbose)
Copy an area file from one place to another
|
static AreaFile |
AreaFileFactory.getAreaFileInstance(java.lang.String src)
Create an initialized
AreaFile instance. |
static AreaFile |
AreaFileFactory.getAreaFileInstance(java.lang.String fpath,
int startLine,
int numLines,
int lineMag,
int startElem,
int numEles,
int eleMag,
int band)
|
static AreaFile |
AreaFileFactory.getAreaFileInstance(java.net.URL url)
Create an initialized
AreaFile instance. |
int[][][] |
AreaFile.getData()
Read the AREA data.
|
int[][][] |
AreaFile.getData(int[][][] target)
Read AREA file data by reference.
|
int[][] |
AreaFile.getData(int lineNumber,
int eleNumber,
int numLines,
int numEles)
Deprecated.
Use one of the factory methods from
AreaFileFactory
with the appropriate subsetting parameters. |
int[][] |
AreaFile.getData(int lineNumber,
int eleNumber,
int numLines,
int numEles,
int bandNumber)
Deprecated.
Use one of the factory methods from
AreaFileFactory
with the appropriate subsetting parameters. |
java.util.ArrayList |
AreaDirectoryList.getDirs()
returns the directory blocks for the requested images.
|
float[][][] |
AreaFile.getFloatData()
Read the AREA file and return the contents as floats.
|
AREAnav |
AreaFile.getNavigation()
Get the navigation, and pre-set it
for the ImageStart and Res (from Directory block), and
the file start (0,0), and Mag (1,1).
|
AreaDirectory[][] |
AreaDirectoryList.getSortedDirs()
returns the directory blocks for the requested images,
sorted into an array of AreaDirectories by time and
then bands as the second dimenison, if multiple directories
with the same ADDE position number are returned.
|
int |
AreaDirectory.getValue(int pointer)
Return a specific value from the directory
|
void |
AreaFile.save(java.lang.String outputFile)
Save this AreaFile to the output location
|
void |
AreaFile.save(java.lang.String outputFile,
boolean verbose)
Save this AreaFile to the output location
|
| Constructor and Description |
|---|
AreaDirectory(AreaDirectory directory)
Create an AreaDirectory from another AreaDirectory object.
|
AreaDirectory(int[] dirblock)
Create an AreaDirectory from the raw block of data of
an AreaFile.
|
AreaDirectoryList(java.lang.String imageSource)
creates an AreaDirectory object that allows reading
of McIDAS 'area' file format image data.
|
AreaDirectoryList(java.net.URL url)
creates an AreaDirectory object that allows reading
of the directory of McIDAS 'area' files from a URL
|
AreaFile(java.lang.String source)
Creates an AreaFile object that allows reading
of McIDAS 'area' file format image data.
|
AreaFile(java.lang.String filename,
java.applet.Applet parent)
creates an AreaFile object that allows reading
of McIDAS 'area' file format image data from an applet
|
AreaFile(java.lang.String source,
int startLine,
int numLines,
int lineMag,
int startElem,
int numEles,
int eleMag,
int band)
Create a subsetted instance.
|
AreaFile(java.net.URL url)
create an
AreaFile that allows reading of McIDAS 'area'
file format image data from a URL with a protocol of either
file or ADDE. |
| Modifier and Type | Method and Description |
|---|---|
protected int[][][] |
AreaImageAccessor.getAreaData() |
| Constructor and Description |
|---|
AREACoordinateSystem(AreaFile af)
create a AREA coordinate system from the Area file's
directory and navigation blocks.
|
AREACoordinateSystem(RealTupleType ref,
AreaFile af)
create a AREA coordinate system from the Area file's
directory and navigation blocks.
|