Package ucar.nc2.dt
Interface PointObsDatatype
-
- All Known Subinterfaces:
StationObsDatatype
- All Known Implementing Classes:
DapperDataset.SeqPointObs,DapperDataset.SeqStationObs,PointObsDatatypeImpl,RecordDatasetHelper.RecordPointObs,RecordDatasetHelper.RecordStationObs,SequenceHelper.SeqPointObs,StationObsDatatypeImpl
public interface PointObsDatatypeDeprecated.use ucar.nc2.ft.*A collection of observations at one time and location.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ucar.ma2.StructureDatagetData()Deprecated.The actual data of the observation.ucar.unidata.geoloc.EarthLocationgetLocation()Deprecated.Location of the observationdoublegetNominalTime()Deprecated.Nominal time of the observation.DategetNominalTimeAsDate()Deprecated.Nominal time of the observation, as a Date.doublegetObservationTime()Deprecated.Actual time of the observation.DategetObservationTimeAsDate()Deprecated.Actual time of the observation, as a Date.
-
-
-
Method Detail
-
getNominalTime
double getNominalTime()
Deprecated.Nominal time of the observation. Units are found from getTimeUnits() in the containing dataset.- Returns:
- nominal time of the observation in units of getTimeUnits()
-
getObservationTime
double getObservationTime()
Deprecated.Actual time of the observation. Units are found from getTimeUnits() in the containing dataset.- Returns:
- actual time of the observation in units of getTimeUnits()
-
getNominalTimeAsDate
Date getNominalTimeAsDate()
Deprecated.Nominal time of the observation, as a Date.- Returns:
- nominal time of the observation as a Date
-
getObservationTimeAsDate
Date getObservationTimeAsDate()
Deprecated.Actual time of the observation, as a Date.- Returns:
- actual time of the observation as a Date
-
getLocation
ucar.unidata.geoloc.EarthLocation getLocation()
Deprecated.Location of the observation- Returns:
- the location of the observation
-
getData
ucar.ma2.StructureData getData() throws IOExceptionDeprecated.The actual data of the observation.- Returns:
- the actual data of the observation.
- Throws:
IOException- on io error
-
-