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

eu.europa.ec.eurostat.jgiscotools.algo.base.distance.CentroidDistance Maven / Gradle / Ivy

/**
 * 
 */
package eu.europa.ec.eurostat.jgiscotools.algo.base.distance;

import org.locationtech.jts.geom.Geometry;

import eu.europa.ec.eurostat.jgiscotools.feature.Feature;

/**
 * @author julien Gaffuri
 *
 */
public class CentroidDistance implements Distance {

	public double get(Feature f1, Feature f2) {
		Geometry g1 = f1.getGeometry();
		Geometry g2 = f2.getGeometry();
		return g1.getCentroid().distance(g2.getCentroid());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy