Skip to content

A Basex XQuery module which implements validation and comparison functions that can be applied to gml geometry data

License

Notifications You must be signed in to change notification settings

etf-validator/legacy-etf-gmlgeox

Repository files navigation

GML geometry library for BaseX

The library can be used by the ETF BaseX test driver to validate GML geometries within XML documents, perform geometry operations and index GML geometries.

European Union Public Licence 1.2 Latest version Build Status GmlGeoX javadoc

© 2017 European Union, interactive instruments GmbH. Licensed under the EUPL.

About ETF

ETF is an open source testing framework for validating spatial data, metadata and web services in Spatial Data Infrastructures (SDIs). For documentation about ETF, see http://docs.etf-validator.net.

Please report issues in the GitHub issue tracker of the ETF Web Application.

ETF component version numbers comply with the Semantic Versioning Specification 2.0.0.

Build information

The project can be build and installed by running the gradlew.sh/.bat wrapper with:

$ gradlew build install

Use of the library in the BaseX GUI

See the ETF developer manual for information how to install the library in the BaseX GUI.

The plugin can be used by importing the module de.interactive_instruments.etf.bsxm.GmlGeoX:

import module namespace ggeo = 'de.interactive_instruments.etf.bsxm.GmlGeoX';

let $gml := fn:parse-xml(
"<gml:posList xmlns:gml='http://www.opengis.net/gml/3.2' count='2'>0 0 1 0</gml:posList>")

return ggeo:validateAndReport($gml)

This is a simple quickstart example, see the wiki for more information!

Updating

Uninstall the package Options -> Packages... -> select de.interactive_instruments.etf.bsxm.GmlGeoX -> Delete... and install the new version as described above.

Geometry Support

The implementation of the module depends to a large extent on the deegree framework. The default geometry implementation of deegree does not support parsing all GML types, primarily the GML 3.3 types. Also, in a number of cases spatial operations are not supported for parsed geometries. This is primarily due to the fact that deegree relies on JTS to perform these operations, and that therefore the geometries must be simplified/linearized - which is not implemented for all geometry types that can be parsed by deegree. There is even a case where an incomplete JTS representations of a deegree geometry is accepted and used for spatial operations (for a surface with multiple polygon patches only the first is used)!

NOTE: Within this module, GML geometry elements are parsed by deegree, and then converted to JTS geometries via method toJTSGeometry(Geometry)in GmlGeoXUtils.java (at least for the spatial relationship operators).

Long story short, what this tells us is that a developer of this module must be very careful regarding which geometry types are supported for processing, and whether the computation is robust and exact or not. The documentation of a module function in both the source code itself (via Javadoc) and the test project developer manual should define the restrictions imposed by the implementation of the function.

For the spatial relationship operators, this page in the test project developer manual documents which geometry types are supported (also if they would be simplified/linearized) and which are not.

Geometry Validation

Validation of GML geometry elements within a given XML node is basically a SAX-based scan for recognized GML geometry elements, and subsequent validation of these elements. The default set of recognized element names is a subset of GML. Functions offered by the module can be used to modify this set within an XQuery. See the test project developer documentation for this module for further details.

Indexing

Feature geometries can be indexed using an r*-tree. To index a feature execute ggeo:index( Node featureNode, String id, Node xmlGeometry ). 'featureNode' is the XML node with the feature to index. The 'id' is a String id used for the geometry cache. Typically the gml:id of the feature is used. The 'xmlGeometry' is the XML node with the GML geometry element to index. It is essential that the XML database is not updated after using this function otherwise the database index structures will change and the internal cache references will become obsolete.

To index a node list of features ($features) simply execute (where 'ns:geometry' is the geometry property):

let $dummy := for $feature in $features
	return ggeo:index($feature,$feature/@gml:id,$feature/ns:geometry/*[1])

Once the index has been established, it can be searched to find all features whose bounding box overlaps with another bounding box. ggeo:search( minx, miny, maxx, maxy ) returns a node list of indexed features overlapping with the search bounding box. For example:

let $env := ggeo:envelope($candidate_geometry)
let $overlapping_features := ggeo:search($env[1],$env[2],$env[3],$env[4])

Or, if you want the candidate geometries that might intersect the search bounding box:

let $geometries :=
	for $feature in ggeo:search($env[1],$env[2],$env[3],$env[4])
		return ggeo:getGeometry($feature/@gml:id,$feature/ns:geometry/*[1])

Geometry caching

JTS geometries are cached during indexing to avoid multiple computation of the geometries from the XML. The cache size can be set before the indexing is started using ggeo:cacheSize( int size ), the default size is 100000 geometries. Geometries are accessed using geo:getGeometry( String id, Node xmlGeometry ). The id is specified during the indexing, typically the gml:id attribute of the GML feature is used. If the geometry with the id is currently in the cache, it is returned. Otherwise the geometry is computed from the XML and put into the cache.

Deterministic vs. Non-Deterministic Functions

When exposing a Java method as an XQuery function through a module, BaseX offers a way to indicate if the according function is deterministic. By default, such a function is assumed to be non-deterministic. Deterministic functions allow optimization, i.e. caching results instead of re-evaluating a function each time it occurs in the query execution.

As stated on the BaseX Wiki, only indicate that a Java method is deterministic if you know that it will have no side-effects and will always yield the same result. For the spatial relationship operators, for example, this is the case.

About

A Basex XQuery module which implements validation and comparison functions that can be applied to gml geometry data

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •