mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
<h3>geomFromGML function</h3>
|
|
Returns a geometry from a GML representation of geometry
|
|
|
|
<h4>Syntax</h4>
|
|
<pre>geomFromGML(text)</pre>
|
|
|
|
<h4>Arguments</h4>
|
|
text → GML representation of a geometry
|
|
|
|
<h4>Example</h4>
|
|
<pre> geomFromGML( '<gml:LineString srsName="EPSG:4326"><gml:coordinates>4,4 5,5 6,6</gml:coordinates></gml:LineString>') → returns a geometry</pre>
|
|
|