Package org.gvsig.fmap.geom
Interface DirectPosition
public interface DirectPosition
DirectPosition object data types hold the coordinates for
a position within some coordinate reference system.
The coordinate reference system is described in
ISO 19111.
- Author:
- Jorge Piera
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the length of coordinate.doublegetOrdinate(int dimension) Returns the ordinate of the given dimension.
-
Method Details
-
getDimension
int getDimension()Returns the length of coordinate. This is determined by the reference system.- Returns:
- The dimension
-
getOrdinate
double getOrdinate(int dimension) Returns the ordinate of the given dimension.- Parameters:
dimension- The dimension to retrieve- Returns:
- The value of the ordinate
-