use of com.esri.core.geometry.OperatorBoundary in project calcite by apache.
the class GeoFunctions method ST_Boundary.
/**
* Returns the boundary of {@code geom}.
*/
public static Geom ST_Boundary(Geom geom) {
OperatorBoundary op = OperatorBoundary.local();
Geometry result = op.execute(geom.g(), null);
return geom.wrap(result);
}
Aggregations