org.geolatte.geom.LLAPositionVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-geom Show documentation
Show all versions of geolatte-geom Show documentation
This geoLatte-geom library offers a geometry model that conforms to the OGC Simple Features for SQL
specification.
The newest version!
package org.geolatte.geom;
/**
* A low-level access Position Visitor.
*
* This visitor is for high performance applications. The PositionSequence that accepts the visitor passes each
* coordinate as an array.
*
* @see org.geolatte.geom.PositionSequence#accept(LLAPositionVisitor)
*
* @author Karel Maesen, Geovise BVBA
* creation-date: 3/4/14
*/
public interface LLAPositionVisitor {
/**
* The visit method that is executed for each coordinate.
*
* @param coordinate the visited coordinate in array representation
*
*/
public void visit(double[] coordinate);
}