| Package | Description |
|---|---|
| thredds.catalog.crawl | |
| thredds.inventory |
Abstractions for tracking dataset inventory using "managed files".
|
| ucar.nc2 |
The public API to the Java-NetCDF library.
|
| ucar.nc2.dataset |
An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data,
and NcML.
|
| ucar.nc2.dataset.conv |
Parses the information in netCDF datasets using Conventions, and extracts
information about coordinate systems.
|
| ucar.nc2.dods |
OpenDAP-netCDF library.
|
| ucar.nc2.dt |
Scientific data types package.
|
| ucar.nc2.dt.point |
Scientific data type "Point", collections of point observation data.
|
| ucar.nc2.dt.radial |
Scientific data type "Radial", uses spherical coordinate system.
|
| ucar.nc2.dt.trajectory |
Scientific data type "Trajectory".
|
| ucar.nc2.ft |
Scientific feature types package
|
| ucar.nc2.ft.grid | |
| ucar.nc2.ft.point.standard |
package ucar.nc2.ft.point.standard : Standard Implementation of Point Feature Types
|
| ucar.nc2.ft.radial | |
| ucar.nc2.iosp |
General classes for I/O Service Providers
|
| ucar.nc2.iosp.adde |
IOSP for ADDE servers
|
| ucar.nc2.iosp.cinrad |
I/O Service Provider for chinese met radar files
|
| ucar.nc2.iosp.dmsp |
I/O Service Provider for DMSP format files
|
| ucar.nc2.iosp.dorade |
I/O Service Provider for Dorade format files
|
| ucar.nc2.iosp.fysat | |
| ucar.nc2.iosp.gempak | |
| ucar.nc2.iosp.gini |
I/O Service Provider for GINI format files
|
| ucar.nc2.iosp.grads |
I/O Service Provider for GrADS Binary Grid Files.
|
| ucar.nc2.iosp.grib |
I/O Service Provider for GRIB-1 and GRIB-2 format files
|
| ucar.nc2.iosp.grid | |
| ucar.nc2.iosp.hdf4 |
I/O Service Provider for HDF-4 format files
|
| ucar.nc2.iosp.hdf5 |
I/O Service Provider for HDF-5 and netCDF-4 format files
|
| ucar.nc2.iosp.mcidas | |
| ucar.nc2.iosp.misc |
Miscellaneous IOSPs.
|
| ucar.nc2.iosp.netcdf3 |
I/O Service Provider for NetCDF-3 format files
|
| ucar.nc2.iosp.nexrad2 |
I/O Service Provider for NEXRAD level 2 format files
|
| ucar.nc2.iosp.nids |
I/O Service Provider for NIDS (Nexrad level 3) format files
|
| ucar.nc2.iosp.noaa | |
| ucar.nc2.iosp.nowrad | |
| ucar.nc2.iosp.sigmet | |
| ucar.nc2.iosp.uamiv | |
| ucar.nc2.iosp.uf | |
| ucar.nc2.ncml |
Netcdf Markup Language (NcML) Implementation classes
see NcML home page
|
| ucar.nc2.stream | |
| ucar.nc2.thredds |
Connects NetCDF-Java to THREDDS Catalogs and Datasets.
|
| ucar.nc2.util.cache |
Cache open NetcdfFile objects in memory.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CatalogExtractor.copy(java.lang.String catUrl,
java.lang.String copyToDir,
CancelTask task) |
int |
CatalogCrawler.crawl(InvCatalogImpl cat,
CancelTask task,
java.io.PrintStream out,
java.lang.Object context)
Crawl a catalog thats already been opened.
|
int |
CatalogCrawler.crawl(java.lang.String catUrl,
CancelTask task,
java.io.PrintStream out,
java.lang.Object context)
Open a catalog and crawl (depth first) all the datasets in it.
|
void |
CatalogCrawler.crawlDataset(InvDataset ds,
CancelTask task,
java.io.PrintStream out,
java.lang.Object context,
boolean release)
Crawl this dataset recursively, return all datasets
|
void |
CatalogCrawler.crawlDirectDatasets(InvDataset ds,
CancelTask task,
java.io.PrintStream out,
java.lang.Object context,
boolean release)
Crawl this dataset recursively.
|
void |
CatalogExtractor.extract(java.io.PrintStream out,
java.lang.String catUrl,
int type,
boolean skipDatasetScan,
CancelTask task) |
void |
CatalogExtractor.extractLoop(java.io.PrintStream out,
java.lang.String catUrl,
int type,
boolean skipDatasetScan,
CancelTask task) |
| Modifier and Type | Method and Description |
|---|---|
void |
DatasetCollectionManager.scan(CancelTask cancelTask)
Scan the directory(ies) and create MFile objects.
|
void |
CollectionManager.scan(CancelTask cancelTask)
Scan the directory(ies) and create MFile objects.
|
protected void |
DatasetCollectionManager.scan(java.util.Map<java.lang.String,MFile> map,
CancelTask cancelTask) |
protected void |
DatasetCollectionFromCatalog.scan(java.util.Map<java.lang.String,MFile> map,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
static NetcdfFile |
NetcdfFile.open(java.lang.String location,
CancelTask cancelTask)
Open an existing file (read only), with option of cancelling.
|
static NetcdfFile |
NetcdfFile.open(java.lang.String location,
int buffer_size,
CancelTask cancelTask)
Open an existing file (read only), with option of cancelling, setting the RandomAccessFile buffer size for efficiency.
|
static NetcdfFile |
NetcdfFile.open(java.lang.String location,
int buffer_size,
CancelTask cancelTask,
java.lang.Object iospMessage)
Open an existing file (read only), with option of cancelling, setting the RandomAccessFile buffer size for efficiency,
with an optional special object for the iosp.
|
static NetcdfFile |
NetcdfFile.open(java.lang.String location,
java.lang.String iospClassName,
int bufferSize,
CancelTask cancelTask,
java.lang.Object iospMessage)
Open an existing file (read only), specifying which IOSP is to be used.
|
static boolean |
NCdump.print(NetcdfFile nc,
java.io.OutputStream out,
boolean showAll,
boolean showCoords,
boolean ncml,
boolean strict,
java.lang.String varNames,
CancelTask ct)
Deprecated.
ncdump-like print of netcdf file.
|
static boolean |
NCdump.print(NetcdfFile nc,
java.lang.String command,
java.io.OutputStream out,
CancelTask ct)
Deprecated.
ncdump, parsing command string, file already open.
|
static boolean |
NCdumpW.print(NetcdfFile nc,
java.lang.String command,
java.io.Writer out,
CancelTask ct)
ncdump, parsing command string, file already open.
|
static boolean |
NCdumpW.print(NetcdfFile nc,
java.io.Writer out,
boolean showAll,
boolean showCoords,
boolean ncml,
boolean strict,
java.lang.String varNames,
CancelTask ct)
ncdump-like print of netcdf file.
|
static boolean |
NCdumpW.print(NetcdfFile nc,
java.io.Writer out,
NCdumpW.WantValues showValues,
boolean ncml,
boolean strict,
java.lang.String varNames,
CancelTask ct)
ncdump-like print of netcdf file.
|
static boolean |
NCdump.print(java.lang.String fileName,
java.io.OutputStream out,
boolean showAll,
boolean showCoords,
boolean ncml,
boolean strict,
java.lang.String varNames,
CancelTask ct)
Deprecated.
ncdump-like print of netcdf file.
|
static boolean |
NCdump.print(java.lang.String command,
java.io.OutputStream out,
CancelTask ct)
Deprecated.
ncdump that parses a command string.
|
static boolean |
NCdumpW.print(java.lang.String filename,
java.io.Writer out,
boolean showAll,
boolean showCoords,
boolean ncml,
boolean strict,
java.lang.String varNames,
CancelTask ct)
ncdump-like print of netcdf file.
|
static boolean |
NCdumpW.print(java.lang.String command,
java.io.Writer out,
CancelTask ct)
ncdump that parses a command string.
|
static java.lang.String |
NCdumpW.printArray(Array array,
java.lang.String name,
CancelTask ct) |
static void |
NCdump.printArray(Array array,
java.lang.String name,
java.io.PrintStream out,
CancelTask ct)
Deprecated.
Print the data array.
|
static void |
NCdumpW.printArray(Array array,
java.lang.String name,
java.io.PrintWriter out,
CancelTask ct)
Print the data array.
|
static java.lang.String |
NCdumpW.printVariableData(VariableIF v,
CancelTask ct)
Print all the data of the given Variable.
|
static java.lang.String |
NCdump.printVariableData(VariableIF v,
CancelTask ct)
Deprecated.
Print all the data of the given Variable.
|
static java.lang.String |
NCdump.printVariableDataSection(VariableIF v,
java.lang.String sectionSpec,
CancelTask ct)
Deprecated.
Print a section of the data of the given Variable.
|
static java.lang.String |
NCdumpW.printVariableDataSection(Variable v,
java.lang.String sectionSpec,
CancelTask ct)
Print a section of the data of the given Variable.
|
Array |
Variable.reallyRead(Variable client,
CancelTask cancelTask)
public by accident, do not call directly.
|
Array |
StructurePseudo.reallyRead(Variable mainv,
CancelTask cancelTask)
Deprecated.
|
Array |
ProxyReader.reallyRead(Variable client,
CancelTask cancelTask)
Read all the data for a Variable.
|
Array |
Variable.reallyRead(Variable client,
Section section,
CancelTask cancelTask)
public by accident, do not call directly.
|
Array |
StructurePseudo.reallyRead(Variable mainv,
Section section,
CancelTask cancelTask)
Deprecated.
|
Array |
ProxyReader.reallyRead(Variable client,
Section section,
CancelTask cancelTask)
Read a section of the data for a Variable.
|
| Constructor and Description |
|---|
NetcdfFile(IOServiceProvider spi,
RandomAccessFile raf,
java.lang.String location,
CancelTask cancelTask)
Open an existing netcdf file (read only).
|
NetcdfFile(java.lang.String iospClassName,
java.lang.String iospParam,
java.lang.String location,
int buffer_size,
CancelTask cancelTask)
Open an existing netcdf file (read only), using the specified iosp.
|
| Modifier and Type | Method and Description |
|---|---|
static NetcdfDataset |
NetcdfDataset.acquireDataset(FileFactory fac,
java.lang.String location,
java.util.Set<NetcdfDataset.Enhance> enhanceMode,
int buffer_size,
CancelTask cancelTask,
java.lang.Object iospMessage)
Same as openDataset, but file is acquired through the File Cache.
|
static NetcdfDataset |
NetcdfDataset.acquireDataset(java.lang.String location,
boolean enhance,
CancelTask cancelTask) |
static NetcdfDataset |
NetcdfDataset.acquireDataset(java.lang.String location,
CancelTask cancelTask)
Same as openDataset, but file is acquired through the File Cache, with defaultEnhanceMode.
|
static NetcdfFile |
NetcdfDataset.acquireFile(FileFactory factory,
java.lang.Object hashKey,
java.lang.String location,
int buffer_size,
CancelTask cancelTask,
java.lang.Object spiObject)
Same as openFile, but file is acquired through the File Cache.
|
static NetcdfFile |
NetcdfDataset.acquireFile(java.lang.String location,
CancelTask cancelTask)
Same as openFile, but file is acquired through the File Cache.
|
void |
CoordSysBuilderIF.augmentDataset(NetcdfDataset ncDataset,
CancelTask cancelTask)
Make changes to the dataset that are needed before processing scale/offset in NetcdfDataset.
|
void |
CoordSysBuilder.augmentDataset(NetcdfDataset ncDataset,
CancelTask cancelTask) |
static CoordSysBuilderIF |
CoordSysBuilder.factory(NetcdfDataset ds,
CancelTask cancelTask)
Get a CoordSysBuilder whose job it is to add Coordinate information to a NetcdfDataset.
|
static NetcdfDataset |
NetcdfDataset.openDataset(java.lang.String location,
boolean enhance,
CancelTask cancelTask)
Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
|
static NetcdfDataset |
NetcdfDataset.openDataset(java.lang.String location,
boolean enhance,
int buffer_size,
CancelTask cancelTask,
java.lang.Object spiObject)
Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
|
static NetcdfDataset |
NetcdfDataset.openDataset(java.lang.String location,
java.util.Set<NetcdfDataset.Enhance> enhanceMode,
int buffer_size,
CancelTask cancelTask,
java.lang.Object spiObject)
Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
|
static NetcdfFile |
NetcdfDataset.openFile(java.lang.String location,
CancelTask cancelTask)
Factory method for opening a NetcdfFile through the netCDF API.
|
static NetcdfFile |
NetcdfDataset.openFile(java.lang.String location,
int buffer_size,
CancelTask cancelTask,
java.lang.Object spiObject)
Factory method for opening a NetcdfFile through the netCDF API.
|
Array |
VariableDS.reallyRead(Variable client,
CancelTask cancelTask) |
Array |
StructurePseudoDS.reallyRead(Variable mainv,
CancelTask cancelTask) |
Array |
StructureDS.reallyRead(Variable client,
CancelTask cancelTask) |
Array |
VariableDS.reallyRead(Variable client,
Section section,
CancelTask cancelTask) |
Array |
StructurePseudoDS.reallyRead(Variable mainv,
Section section,
CancelTask cancelTask) |
Array |
StructureDS.reallyRead(Variable client,
Section section,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
ZebraConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
WRFConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
UnidataObsConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
create a NetcdfDataset out of this NetcdfFile, adding coordinates etc.
|
void |
Suomi.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
NUWGConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
NsslRadarMosaicConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
NppConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
Nimbus.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
ModisSatellite.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
MADISStation.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
M3IOVGGridConvention.augmentDataset(NetcdfDataset ncd,
CancelTask cancelTask) |
void |
M3IOConvention.augmentDataset(NetcdfDataset ncd,
CancelTask cancelTask) |
void |
IFPSConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
GIEFConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
GDVConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
FslWindProfiler.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
EpicInsitu.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
DefaultConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
CSMConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
Cosmic1Convention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
_more_
|
void |
CF1Convention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
CEDRICRadarConvention.augmentDataset(NetcdfDataset ncDataset,
CancelTask cancelTask) |
void |
BUFRConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
create a NetcdfDataset out of this NetcdfFile, adding coordinates etc.
|
void |
AWIPSsatConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
AWIPSConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
AvhrrConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask) |
void |
ATDRadarConvention.augmentDataset(NetcdfDataset ncDataset,
CancelTask cancelTask) |
void |
ADASConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
create a NetcdfDataset out of this NetcdfFile, adding coordinates etc.
|
| Constructor and Description |
|---|
DODSNetcdfFile(java.lang.String datasetURL,
CancelTask cancelTask)
Open a DODS file, allow user control over preloading string arrays and making structure data
available through netcdf API.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List |
PointCollection.getData(CancelTask cancel)
Get all data, allow user to cancel.
|
java.util.List |
PointCollection.getData(LatLonRect boundingBox,
CancelTask cancel)
Get all data within the specified bounding box, allow user to cancel.
|
java.util.List |
PointCollection.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel)
Get all data within the specified bounding box and date range, allow user to cancel.
|
java.util.List |
StationCollection.getData(java.util.List<Station> stations,
CancelTask cancel)
Get all data for a list of Stations, allow user to cancel.
|
java.util.List |
StationCollection.getData(java.util.List<Station> stations,
java.util.Date start,
java.util.Date end,
CancelTask cancel)
Get data for a list of Stations within the specified date range, allow user to cancel.
|
java.util.List |
StationCollection.getData(Station s,
CancelTask cancel)
Get all data for this Station, allow user to cancel.
|
java.util.List |
StationCollection.getData(Station s,
java.util.Date start,
java.util.Date end,
CancelTask cancel)
Get data for this Station within the specified date range, allow user to cancel.
|
java.util.List<Station> |
StationCollection.getStations(CancelTask cancel)
Get all the Stations in the collection, allow user to cancel.
|
java.util.List<Station> |
StationRadarCollection.getStations(LatLonRect boundingBox,
CancelTask cancel)
Get all the Stations within a bounding box, allow user to cancel.
|
java.util.List<Station> |
StationCollection.getStations(LatLonRect boundingBox,
CancelTask cancel)
Get all the Stations within a bounding box, allow user to cancel.
|
static TypedDataset |
TypedDatasetFactory.open(FeatureType datatype,
NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
Deprecated.
Open a dataset as a TypedDataset.
|
static TypedDataset |
TypedDatasetFactory.open(FeatureType datatype,
java.lang.String location,
CancelTask task,
java.lang.StringBuilder errlog)
Deprecated.
Open a dataset as a TypedDataset.
|
TypedDataset |
TypedDatasetFactoryIF.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
Open a NetcdfDataset as a TypedDataset.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List |
RecordDatasetHelper.getData(java.util.ArrayList records,
LatLonRect boundingBox,
CancelTask cancel)
Deprecated.
|
java.util.List |
RecordDatasetHelper.getData(java.util.ArrayList records,
LatLonRect boundingBox,
double startTime,
double endTime,
CancelTask cancel)
Deprecated.
|
java.util.List |
UnidataStationObsMultidimDataset.getData(CancelTask cancel) |
java.util.List |
UnidataStationObsDataset2.getData(CancelTask cancel)
Deprecated.
|
java.util.List |
UnidataStationObsDataset.getData(CancelTask cancel) |
java.util.List |
UnidataPointObsDataset.getData(CancelTask cancel) |
java.util.List |
SequenceObsDataset.getData(CancelTask cancel) |
java.util.List |
SequenceHelper.getData(CancelTask cancel) |
java.util.List |
OldUnidataStationObsDataset.getData(CancelTask cancel) |
java.util.List |
OldUnidataPointObsDataset.getData(CancelTask cancel) |
java.util.List |
NdbcDataset.getData(CancelTask cancel) |
java.util.List |
MadisStationObsDataset.getData(CancelTask cancel) |
java.util.List |
MadisPointObsDataset.getData(CancelTask cancel) |
java.util.List |
DapperDataset.getData(CancelTask cancel) |
java.util.List |
CFstationObsDataset.getData(CancelTask cancel) |
java.util.List |
UnidataPointObsDataset.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
StationObsDatasetImpl.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
SequenceHelper.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
OldUnidataStationObsDataset.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
OldUnidataPointObsDataset.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
MadisPointObsDataset.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
DapperDataset.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
UnidataPointObsDataset.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
StationObsDatasetImpl.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
SequenceHelper.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
OldUnidataStationObsDataset.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
OldUnidataPointObsDataset.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
MadisPointObsDataset.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
DapperDataset.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
StationObsDatasetImpl.getData(java.util.List<Station> stations,
CancelTask cancel) |
java.util.List |
StationObsDatasetImpl.getData(java.util.List<Station> stations,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
UnidataStationObsMultidimDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
UnidataStationObsDataset2.getData(Station s,
CancelTask cancel)
Deprecated.
|
java.util.List |
UnidataStationObsDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
SequenceObsDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
OldUnidataStationObsDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
NdbcDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
MadisStationObsDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
CFstationObsDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
StationObsDatasetImpl.getData(Station s,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
StationDatasetHelper.getStationObs(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
StationDatasetHelper.getStationObs(LatLonRect boundingBox,
double startTime,
double endTime,
CancelTask cancel) |
java.util.List |
StationDatasetHelper.getStationObs(java.util.List<Station> stations,
CancelTask cancel) |
java.util.List |
StationDatasetHelper.getStationObs(java.util.List<Station> stations,
double startTime,
double endTime,
CancelTask cancel) |
java.util.List |
StationDatasetHelper.getStationObs(Station s,
double startTime,
double endTime,
CancelTask cancel) |
java.util.List<Station> |
StationObsDatasetImpl.getStations(CancelTask cancel) |
java.util.List<Station> |
StationObsDatasetImpl.getStations(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List<Station> |
StationDatasetHelper.getStations(LatLonRect boundingBox,
CancelTask cancel) |
static PointObsDataset |
PointObsDatasetFactory.open(InvAccess access,
CancelTask task,
java.lang.StringBuffer logMessages)
Deprecated.
|
TypedDataset |
UnidataStationObsMultidimDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
UnidataStationObsDataset2.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
Deprecated.
|
TypedDataset |
UnidataStationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
UnidataPointObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
SequenceObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
OldUnidataStationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
OldUnidataPointObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
NdbcDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
MadisStationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
MadisPointObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
DapperDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
CFstationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
static PointObsDataset |
PointObsDatasetFactory.open(java.lang.String location,
CancelTask task,
java.lang.StringBuffer log)
Deprecated.
|
java.util.ArrayList |
RecordDatasetHelper.readAllCreateObs(CancelTask cancel)
Deprecated.
This reads through all the records in the dataset, and constructs a list of
RecordPointObs or RecordStationObs.
|
java.util.List |
DapperDataset.readStationData(Station s,
CancelTask cancel) |
| Constructor and Description |
|---|
SequenceObsDataset(NetcdfDataset ds,
CancelTask task) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List |
StationRadarCollectionImpl.getStations(CancelTask cancel)
Get all the Stations in the collection, allow user to cancel.
|
java.util.List |
StationRadarCollectionImpl.getStations(LatLonRect boundingBox,
CancelTask cancel) |
TypedDataset |
UF2Dataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
Nids2Dataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
Netcdf2Dataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
LevelII2Dataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
Dorade2Dataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
CFnetCDF2Dataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
_more_
|
RadialDatasetSweep |
RadialDatasetSweepFactory.open(java.lang.String location,
CancelTask cancelTask)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
TypedDataset |
ZebraClassTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
UnidataTrajectoryObsDataset2.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
UnidataTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
SimpleTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
RafTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
Float10TrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
COSMICTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
TypedDataset |
ARMTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog) |
static TrajectoryObsDataset |
TrajectoryObsDatasetFactory.open(java.lang.String netcdfFileURI,
CancelTask cancelTask)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
FeatureDataset |
FeatureDatasetFactory.open(FeatureType ftype,
NetcdfDataset ncd,
java.lang.Object analysis,
CancelTask task,
java.util.Formatter errlog)
Open a NetcdfDataset as a FeatureDataset.
|
static FeatureDataset |
FeatureDatasetFactoryManager.open(FeatureType wantFeatureType,
java.lang.String location,
CancelTask task,
java.util.Formatter errlog)
Open a dataset as a FeatureDataset.
|
static FeatureDataset |
FeatureDatasetFactoryManager.wrap(FeatureType wantFeatureType,
NetcdfDataset ncd,
CancelTask task,
java.util.Formatter errlog)
Wrap a NetcdfDataset as a FeatureDataset.
|
| Modifier and Type | Method and Description |
|---|---|
FeatureDataset |
GridDatasetStandardFactory.open(FeatureType ftype,
NetcdfDataset ncd,
java.lang.Object analysis,
CancelTask task,
java.util.Formatter errlog) |
| Modifier and Type | Method and Description |
|---|---|
FeatureDataset |
PointDatasetStandardFactory.open(FeatureType wantFeatureType,
NetcdfDataset ncd,
java.lang.Object analyser,
CancelTask task,
java.util.Formatter errlog) |
| Modifier and Type | Method and Description |
|---|---|
FeatureDataset |
RadialDatasetStandardFactory.open(FeatureType ftype,
NetcdfDataset ncd,
java.lang.Object analysis,
CancelTask task,
java.util.Formatter errlog) |
| Modifier and Type | Method and Description |
|---|---|
void |
IOServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open existing file, and populate ncfile with it.
|
void |
AbstractIOServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List |
AddeStationObsDataset.getData(CancelTask cancel) |
java.util.List |
AddeStationObsDataset.getData(LatLonRect boundingBox,
CancelTask cancel) |
java.util.List |
AddeStationObsDataset.getData(LatLonRect boundingBox,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
AddeStationObsDataset.getData(java.util.List stations,
CancelTask cancel) |
java.util.List |
AddeStationObsDataset.getData(java.util.List stations,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
AddeStationObsDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
AddeStationObsDataset.getData(Station s,
java.util.Date start,
java.util.Date end,
CancelTask cancel) |
java.util.List |
AddeStationObsDataset.getStations(CancelTask cancel) |
| Constructor and Description |
|---|
AddeStationObsDataset(InvAccess access,
CancelTask cancelTask)
Open an ADDE Station Dataset from an InvAccess, which must be type ADDE and Station.
|
AddeStationObsDataset(java.lang.String location,
CancelTask cancelTask)
Open an ADDE Station Dataset.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Cinrad2IOServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
DMSPiosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
Doradeiosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
Fysatiosp.open(RandomAccessFile raf,
NetcdfFile file,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
GempakGridServiceProvider.open(ucar.grid.GridIndex index,
CancelTask cancelTask)
Open the index and create the netCDF file from that
|
void |
GempakStationFileIOSP.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open the service provider for reading.
|
void |
GempakGridServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open the service provider for reading.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Giniiosp.open(RandomAccessFile raf,
NetcdfFile file,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
GradsBinaryGridServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open the service provider for reading.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
GribGridServiceProvider.open(ucar.grid.GridIndex index,
CancelTask cancelTask) |
void |
GribGridServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
GridServiceProvider.open(ucar.grid.GridIndex index,
CancelTask cancelTask)
Use the given index to fill the NetcdfFile object with attributes and variables.
|
void |
GridIndexToNC.open(ucar.grid.GridIndex index,
ucar.grid.GridTableLookup lookup,
int version,
NetcdfFile ncfile,
FmrcCoordSys fmrcCoordSys,
CancelTask cancelTask)
Fill in the netCDF file
|
void |
GridServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open the service provider for reading.
|
| Modifier and Type | Method and Description |
|---|---|
void |
H4iosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
H5iosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
McIDASGridServiceProvider.open(ucar.grid.GridIndex index,
CancelTask cancelTask)
Open the index and create the netCDF file from that
|
void |
Vis5DIosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open the service provider for reading.
|
void |
McIDASGridServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open the service provider for reading.
|
void |
AreaServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open the service provider for reading.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Uspln.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open existing file, and populate ncfile with it.
|
void |
NmcObsLegacy.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
void |
Nldn.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open existing file, and populate ncfile with it.
|
void |
GtopoIosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
N3iosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
Nexrad2IOServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
Nidsiosp.open(RandomAccessFile raf,
NetcdfFile file,
CancelTask cancelTask)
Open the file and read the header part
|
| Modifier and Type | Method and Description |
|---|---|
void |
IgraPor.open(RandomAccessFile raff,
NetcdfFile ncfile,
CancelTask cancelTask) |
void |
Ghcnm2.open(RandomAccessFile raff,
NetcdfFile ncfile,
CancelTask cancelTask) |
void |
Ghcnm.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
NOWRadiosp.open(RandomAccessFile raf,
NetcdfFile file,
CancelTask cancelTask)
Open the file and read the header part
|
| Modifier and Type | Method and Description |
|---|---|
void |
SigmetIOServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open existing file, and populate ncfile with it.
|
| Modifier and Type | Method and Description |
|---|---|
void |
UAMIVServiceProvider.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask)
Open existing file, and populate ncfile with it.
|
| Modifier and Type | Method and Description |
|---|---|
void |
UFiosp.open(RandomAccessFile raf,
NetcdfFile file,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
NetcdfFile |
Aggregation.Dataset.acquireFile(CancelTask cancelTask) |
protected void |
AggregationOuterDimension.buildCoords(CancelTask cancelTask) |
protected void |
AggregationUnion.buildNetcdfDataset(CancelTask cancelTask) |
protected void |
AggregationTiled.buildNetcdfDataset(CancelTask cancelTask) |
protected void |
AggregationNew.buildNetcdfDataset(CancelTask cancelTask) |
protected void |
AggregationFmrc.buildNetcdfDataset(CancelTask cancelTask) |
protected void |
AggregationExisting.buildNetcdfDataset(CancelTask cancelTask) |
protected abstract void |
Aggregation.buildNetcdfDataset(CancelTask cancelTask)
Call this to build the dataset objects in the NetcdfDataset
|
void |
Aggregation.finish(CancelTask cancelTask) |
protected void |
AggregationFmrc.makeDatasets(CancelTask cancelTask) |
protected void |
Aggregation.makeDatasets(CancelTask cancelTask)
Make the list of Datasets, from explicit and scans.
|
protected Array |
Aggregation.Dataset.read(Variable mainv,
CancelTask cancelTask) |
protected Array |
Aggregation.Dataset.read(Variable mainv,
CancelTask cancelTask,
java.util.List<Range> section)
Read a section of the local Variable.
|
static NetcdfDataset |
NcMLReader.readNcML(java.io.InputStream ins,
CancelTask cancelTask)
Read NcML doc from an InputStream, and construct a NetcdfDataset.
|
static NetcdfDataset |
NcMLReader.readNcML(java.io.Reader r,
CancelTask cancelTask)
Read NcML doc from a Reader, and construct a NetcdfDataset.
|
static NetcdfDataset |
NcMLReader.readNcML(java.io.Reader r,
java.lang.String ncmlLocation,
CancelTask cancelTask)
Read NcML doc from a Reader, and construct a NetcdfDataset.
|
static NetcdfDataset |
NcMLReader.readNcML(java.lang.String ncmlLocation,
CancelTask cancelTask)
Read an NcML file from a URL location, and construct a NetcdfDataset.
|
static NetcdfDataset |
NcMLReader.readNcML(java.lang.String ncmlLocation,
org.jdom.Element netcdfElem,
CancelTask cancelTask)
Read NcML from a JDOM Document, and construct a NetcdfDataset.
|
static NetcdfDataset |
NcMLReader.readNcML(java.lang.String ncmlLocation,
java.lang.String referencedDatasetUri,
CancelTask cancelTask)
Read an NcML file from a URL location, and construct a NetcdfDataset.
|
void |
NcMLReader.readNetcdf(java.lang.String ncmlLocation,
NetcdfDataset targetDS,
NetcdfFile refds,
org.jdom.Element netcdfElem,
CancelTask cancelTask)
parse a netcdf JDOM Element, and add contents to the targetDS NetcdfDataset.
|
protected void |
AggregationExisting.readTimeCoordinates(VariableDS timeAxis,
CancelTask cancelTask) |
Array |
AggregationTiled.reallyRead(Variable mainv,
CancelTask cancelTask) |
Array |
AggregationOuterDimension.reallyRead(Variable mainv,
CancelTask cancelTask)
Read an aggregation variable: A variable whose data spans multiple files.
|
Array |
Aggregation.DatasetProxyReader.reallyRead(Variable mainV,
CancelTask cancelTask) |
Array |
AggregationTiled.reallyRead(Variable mainv,
Section wantSection,
CancelTask cancelTask) |
Array |
AggregationOuterDimension.reallyRead(Variable mainv,
Section section,
CancelTask cancelTask)
Read a section of an aggregation variable.
|
Array |
Aggregation.DatasetProxyReader.reallyRead(Variable mainV,
Section section,
CancelTask cancelTask) |
static void |
NcMLReader.wrapNcML(NetcdfDataset ncDataset,
java.lang.String ncmlLocation,
CancelTask cancelTask)
Use NCML to modify the dataset, getting NcML from a URL
|
static void |
NcMLReader.wrapNcMLresource(NetcdfDataset ncDataset,
java.lang.String ncmlResourceLocation,
CancelTask cancelTask)
Use NCML to modify a dataset, getting the NcML document as a resource stream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
NcStreamIosp.open(RandomAccessFile raf,
NetcdfFile ncfile,
CancelTask cancelTask) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List |
DqcStationObsDataset.getData(CancelTask cancel) |
java.util.List |
DqcStationObsDataset.getData(Station s,
CancelTask cancel) |
java.util.List |
TDSRadarDatasetCollection.getData(java.lang.String sName,
DateSelection dateSelect,
CancelTask cancel)
Getting data for a single radar station, with time range.
|
java.util.ArrayList |
DqcRadarDatasetCollection.getData(java.lang.String sName,
DateSelection dateSelect,
CancelTask cancel)
Getting data for a single radar station, with time range.
|
java.util.List<java.net.URI> |
TDSRadarDatasetCollection.getDataURIs(java.lang.String sName,
DateSelection dateSelect,
CancelTask cancel)
getting data uri list
|
java.util.ArrayList |
DqcRadarDatasetCollection.getDataURIs(java.lang.String sName,
DateSelection dateSelect,
CancelTask cancel)
_more_
|
java.util.List<Station> |
TDSRadarDatasetCollection.getStations(CancelTask cancel)
get all radar station within box.
|
java.util.List |
DqcRadarDatasetCollection.getStations(CancelTask cancel)
get all radar station within box.
|
java.util.List<Station> |
TDSRadarDatasetCollection.getStations(LatLonRect boundingBox,
CancelTask cancel)
get all radar station within box.
|
java.util.List |
DqcRadarDatasetCollection.getStations(LatLonRect boundingBox,
CancelTask cancel)
get all radar station within box.
|
NetcdfDataset |
ThreddsDataFactory.openDataset(InvAccess access,
boolean acquire,
CancelTask task,
java.util.Formatter log)
Try to open invAccess as a NetcdfDataset.
|
NetcdfDataset |
ThreddsDataFactory.openDataset(InvDataset invDataset,
boolean acquire,
CancelTask task,
java.util.Formatter log)
Try to open as a NetcdfDataset.
|
NetcdfDataset |
ThreddsDataFactory.openDataset(java.lang.String location,
boolean acquire,
CancelTask task,
java.util.Formatter log)
Open a NetcdfDataset from a URL location string.
|
ThreddsDataFactory.Result |
ThreddsDataFactory.openFeatureDataset(FeatureType wantFeatureType,
InvDataset invDataset,
CancelTask task,
ThreddsDataFactory.Result result) |
ThreddsDataFactory.Result |
ThreddsDataFactory.openFeatureDataset(FeatureType wantFeatureType,
java.lang.String urlString,
CancelTask task)
Open a FeatureDataset from a URL location string, and a desired type (may by NONE or null).
|
ThreddsDataFactory.Result |
ThreddsDataFactory.openFeatureDataset(InvAccess access,
CancelTask task)
Open a FeatureDataset from an InvAccess object.
|
ThreddsDataFactory.Result |
ThreddsDataFactory.openFeatureDataset(InvDataset invDataset,
CancelTask task)
Open a FeatureDataset from an InvDataset object, deciding on which InvAccess to use.
|
ThreddsDataFactory.Result |
ThreddsDataFactory.openFeatureDataset(java.lang.String urlString,
CancelTask task)
Open a FeatureDataset from a URL location string.
|
| Modifier and Type | Method and Description |
|---|---|
FileCacheable |
FileCache.acquire(FileFactory factory,
java.lang.Object hashKey,
java.lang.String location,
int buffer_size,
CancelTask cancelTask,
java.lang.Object spiObject)
Acquire a FileCacheable from the cache, and lock it so no one else can use it.
|
FileCacheable |
FileCache.acquire(FileFactory factory,
java.lang.String location,
CancelTask cancelTask)
Acquire a FileCacheable, and lock it so no one else can use it.
|
FileCacheable |
FileFactory.open(java.lang.String location,
int buffer_size,
CancelTask cancelTask,
java.lang.Object iospMessage) |