Package org.geotools.coverage.grid.io
Interface DimensionDescriptor
-
- All Known Implementing Classes:
DefaultDimensionDescriptor
public interface DimensionDescriptorDescribes a "dimension" exposed by a structured grid coverage reader.- Author:
- Simone Giannecchini, GeoSolutions SAS, Andrea Aime, GeoSolutions SAS, Daniele Romagnoli, GeoSolutions SAS
-
-
Field Summary
Fields Modifier and Type Field Description static StringCRSstatic StringELEVATIONstatic StringRESOLUTIONstatic StringRESOLUTION_Xstatic StringRESOLUTION_Ystatic StringTIME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEndAttribute()The end attribute (In case of dimensions with ranges)StringgetName()The dimension nameStringgetStartAttribute()The start attributeStringgetUnits()The dimension unitsStringgetUnitSymbol()The dimension unit symbol
-
-
-
Field Detail
-
TIME
static final String TIME
- See Also:
- Constant Field Values
-
ELEVATION
static final String ELEVATION
- See Also:
- Constant Field Values
-
CRS
static final String CRS
- See Also:
- Constant Field Values
-
RESOLUTION
static final String RESOLUTION
- See Also:
- Constant Field Values
-
RESOLUTION_X
static final String RESOLUTION_X
- See Also:
- Constant Field Values
-
RESOLUTION_Y
static final String RESOLUTION_Y
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
String getName()
The dimension name
-
getUnitSymbol
String getUnitSymbol()
The dimension unit symbol
-
getUnits
String getUnits()
The dimension units
-
getStartAttribute
String getStartAttribute()
The start attribute
-
getEndAttribute
String getEndAttribute()
The end attribute (In case of dimensions with ranges)
-
-