Open
Description
The function geof:projectTo assumes that GeoSPARQL supports 3D geometry, but that is not the case:
geof:projectTo (geom1: ogc:geomLiteral, dimVec: xsd:integer): ogc:geomLiteral
Projects the elements of geometry
geom1
to the dimensions specified by thedimVec
"dimensional vector".
dimVec
is a binary number indicating which dimensions to project to (retain) from thegeom
, for example, using dimensions x, y & z:
- "010" projects to the y dimension, only
- "110" projects to the x and y dimensions
A projection may only occur from a geometry to a geometry of equal or fewer dimensions and, so far, GeoSPARQL only allos 1-, 2- & 3-dimensional objects, thus
projectTo
can only be specified from 3 to 2, 2 to 1 or 1 to 0 dimensions.
Activity