-
Notifications
You must be signed in to change notification settings - Fork 10
Description
There's an interesting ongoing discussion on the PROJ mailing list ("Static/Dynamic datum problems " emails at https://lists.osgeo.org/pipermail/proj/2019-June/date.html) that boils down to the issue of dynamic datum/CRS and coordinate epoch.
In the GeoTIFF realm, if one would use the code of a dynamic CRS as the value of GeodeticCRSGeoKey or ProjectedCRSGeoKey, we should normally also indicate the coordinate epoch at which the coordinates in the ModelTiepointTag or ModelTransformationTag are specified, but there's no standardized way of doing that.
Should that be a new GeoKey ?
or if we go for using a full WKT approach in a next major version (see #56), that could be solved by using the COORDINATEMETADATA keyword added in the new CRS WKT revised standard (OGC 18-010) :
COORDINATEMETADATA[
GEOGCRS["WGS 84 (G1762)",
DYNAMIC[FRAMEEPOCH[2005.0]],
DATUM["World Geodetic System 1984 (G1762)",
ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1.0]]
],
CS[ellipsoidal,3],
AXIS["(lat)",north,ANGLEUNIT["degree",0.0174532925199433]],
AXIS["(lon)",east,ANGLEUNIT["degree",0.0174532925199433]],
AXIS["ellipsoidal height (h)",up,LENGTHUNIT["metre",1.0]]
],
EPOCH[2016.47]
]