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

org.locationtech.jts.algorithm.InteriorPointPoint Maven / Gradle / Ivy


/*
 * Copyright (c) 2016 Vivid Solutions.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompanies this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 *
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */
package org.locationtech.jts.algorithm;

import org.locationtech.jts.geom.Coordinate;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.geom.GeometryCollection;
import org.locationtech.jts.geom.Point;

/**
 * Computes a point in the interior of an point geometry.
 * 

Algorithm

* Find a point which is closest to the centroid of the geometry. * * @version 1.7 */ public class InteriorPointPoint { private Coordinate centroid; private double minDistance = Double.MAX_VALUE; private Coordinate interiorPoint = null; public InteriorPointPoint(Geometry g) { centroid = g.getCentroid().getCoordinate(); add(g); } /** * Tests the point(s) defined by a Geometry for the best inside point. * If a Geometry is not of dimension 0 it is not tested. * @param geom the geometry to add */ private void add(Geometry geom) { if (geom instanceof Point) { add(geom.getCoordinate()); } else if (geom instanceof GeometryCollection) { GeometryCollection gc = (GeometryCollection) geom; for (int i = 0; i < gc.getNumGeometries(); i++) { add(gc.getGeometryN(i)); } } } private void add(Coordinate point) { double dist = point.distance(centroid); if (dist < minDistance) { interiorPoint = new Coordinate(point); minDistance = dist; } } public Coordinate getInteriorPoint() { return interiorPoint; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy