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

org.geolatte.geom.GeometryOperations 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;

/**
 * Factory methods for Geometry Operations instances.
 */
public class GeometryOperations {

    /**
     * Create an instance of {@code ProjectedGeometryOperations}
     *
     * @return
     */
    public static ProjectedGeometryOperations projectedGeometryOperations() {
        return ProjectedGeometryOperations.Default;
    }

    /**
     * Create an instance of {@code MeasureGeometryOperations}
     *
     * @return
     */
    public static MeasureGeometryOperations measureGeometryOperations() {
        return MeasureGeometryOperations.Default;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy