| org.jscience.geography.coordinates.CompoundCoordinates
CompoundCoordinates | final public class CompoundCoordinates extends Coordinates> (Code) | | This class represents a coordinates made up by combining
two coordinates objects together.
author: Jean-Marie Dautelle version: 3.0, February 13, 2006 |
getCoordinateReferenceSystem | public CompoundCRS<C1, C2> getCoordinateReferenceSystem()(Code) | | |
getDimension | public int getDimension()(Code) | | |
getFirst | public C1 getFirst()(Code) | | Returns the first coordinates.
the first coordinates. |
getNext | public C2 getNext()(Code) | | Returns the next coordinates.
the next coordinates. |
valueOf | public static CompoundCoordinates<T1, T2> valueOf(T1 first, T2 next)(Code) | | Returns a compound coordinates made up of the specified coordinates.
Parameters: first - the first coordinates. Parameters: next - the next coordinates. |
|
|