Skip to main content

Python Orbital Ephemeris Message (OEM) tools

Project description

Python Orbital Ephemeris Message tools

Python tools for working with Orbital Ephemeris Messages (OEMs).

Development Status

GitHub Release GitHub

GitHub last commit Pipeline Status Coverage Status Documentation Status

Installation

The oem package is available through pip.

pip install oem

Usage

The OrbitalEphemerisMessage class is the primary interface for OEM Files.

from oem import OrbitalEphemerisMessage

ephemeris = OrbitalEphemerisMessage.from_ascii_oem(file_path)

Each OEM is made up of one or more segments of state and optional covariance data. The OrbitalEphemerisMessage class provides iterables for both.

for segment in ephemeris:
    for state in segment:
        print(state.epoch, state.position, state.velocity)

    for covariance in segment.covariances:
        print(covariance.epoch, covariance.matrix)

All vectors and matrices are numpy arrays.

It is also possible to retrieve a complete list of states and covariances through the .states and .covariances properties. These attributes streamline interaction with single-segment ephemerides.

for state in ephemeris.states:
    print(state.epoch, state.position, state.velocity)
for covariance in ephemeris.covariances:
    print(covariance.epoch, covariance.matrix)

Reference Standards

This implementation follows the CCSDS recommended standards for Orbit Data Messages.

[1] Orbit Data Messages, CCSDS 502.0-B-2, 2012. Available: https://public.ccsds.org/Pubs/502x0b2c1.pdf

[2] XML Specification for Navigation Data Messages, CCSDS 505.0-B-1, 2010. Available: https://public.ccsds.org/Pubs/505x0b1.pdf

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oem-0.1.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oem-0.1.0-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file oem-0.1.0.tar.gz.

File metadata

  • Download URL: oem-0.1.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for oem-0.1.0.tar.gz
Algorithm Hash digest
SHA256 551b925cfe5f4428139c380b230303110ea81ff3f910a12fc7a6d1cef78c2b7a
MD5 c3bf705351414b6bc68b8a184e026820
BLAKE2b-256 b3dd45038ccbe9fd0b50c107e9667ff61bf7aa3d90caaab1d12408f4be6cd5f3

See more details on using hashes here.

File details

Details for the file oem-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: oem-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for oem-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c15b6e7883f6734df8077b6dd82d2578e393fef6cb15ebc0d7c60d35c60332ff
MD5 097e7874fd3684e6f615e579f71bd3e2
BLAKE2b-256 0cdd2fab504e3031290b884792caca7c058b9db408e7ff829fe7c1b7d04dcf5d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page