Skip to content

Instantly share code, notes, and snippets.

@translunar
Created April 25, 2019 14:49
Show Gist options
  • Save translunar/8c52318245f6ca657fbc283e131f429b to your computer and use it in GitHub Desktop.
Save translunar/8c52318245f6ca657fbc283e131f429b to your computer and use it in GitHub Desktop.
# 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