Package net.opengis.wcs20
Interface TargetAxisExtentType
-
- All Superinterfaces:
EObject,Notifier
- All Known Implementing Classes:
TargetAxisExtentTypeImpl
public interface TargetAxisExtentType extends EObjectUsed in the WCS 2.0 scaling extension to specify the scale for a particular axis- Author:
- Andrea Aime - GeoSolutions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAxis()The axis to be scaleddoublegetHigh()The max axis valuedoublegetLow()The min axis valuevoidsetAxis(String value)Sets the value of the 'Axis' attribute.voidsetHigh(double value)Sets the value of the 'High' attribute.voidsetLow(double value)Sets the value of the 'Low' attribute.
-
-
-
Method Detail
-
getAxis
String getAxis()
The axis to be scaled
-
setAxis
void setAxis(String value)
Sets the value of the 'Axis' attribute.- Parameters:
value- the new value of the 'Axis' attribute.- See Also:
getAxis()
-
getLow
double getLow()
The min axis value
-
setLow
void setLow(double value)
Sets the value of the 'Low' attribute.- Parameters:
value- the new value of the 'Low' attribute.- See Also:
getLow()
-
getHigh
double getHigh()
The max axis value
-
-