Converting local coordinate system to global (WGS84) #1081
Unanswered
monkeywithpants
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
Uh oh!
There was an error while loading. Please reload this page.
-
I have created a local coordinate system with several points and I am currently trying to convert this local system to a global one with the aid of the Helmholtz transformation. I got a solution with the github code of this thread . However, the used code is hard to understand and I was wondering how I could transform my COS more easily? I have three local points which are linked to global ones like this:
How am I able to transform the following points more easily?
local_other_p = [[0, 1000, 0], [0, -1000, 0], [1000, 0, 0], [-1000, 0, 50]]
Is it possible with pyproj? There is a possibility to do a Helmert transformation, but I barely understand the command.
Thanks for any help in terms of coding this transformation!
Beta Was this translation helpful? Give feedback.
All reactions