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 voidclose()Deprecated.Close all resources associated with this dataset.ucar.nc2.AttributefindGlobalAttributeIgnoreCase(String name)Deprecated.ucar.unidata.geoloc.LatLonRectgetBoundingBox()Deprecated.ucar.nc2.VariableSimpleIFgetDataVariable(String shortName)Deprecated.Get the named data Variable.List<ucar.nc2.VariableSimpleIF>getDataVariables()Deprecated.The data Variables available in this dataset.StringgetDescription()Deprecated.StringgetDetailInfo()Deprecated.DategetEndDate()Deprecated.List<ucar.nc2.Attribute>getGlobalAttributes()Deprecated.List of global attributes.StringgetLocationURI()Deprecated.ucar.nc2.NetcdfFilegetNetcdfFile()Deprecated.DategetStartDate()Deprecated.StringgetTitle()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
ucar.unidata.geoloc.LatLonRect getBoundingBox()
Deprecated.- Returns:
- the boundingBox for the entire dataset.
-
getGlobalAttributes
List<ucar.nc2.Attribute> getGlobalAttributes()
Deprecated.List of global attributes.- Returns:
- List of type ucar.nc2.Attribute
-
findGlobalAttributeIgnoreCase
ucar.nc2.Attribute findGlobalAttributeIgnoreCase(String name)
Deprecated.- Parameters:
name- attribute name- Returns:
- the global attribute with the given name, ingnoring case.
-
getDataVariables
List<ucar.nc2.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
ucar.nc2.VariableSimpleIF getDataVariable(String shortName)
Deprecated.Get the named data Variable.- Parameters:
shortName- of data Variable.- Returns:
- VariableSimpleIF or null.
-
getNetcdfFile
ucar.nc2.NetcdfFile getNetcdfFile()
Deprecated.- Returns:
- underlying NetcdfFile, or null if none.
-
close
void close() throws IOExceptionDeprecated.Close all resources associated with this dataset.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException- on I/O error
-
getDetailInfo
String getDetailInfo()
Deprecated.- Returns:
- debug / underlying implementation details
-
-