geogml:geospatial-query-from-elements( $regions as element()*, [$options as xs:string*], [$weight as xs:double?] ) as cts:query
Returns a cts:query
matching points within given
regions.
The point value is expressed in the content of the element as a pair of numbers, separated by whitespace and punctuation (excluding decimal points and sign characters).
Point values and boundary specifications of boxes are given in degrees relative to the WGS84 coordinate system. Southern latitudes and Western longitudes take negative values. Longitudes will be wrapped to the range (-180,+180) and latitudes will be clipped to the range (-90,+90).
If the northern boundary of a box is south of the southern boundary, no points will match. However, longitudes wrap around the globe, so that if the western boundary is east of the eastern boundary, then the box crosses the anti-meridian.
Special handling occurs at the poles, as all longitudes exist at latitudes +90 and -90.
This function will take into account interior polygons, if any, and properly construct the query to account for them.
xquery version "1.0-ml"; (: create a document with test data :) xdmp:document-insert("/points.xml", <root xmlns:gml="http://www.opengis.net/gml/3.2"> <item><gml:Point><gml:pos>10.5 30.0</gml:pos></gml:Point></item> <item><gml:Point><gml:pos>15.35 35.34</gml:pos></gml:Point></item> <item><gml:Point><gml:pos>5.11 40.55</gml:pos></gml:Point></item> </root> ); 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"; cts:search(doc("/points.xml")//item, geogml:geospatial-query-from-elements( <gml:Envelope> <gml:lowerCorner>10.0 35.0</gml:lowerCorner> <gml:upperCorner>20.0 40.0</gml:upperCorner> </gml:Envelope>) ) (: returns the following node: <item xmlns:gml="http://www.opengis.net/gml/3.2"> <gml:Point><gml:pos>15.35 35.34</gml:pos></gml:Point> </item> :) , cts:search(doc("/points.xml")//item, geogml:geospatial-query-from-elements( <gml:Envelope xmlns:gml="http://www.opengis.net/gml/3.2"> <gml:lowerCorner>10.0 40.0</gml:lowerCorner> <gml:upperCorner>20.0 35.0</gml:upperCorner> </gml:Envelope>) ) (: returns the following nodes (wrapping around the Earth): <item xmlns:gml="http://www.opengis.net/gml/3.2"> <gml:Point><gml:pos>10.5 30.0</gml:pos></gml:Point> </item> :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.