Replies: 1 comment 3 replies
-
Hi @cwywilson, You can access the transform and other parameters of coreg fits in the attribute nk = coreg.NuthKaab()
nk.fit(ref_dem, tba_dem, ...)
params = nk._meta It is a dictionary. Typically, X/Y shifts are in pixels ("offset_..."), Z is in DEM units ("vshift"). We need to make that attribute public and document the different keys that exist for each method (and make them more consistent!), it is planned along other work to finalize the Coreg modules in the next months! 😄 Happy new year as well! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Happy New Year,
Hello everyone,
I’ve been using the number of xdem.coreg to perform coregistration between two DEMs. The coregistration process works well, but I’m interested in understanding the transformation that was applied.
Specifically, I’m looking for a way to retrieve the x, y, z affine transform parameters that were used to align the two DEMs
Is there a way to get these transformation parameters after the coregistration process? Any guidance would be greatly appreciated.
Thank you!
Wilson
Beta Was this translation helpful? Give feedback.
All reactions