Coordinate transformation - NED and ECEF frames

AI Thread Summary
To transform accelerations from the sensor's body frame to the Earth Centered Earth Fixed (ECEF) frame, the rotation matrix R(North East Down to ECEF) can be derived using latitude and longitude. The formula provided for R(NED to ECEF) utilizes trigonometric functions of latitude and longitude, which are crucial for accurate conversion. It is important to note that while this matrix is typically used for coordinates, its applicability to vector transformations may require further validation. The overall transformation from the body frame to ECEF can be expressed as Acceleration(ECEF) = R(Body to ECEF) * Acceleration(Body frame). Ensuring the correct application of these transformations is essential for accurate acceleration data representation in the ECEF frame.
9988776655
Messages
46
Reaction score
0
Hi,

I have a reference device that outputs euler angles, which are angles that relate the sensor body frame to the north east down frame. These angles are called pitch roll and yaw. The sensor is an accelerometer. I know how to get the rotation matrix that will put accelerations from the accelerometer sensor body frame to the north east down frame. Call this rotation matrix R(Body to North East Down).

How do I get the rotation matrix that will rotate from Body frame to Earth Centered Earth Fixed frame? I need to do this as all of my other calculations use the Earth Centered Earth Fixed frame. I can see that:

R(Body to Earth Centred Earth Fixed) = R(Body to North East Down) * R(North East Down frame to Earth Centered Earth Fixed).

How do I get R(North East Down frame to Earth Centered Earth Fixed)?

To get acceleration in the Earth centered Earth fixed frame, would I use:
Acceleration(Earth Centred Earth Fixed) = R(Body to Earth Centred Earth Fixed)*Acceleration(Body frame) ?

I have access to the position in latitude and longitude (radians). Also note that acceleration is a vector not a coordinate.

Thanks.
 
Latitude and longitude give you the rotation angles to convert from NED to ECEF. I am working from vague memory, but I think that the latitude gives the rotation angle needed even when you are using the accurate WGS84 Earth model. If you have magnetic north, don't forget to rotate to true north.
 
R(North East Down frame to Earth Centered Earth Fixed) =

[ sinLatitude*cosLongitude; -sinLongitude; -cosLatitude*cosLongitude]
[-sinLatitude*sinLongitude; cosLongitude; -cosLatitude*sinLongitude]
[cosLatitude; 0; -sinLatitude; ]

I am unsure if this is correct for my application because this may only be relevant for coordinates not vectors. Please comment.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Thread 'Imaginary Pythagoras'
I posted this in the Lame Math thread, but it's got me thinking. Is there any validity to this? Or is it really just a mathematical trick? Naively, I see that i2 + plus 12 does equal zero2. But does this have a meaning? I know one can treat the imaginary number line as just another axis like the reals, but does that mean this does represent a triangle in the complex plane with a hypotenuse of length zero? Ibix offered a rendering of the diagram using what I assume is matrix* notation...

Similar threads

Back
Top