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

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

import org.geolatte.geom.Box;
import org.geolatte.geom.Point;
import org.geolatte.geom.Position;
import org.geolatte.geom.builder.DSL;

import java.util.Random;


import static org.geolatte.geom.generator.PositionGenerator.positionWithin;

/**
 * Created by Karel Maesen, Geovise BVBA on 03/08/2018.
 */
class DefaultPointGenerator

extends AbstractGeometryGenerator> { DefaultPointGenerator(Box

bbox, Random rnd) { super(bbox, rnd); } @Override public Point

generate() { return DSL.point(crs(), positionWithin(bbox, rnd) ); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy