Project Orbital State to Ground #347
-
Hello, Is there a method in the Nyx or ANISE toolkit to project an orbital state to the ground ? Is that what this returns ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi Guillaume, Yes, ANISE provides the I hope this helps. |
Beta Was this translation helpful? Give feedback.
Hi Guillaume,
Yes, ANISE provides the
latlongalt
function, which returns the latitude in degrees, longitude in degrees, and altitude in kilometers. If you only want one of these three, you can call the respective function directly:latitude_deg
,longitude_deg
, orheight_km
. Note that the orbit state should be in a body fixed frame (e.g. the ECEF frame) for this computation to be valid. The frame also needs to be loaded from the Almanac with the planetary constants so that the tri-axial ellipsoid which defines the body can be correctly computed, cf. theshape
field of Frame.I hope this helps.