Packages

Satellite toolkit for Elixir with SGP4 propagation, coordinate transforms, GNSS positioning, orbit determination, conjunction assessment, pass prediction, and a Rust NIF backend.

Retired package: Release invalid - source build broken: nonexistent core git tag; precompiled path works; upgrade to >= 0.25.0

Current section

Files

Jump to
sidereon lib sidereon screening result.ex
Raw

lib/sidereon/screening/result.ex

defmodule Sidereon.Screening.Result do
@moduledoc """
Final result for a screened candidate pair.
"""
@type t :: %__MODULE__{
candidate: Sidereon.Screening.Candidate.t(),
collision: Sidereon.Collision.Result.t() | nil,
error: String.t() | nil
}
defstruct [
:candidate,
:collision,
:error
]
end