Package ucar.nc2.dt
Interface TypedDataset
-
- All Superinterfaces:
AutoCloseable
,Closeable
- All Known Subinterfaces:
PointObsDataset
,StationObsDataset
,TrajectoryObsDataset
- All Known Implementing Classes:
ARMTrajectoryObsDataset
,CFstationObsDataset
,COSMICTrajectoryObsDataset
,DapperDataset
,Float10TrajectoryObsDataset
,MadisPointObsDataset
,MadisStationObsDataset
,MultiTrajectoryObsDataset
,NdbcDataset
,OldUnidataPointObsDataset
,OldUnidataStationObsDataset
,PointObsDatasetImpl
,RafTrajectoryObsDataset
,SequenceObsDataset
,SimpleTrajectoryObsDataset
,SingleTrajectoryObsDataset
,StationObsDatasetImpl
,TrajectoryObsDatasetImpl
,TypedDatasetImpl
,UnidataPointObsDataset
,UnidataStationObsDataset
,UnidataStationObsDataset2
,UnidataStationObsMultidimDataset
,UnidataTrajectoryObsDataset
,UnidataTrajectoryObsDataset2
,ZebraClassTrajectoryObsDataset
public interface TypedDataset extends Closeable
Deprecated.use ucar.nc2.ft.FeatureCollectionSuperclass for "scientific type" datasets. This interface defines general "discovery metadata". Its subtypes define type-specific information. Implementations may or may not have a NetcdfFile underneath.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
close()
Deprecated.Close all resources associated with this dataset.Attribute
findGlobalAttributeIgnoreCase(String name)
Deprecated.LatLonRect
getBoundingBox()
Deprecated.VariableSimpleIF
getDataVariable(String shortName)
Deprecated.Get the named data Variable.List<VariableSimpleIF>
getDataVariables()
Deprecated.The data Variables available in this dataset.String
getDescription()
Deprecated.String
getDetailInfo()
Deprecated.Date
getEndDate()
Deprecated.List<Attribute>
getGlobalAttributes()
Deprecated.List of global attributes.String
getLocationURI()
Deprecated.NetcdfFile
getNetcdfFile()
Deprecated.Date
getStartDate()
Deprecated.String
getTitle()
Deprecated.
-
-
-
Method Detail
-
getTitle
String getTitle()
Deprecated.- Returns:
- Title of the dataset.
-
getDescription
String getDescription()
Deprecated.- Returns:
- Text information about this dataset.
-
getLocationURI
String getLocationURI()
Deprecated.- Returns:
- The URI location of the dataset
-
getStartDate
Date getStartDate()
Deprecated.- Returns:
- Start date for the entire dataset.
-
getEndDate
Date getEndDate()
Deprecated.- Returns:
- End date for the entire dataset.
-
getBoundingBox
LatLonRect getBoundingBox()
Deprecated.- Returns:
- the boundingBox for the entire dataset.
-
getGlobalAttributes
List<Attribute> getGlobalAttributes()
Deprecated.List of global attributes.- Returns:
- List of type ucar.nc2.Attribute
-
findGlobalAttributeIgnoreCase
Attribute findGlobalAttributeIgnoreCase(String name)
Deprecated.- Parameters:
name
- attribute name- Returns:
- the global attribute with the given name, ingnoring case.
-
getDataVariables
List<VariableSimpleIF> getDataVariables()
Deprecated.The data Variables available in this dataset. Should just be data variable others might be searching for, not metadata or coordinate system variables, etc. The shape of this VariableSimpleIF does not necessarily match the- Returns:
- List of type VariableSimpleIF
-
getDataVariable
VariableSimpleIF getDataVariable(String shortName)
Deprecated.Get the named data Variable.- Parameters:
shortName
- of data Variable.- Returns:
- VariableSimpleIF or null.
-
getNetcdfFile
NetcdfFile getNetcdfFile()
Deprecated.- Returns:
- underlying NetcdfFile, or null if none.
-
close
void close() throws IOException
Deprecated.Close all resources associated with this dataset.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
- on I/O error
-
getDetailInfo
String getDetailInfo()
Deprecated.- Returns:
- debug / underlying implementation details
-
-