CCSDS ODM I/O - ephemerista.propagators.orekit.ccsds

The ccsds.py module.

This module contains functions for importing and exporting CCSDS Orbital Data Messages (ODM).

class ephemerista.propagators.orekit.ccsds.CcsdsFileFormat(*values)

An enum for specifying the type of ODM file format.

ephemerista.propagators.orekit.ccsds.parse_oem(path, dt)

Parse an OEM into a Trajectory.

Return type:

Trajectory

ephemerista.propagators.orekit.ccsds.parse_omm(path)

Parse an OMM as a Cartesian state.

Return type:

Cartesian

ephemerista.propagators.orekit.ccsds.parse_opm(path)

Parse an OPM into a Cartesian state.

Return type:

Cartesian

ephemerista.propagators.orekit.ccsds.write_oem(traj, path, dt, file_format)

Export a Trajectory as an OEM.

Return type:

None

ephemerista.propagators.orekit.ccsds.write_omm(cart, path, file_format)

Export Cartesian or Keplerian state as an OMM.

Return type:

None

ephemerista.propagators.orekit.ccsds.write_opm(cart, path, file_format)

Write a Cartesian or Keplerian state into an OPM file.

Return type:

None