Created
April 25, 2019 14:49
-
-
Save translunar/8c52318245f6ca657fbc283e131f429b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# body 301 is the moon (note: bodvrd allows 'MOON' instead of 301) | |
mu = spice.bodvcd(301, 'GM', 1)[1][0] # gravity | |
req = spice.bodvcd(301, 'RADII', 3)[1][0] # equatorial radius | |
rpol = spice.bodvcd(301, 'RADII', 3)[1][2] # polar radius | |
f = (req - rpol) / req # first flattening | |
# Rectangular to geodetic coordinates (radians is default) | |
lon, lat, alt = spice.recgeo(r_lclf, req, f) | |
# Geodetic to rectangular coordinates | |
r_landing_lclf = spice.georec(lon_landing, lat_landing, alt_landing, req, f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment