Package ucar.nc2.dt
Interface TypedDatasetFactoryIF
-
- All Known Implementing Classes:
ARMTrajectoryObsDataset
,CFstationObsDataset
,COSMICTrajectoryObsDataset
,DapperDataset
,Float10TrajectoryObsDataset
,MadisPointObsDataset
,MadisStationObsDataset
,NdbcDataset
,OldUnidataPointObsDataset
,OldUnidataStationObsDataset
,RafTrajectoryObsDataset
,SequenceObsDataset
,SimpleTrajectoryObsDataset
,UnidataPointObsDataset
,UnidataStationObsDataset
,UnidataStationObsDataset2
,UnidataStationObsMultidimDataset
,UnidataTrajectoryObsDataset
,UnidataTrajectoryObsDataset2
,ZebraClassTrajectoryObsDataset
public interface TypedDatasetFactoryIF
Deprecated.use ucar.nc2.ft.*Interface for factories that wrap a NetcdfDataset with a subclass of TypedDataset
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description FeatureType
getScientificDataType()
Deprecated.What kind of cientific data type will this return?boolean
isMine(NetcdfDataset ncd)
Deprecated.Determine if this dataset belongs to youTypedDataset
open(NetcdfDataset ncd, CancelTask task, StringBuilder errlog)
Deprecated.Open a NetcdfDataset as a TypedDataset.
-
-
-
Method Detail
-
isMine
boolean isMine(NetcdfDataset ncd)
Deprecated.Determine if this dataset belongs to you- Parameters:
ncd
- examine this NetcdfDataset to see if it belongs to this class.- Returns:
- true if this class knows how to create a TypedDataset out of this NetcdfDataset.
-
open
TypedDataset open(NetcdfDataset ncd, CancelTask task, StringBuilder errlog) throws IOException
Deprecated.Open a NetcdfDataset as a TypedDataset.- Parameters:
ncd
- already opened NetcdfDataset.task
- use may cancelerrlog
- place errors here- Returns:
- a subclass of TypedDataset
- Throws:
IOException
- on error
-
getScientificDataType
FeatureType getScientificDataType()
Deprecated.What kind of cientific data type will this return?- Returns:
- scientific data type
-
-