Replies: 2 comments 1 reply
-
@natczicro — My guess is that you will get a better response to your question over on an AstroPy discussion forum, as Skyfield itself does not have a class named |
Beta Was this translation helpful? Give feedback.
0 replies
-
Oops you're right! I was going back and forth between trying the different libraries and lost track of which one I was using I did manage to find another library well suited for what I wanted in any event (https://github.com/geospace-code/pymap3d) |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
Hello I'm having a bit of trouble figuring out how to use Skyfield to convert between the Earth Centred Earth Fixed reference frame and the Earth Centred Inertial frame for some satellite positions and velocities. I have the coordinates in the ITRF or ECEF frame and so just need to apply the transformation in order to get them in the ECI frame.
I'm assuming I can use the 'itrs' reference frame and the SkyCoord object for ECEF
ITRS_position = SkyCoord(x=satellitePositionX, y=satellitePositionY, z=satellitePositionZ, frame='itrs', representation_type='cartesian',unit='m')
But it's not immediately clear if any of the other reference frames would correspond to the ECI reference frame.
I figure it should be fairly straightforward and I'm just overlooking something.
Beta Was this translation helpful? Give feedback.
All reactions