|
|
|
|
|
- Properties specific to LinestringGeo variables
- Functions that use the LinestringGeo type
LinestringGeo (Variable type) In french: PolyligneGéo
The LinestringGeo type is used to define all the advanced characteristics of a geographic linestring. You can define and change the characteristics of this linestring using different WLanguage properties. Characteristics of a geographic linestring: A geographic linestring is a set of contiguous segments represented on a geographic coordinate system (latitude - longitude). It is defined by a sequence of points. Remark: Geographic linestrings are not composed of straight segments like 2D linestrings. A geographic linestring describes a location on the spheroidal surface of the earth: a series of arcs with the curvature of the earth, comparable to flight paths. If the start and end points of a linestring are the same, the linestring is "closed". If the linestring does not self-intersect, the linestring is "simple". A simple and closed linestring is referred to as a "LinearRing". Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable. myPoint is PointGeo
myLine is LinestringGeo
myPoint.Latitude = 12.127542
myPoint.Longitude = 35.4245
myLine.Point.Add(myPoint)
myPoint.Latitude = 12.24147
myPoint.Longitude = 35.2147
myLine.Point.Add(myPoint)
myPoint.Latitude = 13.2411
myPoint.Longitude = 33.2141
myLine.Point.Add(myPoint)
Properties Properties specific to LinestringGeo variables The following properties can be used to manipulate a geographic linestring: | | | Property name | Type used | Effect |
---|
Point | Array of PointGeo | Linestring points. | Type | Integer constant | Type of the current geometry. For a linestring defined with geographic coordinates, corresponds to the gtLinestringGeo constant. Remark: Until version 2024 Update 2, this constant was named stLinestringGeo.This property is available in read-only. |
Remarks Functions that use the LinestringGeo type The following functions use LinestringGeo variables:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|