GeoLatte / geolatte-geom

A geometry model that conforms to the OGC Simple Features for SQL specification.
Other
134 stars 63 forks source link

Fixed HANA-specific handling of Z and M axes in the WKT representation #55

Closed breglerj closed 6 years ago

breglerj commented 7 years ago

HANA always requires specifying Z and/or M for 3D and measured geometries. This is different from the PostGIS representation which only requires specifying 'M' for 2D measured geometries.

PostGIS | HANA

POINT(x y) | POINT(x y) POINTM(x y m) | POINT M(x y m) POINT(x y z) | POINT Z(x y z) POINT(x y z m) | POINT ZM(x y z m)