Exemple #1
0
 /**
  * Reads an element as a gml node. Returns a geometry element or throws an exception if the
  * element is of the wrong type.
  *
  * @param node xml node containing gml object(s)
  * @return geometry
  * @throws QueryException query exception
  */
 private Geometry checkGeo(final ANode node) throws QueryException {
   final Geometry geo = geo(node, QNAMES);
   if (geo == null) throw GeoErrors.unrecognizedGeo(node.qname().local());
   return geo;
 }