Package ucar.nc2.dt

Class TypedDatasetImpl

    • Field Detail

      • netcdfDataset

        protected NetcdfDataset netcdfDataset
        Deprecated.
      • title

        protected String title
        Deprecated.
      • desc

        protected String desc
        Deprecated.
      • location

        protected String location
        Deprecated.
      • startDate

        protected Date startDate
        Deprecated.
      • endDate

        protected Date endDate
        Deprecated.
      • boundingBox

        protected LatLonRect boundingBox
        Deprecated.
    • Constructor Detail

      • TypedDatasetImpl

        public TypedDatasetImpl()
        Deprecated.
        No-arg constructor
      • TypedDatasetImpl

        public TypedDatasetImpl​(String title,
                                String description,
                                String location)
        Deprecated.
        Constructor when theres no NetcdfFile underneath.
        Parameters:
        title - title of the dataset.
        description - description of the dataset.
        location - URI of the dataset
      • TypedDatasetImpl

        public TypedDatasetImpl​(NetcdfDataset netcdfDataset)
        Deprecated.
        Construtor when theres a NetcdfFile underneath
        Parameters:
        netcdfDataset - adapt this NetcdfDataset
    • Method Detail

      • setTitle

        public void setTitle​(String title)
        Deprecated.
      • setDescription

        public void setDescription​(String desc)
        Deprecated.
      • setLocationURI

        public void setLocationURI​(String location)
        Deprecated.
      • setStartDate

        protected abstract void setStartDate()
        Deprecated.
      • setEndDate

        protected abstract void setEndDate()
        Deprecated.
      • setBoundingBox

        protected abstract void setBoundingBox()
        Deprecated.
      • removeDataVariable

        protected void removeDataVariable​(String varName)
        Deprecated.
      • getTitle

        public String getTitle()
        Deprecated.
        Specified by:
        getTitle in interface TypedDataset
        Returns:
        Title of the dataset.
      • getDescription

        public String getDescription()
        Deprecated.
        Specified by:
        getDescription in interface TypedDataset
        Returns:
        Text information about this dataset.
      • getLocation

        public String getLocation()
        Deprecated.
      • findGlobalAttributeIgnoreCase

        public Attribute findGlobalAttributeIgnoreCase​(String name)
        Deprecated.
        Specified by:
        findGlobalAttributeIgnoreCase in interface TypedDataset
        Parameters:
        name - attribute name
        Returns:
        the global attribute with the given name, ingnoring case.
      • getDetailInfo

        public String getDetailInfo()
        Deprecated.
        Specified by:
        getDetailInfo in interface TypedDataset
        Returns:
        debug / underlying implementation details
      • getStartDate

        public Date getStartDate()
        Deprecated.
        Specified by:
        getStartDate in interface TypedDataset
        Returns:
        Start date for the entire dataset.
      • getEndDate

        public Date getEndDate()
        Deprecated.
        Specified by:
        getEndDate in interface TypedDataset
        Returns:
        End date for the entire dataset.
      • getDataVariables

        public List<VariableSimpleIF> getDataVariables()
        Deprecated.
        Description copied from interface: TypedDataset
        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
        Specified by:
        getDataVariables in interface TypedDataset
        Returns:
        List of type VariableSimpleIF
      • getDataVariable

        public VariableSimpleIF getDataVariable​(String shortName)
        Deprecated.
        Description copied from interface: TypedDataset
        Get the named data Variable.
        Specified by:
        getDataVariable in interface TypedDataset
        Parameters:
        shortName - of data Variable.
        Returns:
        VariableSimpleIF or null.