Skip to main content

README.md

[![Hex.pm](https://img.shields.io/hexpm/v/orbis)](https://hex.pm/packages/orbis)
[![Hexdocs.pm](https://img.shields.io/badge/docs-hexdocs.pm-purple)](https://hexdocs.pm/orbis)
[![CI](https://github.com/neilberkman/orbis/actions/workflows/ci.yml/badge.svg)](https://github.com/neilberkman/orbis/actions)

# Orbis

Full-featured satellite toolkit for Elixir.

SGP4/SDP4, coordinate transforms, GNSS positioning, orbit determination, and the other precise numerics run in a Rust NIF — much of it verified to 0 ULP (bit-exact) parity against reference implementations. The orchestration layer — pass prediction, conjunction assessment, constellation management, real-time tracking, and batch analysis — is pure Elixir (and Nx for GPU workloads).

### Try it in Livebook

[![Run in Livebook](https://livebook.dev/badge/v1/blue.svg)](https://livebook.dev/run?url=https://github.com/neilberkman/orbis/blob/main/examples/iss_tracker.livemd)

## Features

| Category                   | What it does                                                                                                                                                    |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Propagation**            | SGP4/SDP4 via the [`sgp4`](https://crates.io/crates/sgp4) Rust crate (Rust NIF)                                                                                 |
| **Coordinate transforms**  | TEME, GCRS, ITRS, geodetic, topocentric — 0 ULP Skyfield parity (Rust NIF)                                                                                      |
| **Ground station**         | Pass prediction, look angles, Doppler shift, RF link budget                                                                                                     |
| **Orbit determination**    | Gibbs, Herrick-Gibbs, Gauss angles-only, Lambert/Battin (Rust NIF)                                                                                              |
| **Conjunction assessment** | Closest approach finder validated against the Iridium 33 / Cosmos 2251 collision                                                                                |
| **Eclipse prediction**     | Sunlit / penumbra / umbra with shadow fraction                                                                                                                  |
| **Atmospheric density**    | NRLMSISE-00 model, surface to ~1000 km (Rust NIF)                                                                                                               |
| **JPL ephemeris**          | SPK/BSP reader for Sun, Moon, planets (Rust NIF)                                                                                                                |
| **GNSS positioning**       | Single-point positioning from SP3 or broadcast ephemeris — GPS, Galileo, BeiDou, GLONASS — with Klobuchar/Saastamoinen–Niell corrections and DOP (Rust NIF)     |
| **GNSS ephemeris & data**  | SP3 precise products, RINEX 3.x/4.xx broadcast navigation, GNSS constellation catalogs, and optional SP3/CLK/NAV/IONEX fetch/cache from public archives         |
| **GNSS observations**      | RINEX 3 observation parsing with Hatanaka (CRINEX) decoding — turn a station's `.crx`/`.rnx` into pseudoranges and solve for its position (Rust NIF)            |
| **Reduced orbit**          | Compact fitted mean-element model (circular or eccentric) for fast approximate position, caching, and transport — with source-backed drift reporting (Rust NIF) |
| **Live data**              | CelesTrak TLE/OMM fetching, constellation loading, name search                                                                                                  |
| **Real-time tracking**     | GenServer with PubSub-compatible broadcasts                                                                                                                     |
| **RF primitives**          | FSPL, EIRP, C/N₀, link margin, dish gain                                                                                                                        |
| **Batch analysis**         | Nx-powered tensorized geometry, visibility, and RF (GPU-ready via EXLA/Torchx)                                                                                  |
| **Formats**                | `Orbis.Elements` with TLE and OMM parsers/encoders                                                                                                              |

## Installation

```elixir
def deps do
  [{:orbis, "~> 0.8.0"}]
end
```

Requires Rust for compiling the NIF. GNSS product fetching
(`Orbis.GnssData`) additionally needs the optional `:req` dependency:

```elixir
{:req, "~> 0.5"}
```

## Quick Start

```elixir
# Fetch the ISS TLE from CelesTrak
{:ok, [iss]} = Orbis.CelesTrak.fetch_tle(25544)

# Propagate to now
{:ok, teme} = Orbis.propagate(iss, DateTime.utc_now())
teme.position   # {x, y, z} km
teme.velocity   # {vx, vy, vz} km/s

# Where is it over the Earth?
{:ok, geo} = Orbis.geodetic(iss, DateTime.utc_now())
# %{latitude: 23.4, longitude: -45.6, altitude_km: 420.1}
```

## Usage

### Parse from TLE or OMM

```elixir
# Two-Line Element format
{:ok, elements} = Orbis.Format.TLE.parse(line1, line2)

# OMM JSON (CelesTrak / Space-Track)
{:ok, elements} = Orbis.Format.OMM.parse(omm_json_map)

# Encode back to either format
{line1, line2} = Orbis.Format.TLE.encode(elements)
omm_map = Orbis.Format.OMM.encode(elements)
```

The `Orbis.Elements` struct is format-agnostic — parse from any source, serialize to any format.

### Coordinate Transforms

```elixir
gcrs = Orbis.teme_to_gcrs(teme, datetime)

station = %{latitude: 40.7128, longitude: -74.006, altitude_m: 10.0}
{:ok, geo} = Orbis.geodetic(elements, datetime)
{:ok, look} = Orbis.look_angle(elements, datetime, station)
# %{azimuth: 359.6, elevation: -41.9, range_km: 9130.5}
```

The GCRS transform includes IAU2000A nutation (1365 terms), IAU2006 precession, frame bias, and time scale conversions (UTC→TAI→TT→TDB→UT1).

### Constellation Management

```elixir
{:ok, constellation} = Orbis.Constellation.load("globalstar")
constellation.count  #=> 85

# Propagate all satellites in parallel
positions = Orbis.Constellation.propagate_all(constellation, DateTime.utc_now())

# Find visible satellites from a ground station
visible = Orbis.Constellation.visible_from(constellation, station, datetime)
```

### Real-Time Tracking

```elixir
{:ok, tracker} = Orbis.Tracker.start_link(elements, interval_ms: 1000)
Orbis.Tracker.subscribe(tracker)

receive do
  {:orbis_tracker, _pid, state} ->
    IO.puts("#{state.geodetic.latitude}, #{state.geodetic.longitude}")
end
```

### Pass Prediction

```elixir
passes = Orbis.Passes.predict(elements, station,
  ~U[2024-01-01 00:00:00Z], ~U[2024-01-02 00:00:00Z])

for pass <- passes do
  IO.puts("Rise: #{pass.rise} | Max el: #{pass.max_elevation}° | Set: #{pass.set}")
end
```

### Conjunction Assessment

```elixir
approaches = Orbis.Conjunction.find(elements1, elements2,
  end_min: 2880.0, step_min: 1.0, threshold_km: 50.0)

for {tca_min, distance_km} <- approaches do
  IO.puts("TCA: +#{Float.round(tca_min / 60, 1)}h, miss: #{Float.round(distance_km, 2)} km")
end
```

### RF Link Budget

```elixir
# Path loss from slant range
fspl = Orbis.RF.fspl(look.range_km, 1616.0)  # MHz

# Full link margin
margin = Orbis.RF.link_margin(%{
  eirp_dbw: Orbis.RF.eirp(27.0, 3.0),
  fspl_db: fspl,
  receiver_gt_dbk: -12.0,
  other_losses_db: 3.0,
  required_cn0_dbhz: 35.0
})
```

### Orbit Determination

```elixir
# Gibbs: 3 position vectors → velocity
{v2, theta12, theta23, copa} = Orbis.IOD.gibbs(r1, r2, r3)

# Gauss: 3 angular observations → full orbit
{r2, v2} = Orbis.IOD.gauss(
  decl1, decl2, decl3, rtasc1, rtasc2, rtasc3,
  jd1, jdf1, jd2, jdf2, jd3, jdf3,
  site1, site2, site3)

# Lambert: transfer orbit between two positions
{v1t, v2t} = Orbis.Lambert.solve(r1, r2, v1, dm, de, nrev, dtsec)
```

### Eclipse & Ephemeris

```elixir
eph = Orbis.Ephemeris.load("/path/to/de421.bsp")

{:ok, status} = Orbis.Eclipse.check(elements, datetime, eph)
# :sunlit | :penumbra | :umbra

mars = Orbis.Ephemeris.position(eph, :mars, :earth, datetime)
```

### GNSS Positioning

```elixir
# Precise ephemeris (SP3): interpolate a satellite's position/clock at any epoch
sp3 = Orbis.SP3.load!("GBM0MGXRAP_20201760000_01D_05M_ORB.SP3")
{:ok, state} = Orbis.SP3.position(sp3, "G01", ~N[2020-06-24 00:00:00])
# %Orbis.SP3.State{x_m: ..., y_m: ..., z_m: ..., clock_s: ...}

# Or broadcast navigation — GPS, Galileo, BeiDou, GLONASS (RINEX 3.x/4.xx)
eph = Orbis.BroadcastEphemeris.load!("BRDC00IGS_20201770000_01D_MN.rnx")

# Single-point position from one epoch of pseudoranges
observations = [{"G07", 24_602_022.18}, {"G08", 23_676_569.52}, {"E05", 27_038_058.35}]

{:ok, sol} =
  Orbis.PointPositioning.solve(eph, observations, ~N[2020-06-25 12:00:00],
    ionosphere: true,
    troposphere: true,
    klobuchar_alpha: {1.0e-8, 0.0, 0.0, 0.0},
    klobuchar_beta: {9.0e4, 0.0, 0.0, 0.0}
  )

sol.position          # %{x_m: ..., y_m: ..., z_m: ...} — ITRF ECEF meters
sol.dop.pdop          # position dilution of precision
sol.system_clocks_s   # %{"G" => ..., "E" => ...} — one receiver clock per GNSS
```

Products can be fetched and cached (needs the optional `:req` dependency):

```elixir
product = Orbis.GnssData.mgex_sp3(:gfz, ~D[2020-06-24])
{:ok, sp3} = Orbis.GnssData.sp3(product)   # downloads, verifies, caches, loads
```

Parse a station's RINEX observation file (Hatanaka `.crx` or plain `.rnx`),
extract pseudoranges, and recover its position:

```elixir
{:ok, obs} = Orbis.RinexObs.load("STAT00DNK_R_..._MO.crx")
[%{index: i, epoch: epoch} | _] = Orbis.RinexObs.epochs(obs)
{:ok, prs} = Orbis.RinexObs.pseudoranges(obs, i, codes: %{"G" => ["C1C"]})
{:ok, sol} = Orbis.PointPositioning.solve(eph, prs, epoch)
```

Fit a compact reduced-orbit model and check its drift against the source:

```elixir
{:ok, model} =
  Orbis.ReducedOrbit.fit(sp3,
    satellite_id: "G05",
    window: {~N[2020-06-24 00:00:00], ~N[2020-06-24 06:00:00]},
    model: :eccentric_secular
  )

{:ok, pos} = Orbis.ReducedOrbit.position(model, ~N[2020-06-24 12:00:00])  # ECEF m
map = Orbis.ReducedOrbit.to_map(model)   # versioned, transportable
```

A runnable walkthrough is in [`examples/gnss_positioning.livemd`](examples/gnss_positioning.livemd).

A GPS constellation catalog (PRN ↔ SVN ↔ NORAD ↔ SP3 id, active/usable flags)
is built from CelesTrak and an optional NAVCEN overlay:

```elixir
{:ok, records} = Orbis.GnssConstellation.fetch_gps()
Orbis.GnssConstellation.to_csv(records)         # prn,norad_cat_id,active,sp3_id

# Cross-check a catalog against the satellites a precise product actually carries
report = Orbis.GnssConstellation.validate_sp3(records, sp3)
Orbis.GnssConstellation.valid?(report)
```

## Coordinate Frames

| Frame       | Description                                              |
| ----------- | -------------------------------------------------------- |
| TEME        | True Equator Mean Equinox — SGP4 output frame            |
| GCRS        | Geocentric Celestial Reference System — inertial         |
| ITRS        | International Terrestrial Reference System — Earth-fixed |
| Geodetic    | WGS84 latitude, longitude, altitude                      |
| Topocentric | Azimuth, elevation, range from a ground station          |

## Accuracy

| Component              | Reference                       | Accuracy                        |
| ---------------------- | ------------------------------- | ------------------------------- |
| TEME→GCRS→ITRS         | Skyfield                        | 0 ULP (bit-identical)           |
| SGP4 propagation       | Skyfield                        | < 1 mm (via sgp4 crate)         |
| Gibbs / Herrick-Gibbs  | Vallado Python                  | 0 ULP                           |
| Gauss IOD              | Vallado Python                  | 1e-12 relative                  |
| Lambert (Battin)       | Vallado Python                  | 1e-12 relative                  |
| Conjunction            | Iridium/Cosmos 2251             | < 2 km miss, < 1 min timing     |
| RF (FSPL)              | Analytical (inverse square law) | Exact                           |
| SP3 interpolation      | gnssanalysis                    | 0 ULP                           |
| Broadcast orbit/clock  | pinned IS-GPS-200 recipe        | 0 ULP (recipe); ~m vs SP3       |
| Ionosphere/troposphere | Klobuchar / Saastamoinen–Niell  | 0 ULP                           |
| GNSS DOP               | cofactor inverse                | 0 ULP                           |
| Single-point position  | scipy least squares             | sub-micron agreement            |
| RINEX / CRINEX decode  | RNXCMP `crx2rnx`                | byte-exact                      |
| Reduced orbit          | SP3 (drift-checked)             | approximate, ~km/day (see docs) |

## License

MIT