Skip to content

/AWS1/CL_GERISOLINECXNGEOMETRY

Represents the geometry of connections between non-contiguous parts of an isoline. These connections can be provided in either coordinate pairs (LineString) or encoded (Polyline) format, matching the format specified in the request.

CONSTRUCTOR

IMPORTING

Optional arguments:

it_linestring TYPE /AWS1/CL_GERPOSITION_W=>TT_LINESTRING TT_LINESTRING

A series of [longitude, latitude] coordinate pairs defining the connection path when Simple geometry format is requested. These coordinates can be directly used as the coordinates array in a GeoJSON LineString without transformation.

LineString and Polyline are mutually exclusive properties.

iv_polyline TYPE /AWS1/GERPOLYLINE /AWS1/GERPOLYLINE

An encoded representation of the connection path when FlexiblePolyline geometry format is requested. This provides a more compact representation suitable for transmission and storage. To convert to GeoJSON, first decode to obtain coordinate pairs, then use those coordinates as the coordinates array in a GeoJSON LineString.

LineString and Polyline are mutually exclusive properties.


Queryable Attributes

LineString

A series of [longitude, latitude] coordinate pairs defining the connection path when Simple geometry format is requested. These coordinates can be directly used as the coordinates array in a GeoJSON LineString without transformation.

LineString and Polyline are mutually exclusive properties.

Accessible with the following methods

Method Description
GET_LINESTRING() Getter for LINESTRING, with configurable default
ASK_LINESTRING() Getter for LINESTRING w/ exceptions if field has no value
HAS_LINESTRING() Determine if LINESTRING has a value

Polyline

An encoded representation of the connection path when FlexiblePolyline geometry format is requested. This provides a more compact representation suitable for transmission and storage. To convert to GeoJSON, first decode to obtain coordinate pairs, then use those coordinates as the coordinates array in a GeoJSON LineString.

LineString and Polyline are mutually exclusive properties.

Accessible with the following methods

Method Description
GET_POLYLINE() Getter for POLYLINE, with configurable default
ASK_POLYLINE() Getter for POLYLINE w/ exceptions if field has no value
HAS_POLYLINE() Determine if POLYLINE has a value