Package ucar.nc2.dt

Interface TimeSeriesCollection


  • public interface TimeSeriesCollection
    Deprecated.
    use ucar.nc2.ft.*
    A collection of data in a time series. Underlying data can be of any type.
    • Method Detail

      • getDataClass

        Class getDataClass()
        Deprecated.
        The getData() methods returns List of objects of this Class
      • getNumTimes

        int getNumTimes()
        Deprecated.
        Get number of points in the series
      • getTime

        double getTime​(int timePt)
        Deprecated.
        get the time of the nth point.
      • getTimeUnits

        DateUnit getTimeUnits()
        Deprecated.
        Get the units of Calendar time. To get a Date, from a time value, call DateUnit.getStandardDate(double value). To get units as a String, call DateUnit.getUnitsString().
      • getData

        Object getData​(int timePt)
        Deprecated.
        Get the data for the nth point. @return Object of type getDataClass()