All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geolatte.geom.LLAPositionVisitor Maven / Gradle / Ivy

Go to download

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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy