Message Boards Message Boards

0
|
249 Views
|
1 Reply
|
0 Total Likes
View groups...
Share
Share this post:

Getting ephemeris data in heliocentric coordinates

Posted 8 days ago

I am trying to use the JPL Horizons Ephemeris database to determine planetary positions and velocities in heliocentric coordinates. My code is:

ResourceFunction[
  "HorizonsEphemerisData"]["State", {Entity["Planet", "Earth"], <|
   "Dates" -> {DateObject[{2024, 4, 19}],
     DateObject[{2024, 7, 19 + 20}],
     Quantity[10, "Days"]}|>}, All, "Dataset", {"Position",
  "Velocity"}]

But this does not return data in heliocentric coordinates. Can anyone please suggest how I can get the position and velocity in heliocentric coordinates?

POSTED BY: George Hazelrigg

Problem solved.

ResourceFunction["HorizonsEphemerisData"]["State", <|
  "Target" -> Entity["Planet", "Earth"], "Center" -> "@0",
  "Dates" -> {DateObject[{2024, 7, 19}],
    DateObject[{2024, 7, 19}] + Quantity[12, "Days"],
    Quantity[1, "Days"]}|>, {"Position", "Velocity"}, "Dataset"]

Must specify the "Center" as "@0". Had to look this up in the NASA documents on the Horizons database. I could not find any documentation on this by Mathematica.

POSTED BY: George Hazelrigg
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract