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

Co_rotational, Ecliptic, Equatorial, Geographic

Callisto

Co_rotational, Ecliptic, Equatorial, Geographic

Dione

Co_rotational, Ecliptic, Equatorial, Geographic

Earth

Ecliptic, Equatorial, Geographic

Enceladus

Co_rotational, Ecliptic, Equatorial, Geographic

Europa

Co_rotational, Ecliptic, Equatorial, Geographic

Ganymede

Co_rotational, Ecliptic, Equatorial, Geographic

Helene

Co_rotational, Ecliptic, Equatorial, Geographic

Hyperion

Co_rotational, Ecliptic, Equatorial, Geographic

Iapetus

Co_rotational, Ecliptic, Equatorial, Geographic

Io

Co_rotational, Ecliptic, Equatorial, Geographic

Jupiter

Ecliptic, Equatorial, Geographic

Methone

Co_rotational, Ecliptic, Equatorial, Geographic

Mimas

Co_rotational, Ecliptic, Equatorial, Geographic

Pallene

Co_rotational, Ecliptic, Equatorial, Geographic

Phoebe

Co_rotational, Ecliptic, Equatorial, Geographic

Rhea

Co_rotational, Ecliptic, Equatorial, Geographic

Saturn baricentric

Ecliptic, Equatorial, Geographic, KSM

Saturn geocentric

Ecliptic, Equatorial, Geographic, KSM

Sun

Ecliptic, Equatorial

Telesto

Co_rotational, Ecliptic, Equatorial, Geographic

Tethys

Co_rotational, Ecliptic, Equatorial, Geographic

Titan

Co_rotational, Ecliptic, Equatorial, Geographic

Venus

Ecliptic, Equatorial, Geographic