
geogml:point( $point as element() ) as cts:point
Create a cts:point value from a GML Point element.
| Parameters | |
|---|---|
| point | A GML Point element. |
xquery version "1.0-ml";
import module namespace geogml = "http://marklogic.com/geospatial/gml"
at "/MarkLogic/geospatial/gml.xqy";
declare namespace gml="http://www.opengis.net/gml/3.2";
geogml:point(
<gml:Point>
<gml:pos>12.5 -127.24</gml:pos>
</gml:Point>
)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.