Class PointObsDatasetImpl

    • Field Detail

      • timeUnit

        protected DateUnit timeUnit
        Deprecated.
    • Constructor Detail

      • PointObsDatasetImpl

        public PointObsDatasetImpl()
        Deprecated.
      • PointObsDatasetImpl

        public PointObsDatasetImpl​(String title,
                                   String description,
                                   String location)
        Deprecated.
      • PointObsDatasetImpl

        public PointObsDatasetImpl​(NetcdfDataset ncfile)
        Deprecated.
    • Method Detail

      • getMetersConversionFactor

        protected static double getMetersConversionFactor​(String unitsString)
                                                   throws Exception
        Deprecated.
        Get conversion factor for this unit into meters.
        Parameters:
        unitsString - unit you want to convert
        Returns:
        conversion factor : value in meters = factor * (value in units)
        Throws:
        Exception - if not valid unit, or not convertible to meters
      • setTimeUnits

        protected abstract void setTimeUnits()
        Deprecated.
      • getScientificDataType

        public FeatureType getScientificDataType()
        Deprecated.
      • getDataClass

        public Class getDataClass()
        Deprecated.
        Description copied from interface: PointCollection
        The getData() methods return objects of this Class
        Specified by:
        getDataClass in interface PointCollection
        Returns:
        Class of the data
      • getTimeUnits

        public DateUnit getTimeUnits()
        Deprecated.
        Description copied from interface: PointCollection
        Get the units of Calendar time. To get a Date, from a time value, call DateUnit.makeDate(double value). To get units as a String, call DateUnit.getUnitsString().
        Specified by:
        getTimeUnits in interface PointCollection
        Returns:
        the units of Calendar time.
      • getData

        public List getData()
                     throws IOException
        Deprecated.
        Description copied from interface: PointCollection
        Get all data. Return null if too expensive to implement. Call getDataCount() to get estimate of size. This will return a list of getDataClass(), but the actual data may or may not already be read in to memory. In any case, you call dataType.getData() to get the data.
        Specified by:
        getData in interface PointCollection
        Returns:
        List of type getDataClass()
        Throws:
        IOException - on io error
        See Also:
        as a (possibly) more efficient alternative