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

com.esri.core.geometry.ogc.OGCMultiSurface Maven / Gradle / Ivy

Go to download

The Esri Geometry API for Java enables developers to write custom applications for analysis of spatial data.

There is a newer version: 2.2.4
Show newest version
package com.esri.core.geometry.ogc;

public abstract class OGCMultiSurface extends OGCGeometryCollection {
	public double area() {
		return getEsriGeometry().calculateArea2D();
	}

	public OGCPoint centroid() {
		// TODO
		throw new UnsupportedOperationException();
	}

	public OGCPoint pointOnSurface() {
		// TODO
		throw new UnsupportedOperationException();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy