Class ST_MakeArcPolygon

  • All Implemented Interfaces:
    org.h2gis.api.Function, org.h2gis.api.ScalarFunction

    public class ST_MakeArcPolygon
    extends org.h2gis.api.DeterministicScalarFunction
    ST_MakeArcPolygon constructs an elliptical arc, as a Polygon centered at the given point.
    Author:
    Erwan Bocher, CNRS, 2023
    • Field Summary

      • Fields inherited from interface org.h2gis.api.Function

        PROP_NAME, PROP_REMARKS
      • Fields inherited from interface org.h2gis.api.ScalarFunction

        PROP_DETERMINISTIC
    • Constructor Detail

      • ST_MakeArcPolygon

        public ST_MakeArcPolygon()
    • Method Detail

      • getJavaStaticMethod

        public String getJavaStaticMethod()
      • execute

        public static org.locationtech.jts.geom.Polygon execute​(org.locationtech.jts.geom.Point p,
                                                                double distance,
                                                                double startAngle,
                                                                double angExtent)
        Creates an elliptical arc, as a Polygon centered at the given point with the given start angle and end angle size.
        Parameters:
        p - Point
        startAngle - start angle in radians
        angExtent - size of angle in radians
        distance - in meters
        Returns:
        An arc Polygon centered at the given point.