University of Iowa Cassini Ephemeris Tool
UiowaEphTool provides trajectories for Cassini, Ulysses, Voyager 1, and Voyager 2 in different coordinate systems. Its integration into Speasy makes it easy to get any available trajectory for any time range.
Basics: Getting data from UiowaEphTool module
All the trajectories available are discoverable using speasy dynamic inventory, they are organized by origin/coordinate system/object:
>>> import speasy as spz
>>> trajectories = spz.inventories.tree.uiowaephtool.Trajectories
>>> cassini_traj=spz.get_data(trajectories.Callisto.Co_rotational.Cassini, "2010-01-02", "2010-01-03")
>>> cassini_traj
<speasy.products.variable.SpeasyVariable object at ...>
>>> cassini_traj.shape
(1440, 3)
>>> cassini_traj.columns
['X', 'Y', 'Z']
Coordinate systems
Here the coordinate system is the middle level of the inventory tree rather than an argument, so you select it by browsing to it, and the systems on offer depend on the origin body:
>>> sorted(k for k in trajectories.Callisto.__dict__ if not k.startswith(('_', 'spz')))
['Co_rotational', 'Ecliptic', 'Equatorial', 'Geographic', 'Id', 'Radius']
Id and Radius in the listing above are body properties, not coordinate systems. The table below
is generated from Speasy’s own inventory-building code every time these docs are built (there’s no
external server to query here, unlike CDPP 3DView — the body/coordinate-system list is defined directly
in speasy.data_providers.uiowa_eph_tool), so it always matches what the installed version actually
offers:
Generated from the current Speasy inventory when these docs were built, on 2026-08-05 08:19 UTC. Run the same introspection yourself (sorted(k for k in trajectories.<Body>.__dict__ if not k.startswith(('_', 'spz'))), minus Id/Radius) to check any single body.
Body |
Coordinate systems |
|---|---|
Anthe |
|
Callisto |
|
Dione |
|
Earth |
|
Enceladus |
|
Europa |
|
Ganymede |
|
Helene |
|
Hyperion |
|
Iapetus |
|
Io |
|
Jupiter |
|
Methone |
|
Mimas |
|
Pallene |
|
Phoebe |
|
Rhea |
|
Saturn baricentric |
|
Saturn geocentric |
|
Sun |
|
Telesto |
|
Tethys |
|
Titan |
|
Venus |
|