Open trey-stafford opened 1 month ago
There are also {PLATE}_T
params available for ITRF2008: https://github.com/OSGeo/PROJ/blob/master/data/ITRF2008
Some context in this proj mailing list thread about the _T
params: https://lists.osgeo.org/pipermail/proj/2022-February/010537.html
ITRF2020 parameters were added in proj 9.5.0. See the PR that added these params here: https://github.com/OSGeo/PROJ/pull/4235
The paper that published the PMM parameters for ITRF 2020 can be found here: https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2023GL106373
The paper notes that:
The params added in the proj PR linked above provide both transformation parameters with and without the ORB components.
E.g.,
ITRF2020:ANTA
gives the transformation params for Antarctica without the ORB andITRF2020:ANTA_T
gives the params with the ORB components.As mentioned above, the ORB components should be applied for horizontal measurements and not for the vertical component.
Based on this, to properly support PMM transformations for ITRF2020, we would want to support the use of the
ITRF2020:ANTA_T
for the lat/lon andITRF2020:ANTA
for the elevation component. Currently, the code always just adds the plate name without a_T
.