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

com.datastax.dse.driver.shaded.esri.core.geometry.ogc.OGCSurface Maven / Gradle / Ivy

package com.datastax.dse.driver.shaded.esri.core.geometry.ogc;

public abstract class OGCSurface extends OGCGeometry {
	public double area() {
		return getEsriGeometry().calculateArea2D();
	}

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

	public OGCPoint pointOnSurface() {
		// TODO: support this (need to port OperatorLabelPoint)
		throw new UnsupportedOperationException();
	}

	public abstract OGCMultiCurve boundary();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy