Package org.geotools.coverage.grid.io
Interface DimensionDescriptor
-
- All Known Implementing Classes:
DefaultDimensionDescriptor
public interface DimensionDescriptor
Describes 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 String
CRS
static String
ELEVATION
static String
RESOLUTION
static String
RESOLUTION_X
static String
RESOLUTION_Y
static String
TIME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEndAttribute()
The end attribute (In case of dimensions with ranges)String
getName()
The dimension nameString
getStartAttribute()
The start attributeString
getUnits()
The dimension unitsString
getUnitSymbol()
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)
-
-