Skip to main content

FitSummaryRow

Struct FitSummaryRow 

Source
pub struct FitSummaryRow {
Show 26 fields pub object_id: String, pub status: String, pub converged: bool, pub iterations: u32, pub n_obs: usize, pub n_selected: usize, pub rms_ra_arcsec: f64, pub rms_dec_arcsec: f64, pub reduced_chi2: f64, pub fit_acceptable: bool, pub extrapolation_acceptable: bool, pub selection_fraction_ok: bool, pub selection_fraction: f64, pub selection_fraction_threshold: f64, pub selected_arc_coverage_ok: bool, pub selected_arc_days: f64, pub selected_arc_fraction: f64, pub selected_arc_fraction_threshold: f64, pub trailing_gap_ok: bool, pub trailing_gap_days: f64, pub trailing_gap_threshold_days: f64, pub fractional_sigma_a_ok: bool, pub fractional_sigma_a: f64, pub fractional_sigma_a_threshold: f64, pub solve_for_width: u32, pub error: Option<String>,
}
Expand description

One row of the fit summary: what orbit determination did with one object.

Numeric fields are NaN when the quantity does not exist — a failed object has no RMS, and a gate that could not be computed has no value. They are never 0.0, which would read as a measurement at the floor.

Fields§

§object_id: String

ADES object identifier.

§status: String

"delivered" or "failed".

§converged: bool

Did the differential correction reach its stopping criterion?

§iterations: u32

DC iterations used.

§n_obs: usize

Observations this object contributed.

§n_selected: usize

Observations the fit retained.

§rms_ra_arcsec: f64

RA·cos(Dec) residual RMS (arcsec).

§rms_dec_arcsec: f64

Dec residual RMS (arcsec).

§reduced_chi2: f64

Reduced χ² of the fit.

§fit_acceptable: bool

Aggregate fit-quality verdict.

§extrapolation_acceptable: bool

Aggregate verdict on forward extrapolation: fit_acceptable AND the four selection / coverage axes below.

§selection_fraction_ok: bool

Did the fit retain enough of its input?

§selection_fraction: f64

Fraction of observations retained.

§selection_fraction_threshold: f64

Minimum retained fraction the gate required.

§selected_arc_coverage_ok: bool

Do the selected observations still span enough of the arc?

§selected_arc_days: f64

Arc span over the selected observations only (days).

§selected_arc_fraction: f64

Selected-span / full-span ratio.

§selected_arc_fraction_threshold: f64

Minimum span ratio the gate required.

§trailing_gap_ok: bool

Were the most-recent observations kept?

§trailing_gap_days: f64

Days between the last selected and the last full-arc observation.

§trailing_gap_threshold_days: f64

Largest trailing gap the gate allowed (days).

§fractional_sigma_a_ok: bool

Did σₐ / |a| pass its threshold?

§fractional_sigma_a: f64

Measured σₐ / |a|.

§fractional_sigma_a_threshold: f64

Threshold for σₐ / |a|.

§solve_for_width: u32

Width of the solved-parameter set (6 for a state-only fit).

§error: Option<String>

Failure message; None on a delivered object.

Implementations§

Source§

impl FitSummaryRow

Source

pub fn from_entry(entry: &DetermineEntry) -> Self

The row describing one slot of a batch determine.

Source

pub fn from_results(results: &DetermineResults) -> Vec<Self>

One row per object in a batch, in table order.

Trait Implementations§

Source§

impl Clone for FitSummaryRow

Source§

fn clone(&self) -> FitSummaryRow

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FitSummaryRow

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for FitSummaryRow

Source§

fn eq(&self, other: &FitSummaryRow) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for FitSummaryRow

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.