6. MeasurementDataSet#
- class MeasurementDataSet(set_name: str, measurements: list, names: list[str], instrument: Instrument, target: Body, epochs: EpochArray, measurement_type: str = None, station_two: GroundStation = None)#
Bases:
object
Groups together measurement data from different measurement models. Used by the active filter.
Generates a list of packaged data from a given measurement. At each epoch at which the filter has a valid measurement, provides access to its computed and observed value, residual, numerical value of the partial, and the standard deviation of the measurement.
- Parameters:
set_name (
str
) – The name of the dataset.measurements (
list
) – list with AWU, np.array, and lists of measurements data (e.g. observed, computed, residuals, partials, sigmas)names (
list[str]
) – List of values in the measurement list ([“computed”, “observed”, “residuals”, “partials”, “sigma”])instrument (
Instrument
) – Instrument used to generate these measurements (e.g. antenna, camera, etc.)target (
Body
) – Target body of the measurement model.epochs (
EpochArray
) – Epochs of the measurementsmeasurement_type (
str
, optional) –The type of measurements. Can be given as:
range
range real
rangerate
doppler
doppler real
opnav
dor
Defaults to
None
.station_two (
GroundStation optional
) – Optional Ground station object for three-way and DOR measurements. Defaults toNone
.
See also
scb.Measurement
Attributes
The types of the measurement values (e.g. observed, computed, residuals, partials, sigmas).
The epochs linked to the measurements.
The instrument that generated the measurements.
The measurement types.
The name of the dataset.
The second ground station, for three-ways and DOR measurement types.
DESC
Methods
add_data
(data, name)Adds data to an axisting dataset .
- property data: list[str]#
The types of the measurement values (e.g. observed, computed, residuals, partials, sigmas).
- property epochs: EpochArray#
The epochs linked to the measurements.
- property instrument: Instrument#
The instrument that generated the measurements.
- property measurement_type#
The measurement types.
- property station_two: GroundStation#
The second ground station, for three-ways and DOR measurement types.
- property target#
DESC