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 TypedDatasetFactoryIFDeprecated.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 ucar.nc2.constants.FeatureTypegetScientificDataType()Deprecated.What kind of cientific data type will this return?booleanisMine(ucar.nc2.dataset.NetcdfDataset ncd)Deprecated.Determine if this dataset belongs to youTypedDatasetopen(ucar.nc2.dataset.NetcdfDataset ncd, ucar.nc2.util.CancelTask task, StringBuilder errlog)Deprecated.Open a NetcdfDataset as a TypedDataset.
-
-
-
Method Detail
-
isMine
boolean isMine(ucar.nc2.dataset.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(ucar.nc2.dataset.NetcdfDataset ncd, ucar.nc2.util.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
ucar.nc2.constants.FeatureType getScientificDataType()
Deprecated.What kind of cientific data type will this return?- Returns:
- scientific data type
-
-