Interface GenericCurve

    • Method Detail

      • getTangent

        @UML(identifier="tangent",
             obligation=MANDATORY,
             specification=ISO_19107)
        double[] getTangent​(double s)
        Returns the tangent vector along this GenericCurve at the passed parameter value. This vector approximates the derivative of the parameterization of the curve. The tangent shall be a unit vector (have length 1.0), which is consistent with the parameterization by arc length.
        Parameters:
        s - The parameter value along this curve.
        Returns:
        The tangent unit vector.
        See Also:
        getStartParam(), getEndParam()
      • getStartConstructiveParam

        @UML(identifier="startConstrParam",
             obligation=MANDATORY,
             specification=ISO_19107)
        double getStartConstructiveParam()
        Indicates the parameter used in the constructive paramerization for the start point. There is no assumption that the startConstructiveParam is less than the endConstructiveParam, but the parameterization must be strictly monotonic (strictly increasing, or strictly decreasing).
        NOTE: Constructive parameters are often chosen for convenience of calculation, and seldom have any simple relation to arc distances, which are defined as the default parameterization. Normally, geometric constructions will use constructive parameters, as the programmer deems reasonable, and calculate arc length parameters when queried.
        Returns:
        The parameter used in the constructive paramerization for the start point.
        See Also:
        getStartParam(), getEndConstructiveParam(), forConstructiveParam(double)
      • getEndConstructiveParam

        @UML(identifier="endConstrParam",
             obligation=MANDATORY,
             specification=ISO_19107)
        double getEndConstructiveParam()
        Indicates the parameter used in the constructive paramerization for the end point. There is no assumption that the startConstructiveParam is less than the endConstructiveParam, but the parameterization must be strictly monotonic (strictly increasing, or strictly decreasing).
        NOTE: Constructive parameters are often chosen for convenience of calculation, and seldom have any simple relation to arc distances, which are defined as the default parameterization. Normally, geometric constructions will use constructive parameters, as the programmer deems reasonable, and calculate arc length parameters when queried.
        Returns:
        The parameter used in the constructive paramerization for the end point.
        See Also:
        getEndParam(), getStartConstructiveParam(), forConstructiveParam(double)
      • forConstructiveParam

        @UML(identifier="constrParam",
             obligation=MANDATORY,
             specification=ISO_19107)
        DirectPosition forConstructiveParam​(double cp)
        Returns the direct position for a constructive parameter. This method shall be an alternate representation of the curve as the continuous image of a real number interval without the restriction that the parameter represents the arc length of the curve, nor restrictions between a curve and its component curve segments. The most common use of this operation is to expose the constructive equations of the underlying curve, especially useful when that curve is used to construct a parametric surface.
        Parameters:
        cp - The constructive parameter.
        Returns:
        The direct position for the given constructive parameter.
        See Also:
        getStartConstructiveParam(), getEndConstructiveParam(), forParam(double)
      • forParam

        @UML(identifier="param",
             obligation=MANDATORY,
             specification=ISO_19107)
        DirectPosition forParam​(double s)
        Returns the direct position for a parameter. This method shall be the parameterized representation of the curve as the continuous image of a real number interval. The method returns the direct position on the GenericCurve at the distance passed. The parameterization shall be by arc length, i.e. distance along the GenericCurve measured from the start point and added to the start parameter.
        Parameters:
        s - The distance from the start point and added to the start parameter.
        Returns:
        The direct position for the given parameter.
        See Also:
        getStartParam(), getEndParam(), forConstructiveParam(double)
      • length

        @UML(identifier="length",
             obligation=MANDATORY,
             specification=ISO_19107)
        double length​(Position point1,
                      Position point2)
        Returns the length between two points. The length of a piece of curvilinear geometry shall be a numeric measure of its length in a coordinate reference system. Since length is an accumulation of distance, its return value shall be in a unit of measure appropriate for measuring distances. This method shall return the distance between the two points along the curve. The default values of the two parameters shall be the start point and the end point, respectively. If either of the points is not on the curve, then it shall be projected to the nearest direct position on the curve before the distance is calculated. If the curve is not simple and passes through either of the two points more than once, the distance shall be the minimal distance between the two points on this curve.
        Parameters:
        point1 - The first point, or null for the start point.
        point2 - The second point, or null for the end point.
        Returns:
        The length between the two specified points.
      • length

        @UML(identifier="length",
             obligation=MANDATORY,
             specification=ISO_19107)
        double length​(double cparam1,
                      double cparam2)
        Returns the length between two constructive parameters. This second form of the method length shall work directly from the constructive parameters, allowing the direct conversion between the variables used in parameterization and constructive parameters.

        Distances between direct positions determined by the default parameterization are simply the difference of the parameter. The length function also allows for the conversion of the constructive parameter to the arc length parameter using the following idiom:

        param = length(startConstructiveParam, constructiveParam) + startParam
        Parameters:
        cparam1 - The first constructive parameter.
        cparam2 - The second constructive parameter.
        Returns:
        The length between the two specified constructive parameter.
      • asLineString

        @UML(identifier="asLineString",
             obligation=MANDATORY,
             specification=ISO_19107)
        LineString asLineString​(double maxSpacing,
                                double maxOffset)
        Constructs a line string (sequence of line segments) where the control points (ends of the segments) lie on this curve. If maxSpacing is given (not zero), then the distance between control points along the generated curve shall be not more than maxSpacing. If maxOffset is given (not zero), the distance between generated curve at any point and the original curve shall not be more than the maxOffset. If both parameters are set, then both criteria shall be met. If the original control points of the curve lie on the curve, then they shall be included in the returned line string's control points. If both parameters are set to zero, then the line string returned shall be constructed from the control points of the original curve.
        NOTE: This function is useful in creating linear approximations of the curve for simple actions such as display. It is often referred to as a "stroked curve". For this purpose, the maxOffset version is useful in maintaining a minimal representation of the curve appropriate for the display device being targeted. This function is also useful in preparing to transform a curve from one coordinate reference system to another by transforming its control points. In this case, the maxSpacing version is more appropriate. Allowing both parameters to default to zero does not seem to have any useful geographic nor geometric interpretation unless further information is known about how the curves were constructed.
        Parameters:
        maxSpacing - The maximal distance between control points along the generated curve, or 0 for no constraint.
        maxOffset - The maximal distance between generated curve at any point and the original curve, or 0 for no constraint.
        Returns:
        The an approximation of this curve as a line string.