GeoLatte / geolatte-geom

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

Missing EPSG:4979 #165

Open lbruun opened 9 months ago

lbruun commented 9 months ago

This EPSG is not present in the spatial_ref_sys.txt file, thus not present in the lib.

I would think the spatial_ref_sys.txt file needs to be refreshed so that it includes EPSGs defined after 2018 ?

Workaround

EPSG:4979 is known as the 3D version of EPSG:4326. Therefore can be simulated:

var mySimulatedEPSG4979 = org.geolatte.geom.crs.CoordinateReferenceSystems.WGS84
    .addVerticalSystem(LinearUnit.METER, G3D.class);