Search in sources :

Example 1 with OperatorBoundary

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);
}
Also used : Geometry(com.esri.core.geometry.Geometry) MapGeometry(com.esri.core.geometry.MapGeometry) OperatorBoundary(com.esri.core.geometry.OperatorBoundary)

Aggregations

Geometry (com.esri.core.geometry.Geometry)1 MapGeometry (com.esri.core.geometry.MapGeometry)1 OperatorBoundary (com.esri.core.geometry.OperatorBoundary)1