satelles


Namesatelles JSON
Version 0.12.0 PyPI version JSON
download
home_pageNone
SummaryModern, type-safe python library for TLE, OMM et al. handling and orbit propagation to accurately locate your satellites in the sky.
upload_time2025-07-15 07:50:17
maintainerNone
docs_urlNone
authorNone
requires_python>=3.13
licenseMIT License Copyright (c) 2025 Michael J. Roberts Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords astrodynamics astronomy omm orbit propagation satellite tle
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![pypi](https://img.shields.io/pypi/v/satelles.svg)
![versions](https://img.shields.io/pypi/pyversions/satelles.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![satelles/test](https://github.com/michealroberts/satelles/actions/workflows/test.yml/badge.svg)](https://github.com/michealroberts/satelles/actions/workflows/test.yml)

# Satelles

Modern, type-safe, zero-dependency python library for TLE, OMM et al. handling and orbit propagation to accurately locate your satellites in the sky.

## Installation

```bash
uv add satelles
```

or

using your preferred environment / package manager of choice, e.g., `poetry`, `conda` or `pip`:

```bash
pip install satelles
```

```bash
poetry add satelles
```

```bash
conda install satelles
```

## Usage

```python
from datetime import datetime, timezone

from satelles import TLE

issTLE: str = """        
  1 25544U 98067A   20062.59097222  .00016717  00000-0  10270-3 0  9006
  2 25544  51.6442 147.1064 0004607  95.6506 329.8285 15.49249062  2423
"""

satellite = TLE(tle_string=issTLE).as_satellite()

satellite.at(when=datetime(2021, 5, 15, 0, 0, 0, tzinfo=timezone.utc))

# Get the Earth Centric Inertial (ECI) coordinate of the satellite at the given time:
eci = satellite.eci_coordinate

# Get the Equatorial Coordinate of the satellite at the given time:
equatorial = satellite.equatorial_coordinate
...
```

As the API is fully typed, you can use your IDE's autocompletion to see all the available methods and properties.

We have also provided further usage examples in the [examples](./examples) directory.

## Milestones

- [X] Type-safe modern 3.6+ Python
- [X] Fully unit tested
- [X] Simpler API using Pydantic base models for validation
- [X] Zero-external dependencies (pure Python 3.6+ with no external C/C++ dependencies)
- [ ] Example API usage
- [X] Fully supported Two-Line Element (TLE) parsing and operations
- [ ] Fully supported Orbital Mean Elements Message (OMM) parsing and operations
- [ ] Fully supported TLE to OMM conversion
- [ ] Fully supported laser ranging formats (e.g., CPF and CRD).
- [X] Fully supported Earth Centred-Earth Fixed (ECEF) to East-North-Up (ENU) conversion
- [X] Fully supported Earth Centric Inertial (ECI) to Equatorial Coordinate System (ECS) conversion
- [X] Fully supported Earth Centric Inertial (ECI) to Topocentric Coordinate System (TCS) conversion
- [ ] Fully supported SPG4-XP propagation from TLE or OMM
- [X] Fully supported symplectic Verlet numerical propagation
- [X] Fully supported Runge-Kutta 4th order numerical propagation
- [X] Modified Julian Date utilities

---

### License

This project is licensed under the terms of the MIT license.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "satelles",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.13",
    "maintainer_email": null,
    "keywords": "astrodynamics, astronomy, omm, orbit, propagation, satellite, tle",
    "author": null,
    "author_email": "michealroberts <michael@observerly.com>",
    "download_url": "https://files.pythonhosted.org/packages/fc/3c/b961ef9ad539b32d4b0da2ae4ac72fb4e101954309ec140bb6ed38470e2b/satelles-0.12.0.tar.gz",
    "platform": null,
    "description": "![pypi](https://img.shields.io/pypi/v/satelles.svg)\n![versions](https://img.shields.io/pypi/pyversions/satelles.svg)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![satelles/test](https://github.com/michealroberts/satelles/actions/workflows/test.yml/badge.svg)](https://github.com/michealroberts/satelles/actions/workflows/test.yml)\n\n# Satelles\n\nModern, type-safe, zero-dependency python library for TLE, OMM et al. handling and orbit propagation to accurately locate your satellites in the sky.\n\n## Installation\n\n```bash\nuv add satelles\n```\n\nor\n\nusing your preferred environment / package manager of choice, e.g., `poetry`, `conda` or `pip`:\n\n```bash\npip install satelles\n```\n\n```bash\npoetry add satelles\n```\n\n```bash\nconda install satelles\n```\n\n## Usage\n\n```python\nfrom datetime import datetime, timezone\n\nfrom satelles import TLE\n\nissTLE: str = \"\"\"        \n  1 25544U 98067A   20062.59097222  .00016717  00000-0  10270-3 0  9006\n  2 25544  51.6442 147.1064 0004607  95.6506 329.8285 15.49249062  2423\n\"\"\"\n\nsatellite = TLE(tle_string=issTLE).as_satellite()\n\nsatellite.at(when=datetime(2021, 5, 15, 0, 0, 0, tzinfo=timezone.utc))\n\n# Get the Earth Centric Inertial (ECI) coordinate of the satellite at the given time:\neci = satellite.eci_coordinate\n\n# Get the Equatorial Coordinate of the satellite at the given time:\nequatorial = satellite.equatorial_coordinate\n...\n```\n\nAs the API is fully typed, you can use your IDE's autocompletion to see all the available methods and properties.\n\nWe have also provided further usage examples in the [examples](./examples) directory.\n\n## Milestones\n\n- [X] Type-safe modern 3.6+ Python\n- [X] Fully unit tested\n- [X] Simpler API using Pydantic base models for validation\n- [X] Zero-external dependencies (pure Python 3.6+ with no external C/C++ dependencies)\n- [ ] Example API usage\n- [X] Fully supported Two-Line Element (TLE) parsing and operations\n- [ ] Fully supported Orbital Mean Elements Message (OMM) parsing and operations\n- [ ] Fully supported TLE to OMM conversion\n- [ ] Fully supported laser ranging formats (e.g., CPF and CRD).\n- [X] Fully supported Earth Centred-Earth Fixed (ECEF) to East-North-Up (ENU) conversion\n- [X] Fully supported Earth Centric Inertial (ECI) to Equatorial Coordinate System (ECS) conversion\n- [X] Fully supported Earth Centric Inertial (ECI) to Topocentric Coordinate System (TCS) conversion\n- [ ] Fully supported SPG4-XP propagation from TLE or OMM\n- [X] Fully supported symplectic Verlet numerical propagation\n- [X] Fully supported Runge-Kutta 4th order numerical propagation\n- [X] Modified Julian Date utilities\n\n---\n\n### License\n\nThis project is licensed under the terms of the MIT license.\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2025 Michael J. Roberts\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.",
    "summary": "Modern, type-safe python library for TLE, OMM et al. handling and orbit propagation to accurately locate your satellites in the sky.",
    "version": "0.12.0",
    "project_urls": null,
    "split_keywords": [
        "astrodynamics",
        " astronomy",
        " omm",
        " orbit",
        " propagation",
        " satellite",
        " tle"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa1e3bcd555f4a2122071ffdbf16aeed5ef25d0210a77887fcb166917de57191",
                "md5": "defc7a9eaf4dae9c666ed65bd144420c",
                "sha256": "4e350a2c86c9c0179b33a9f163932debdae5b1ebbb8a976b785900af83af7c43"
            },
            "downloads": -1,
            "filename": "satelles-0.12.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "defc7a9eaf4dae9c666ed65bd144420c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.13",
            "size": 38186,
            "upload_time": "2025-07-15T07:50:16",
            "upload_time_iso_8601": "2025-07-15T07:50:16.281098Z",
            "url": "https://files.pythonhosted.org/packages/aa/1e/3bcd555f4a2122071ffdbf16aeed5ef25d0210a77887fcb166917de57191/satelles-0.12.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc3cb961ef9ad539b32d4b0da2ae4ac72fb4e101954309ec140bb6ed38470e2b",
                "md5": "6add19e86478cf350fcf6c1b8af582ae",
                "sha256": "d211eb5a8a572bbc789633cb830b0bba39ddae62ec0cf0b8c1c9dd2e96b49835"
            },
            "downloads": -1,
            "filename": "satelles-0.12.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6add19e86478cf350fcf6c1b8af582ae",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.13",
            "size": 73609,
            "upload_time": "2025-07-15T07:50:17",
            "upload_time_iso_8601": "2025-07-15T07:50:17.422597Z",
            "url": "https://files.pythonhosted.org/packages/fc/3c/b961ef9ad539b32d4b0da2ae4ac72fb4e101954309ec140bb6ed38470e2b/satelles-0.12.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-15 07:50:17",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "satelles"
}
        
Elapsed time: 0.82054s