Getting geoid height #1462
Unanswered
NilsKeunecke
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to extract geoid height at a location (lat, lon) to get from EGM96 elevation to WGS84 ellipsoid elevation.
Essentially solve for N in the equation here.
First I define by standard WGS84 ellipsoid CRS:
And secondly, I define a combination of a 2D WGS84 with EGM96 elevation:
And then I finally combine by 2D CRS with my Vertical CRS:
Even though the
egm96
andwgs84_no_altitude
share the same area of use, the CompoundCRS seems to have no area of use:I saw that one can inspect if there is missing information for the transformation and download it.:
This indicates that all should be good to go. But when I try to use the transformation, it does nothing:
Questions:
Why is the area of use undefined for
wgs84_egm96_crs
?How do I combine the two CRS properly? (How do I combine a Geographic 2D CRS with a Vertical CRS?)
Beta Was this translation helpful? Give feedback.
All reactions