Package ucar.nc2.dt
Interface GridDataset
-
- All Superinterfaces:
AutoCloseable
,Closeable
,FeatureDataset
,FileCacheable
- All Known Implementing Classes:
GridDataset
public interface GridDataset extends FeatureDataset
A dataset containing Grid objects.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
GridDataset.Gridset
A set of GridDatatype objects with the same Coordinate System.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GridDatatype
findGridByShortName(String shortName)
GridDatatype
findGridDatatype(String name)
find the named GridDatatype.List<GridDatatype>
getGrids()
get the list of GridDatatype objects contained in this dataset.List<GridDataset.Gridset>
getGridsets()
Return GridDatatype objects grouped by GridCoordSystem.ProjectionRect
getProjBoundingBox()
-
Methods inherited from interface ucar.nc2.ft.FeatureDataset
attributes, close, findGlobalAttributeIgnoreCase, getBoundingBox, getCalendarDateEnd, getCalendarDateRange, getCalendarDateStart, getDataVariable, getDataVariables, getDescription, getDetailInfo, getFeatureType, getGlobalAttributes, getImplementationName, getLocation, getNetcdfFile, getTitle
-
Methods inherited from interface ucar.nc2.util.cache.FileCacheable
getLastModified, reacquire, release, setFileCache
-
-
-
-
Method Detail
-
getGrids
List<GridDatatype> getGrids()
get the list of GridDatatype objects contained in this dataset.- Returns:
- list of GridDatatype
-
findGridDatatype
GridDatatype findGridDatatype(String name)
find the named GridDatatype.- Parameters:
name
- full unescaped name- Returns:
- the named GridDatatype, or null if not found
-
findGridByShortName
GridDatatype findGridByShortName(String shortName)
-
getProjBoundingBox
ProjectionRect getProjBoundingBox()
-
getGridsets
List<GridDataset.Gridset> getGridsets()
Return GridDatatype objects grouped by GridCoordSystem. All GridDatatype in a Gridset have the same GridCoordSystem.- Returns:
- List of type GridDataset.Gridset
-
-