measurement_vecFromSensor

Workspace.measurement_vecFromSensor(self, measurement_vec: pyarts3.arts.Vector | None = None, measurement_jac: pyarts3.arts.Matrix | None = None, measurement_sensor: pyarts3.arts.ArrayOfSensorObsel | None = None, jac_targets: pyarts3.arts.JacobianTargets | None = None, atm_field: pyarts3.arts.AtmField | None = None, surf_field: pyarts3.arts.SurfaceField | None = None, subsurf_field: pyarts3.arts.SubsurfaceField | None = None, spectral_rad_transform_operator: pyarts3.arts.SpectralRadianceTransformOperator | None = None, spectral_rad_observer_agenda: pyarts3.arts.Agenda | None = None, kernel: pyarts3.arts.String | None = None) None

Sets measurement vector by looping over all sensor elements

The core calculations happens inside the spectral_rad_observer_agenda.

Tip

The default kernel is a low memory option. It also has the lowest startup cost. If your calculations are slow and requires multiple calls to the spectral_rad_observer_agenda, consider switching to the “High Performance” kernel, which is \(O(N+M)\) compared to the low-memory option \(O(N \times M)\).

Author: Richard Larsson

Parameters:
  • measurement_vec (Vector, optional) – The measurement vector for, e.g., a sensor. See measurement_vec, defaults to self.measurement_vec [OUT]

  • measurement_jac (Matrix, optional) – The first order partial derivatives of the measurement_vec. See measurement_jac, defaults to self.measurement_jac [OUT]

  • measurement_sensor (ArrayOfSensorObsel, optional) – A list of sensor elements. See measurement_sensor, defaults to self.measurement_sensor [IN]

  • jac_targets (JacobianTargets, optional) – A list of targets for the Jacobian Matrix calculations. See jac_targets, defaults to self.jac_targets [IN]

  • atm_field (AtmField, optional) – An atmospheric field in ARTS. See atm_field, defaults to self.atm_field [IN]

  • surf_field (SurfaceField, optional) – The surface field. See surf_field, defaults to self.surf_field [IN]

  • subsurf_field (SubsurfaceField, optional) – The sub-surface field. See subsurf_field, defaults to self.subsurf_field [IN]

  • spectral_rad_transform_operator (SpectralRadianceTransformOperator, optional) – The spectral radiance transform operator. See spectral_rad_transform_operator, defaults to self.spectral_rad_transform_operator [IN]

  • spectral_rad_observer_agenda (Agenda, optional) – Computes spectral radiance as seen from the input position and environment. See spectral_rad_observer_agenda, defaults to self.spectral_rad_observer_agenda [IN]

  • kernel (String, optional) – The kernel to use for the spectral radiance calculations. See type information for options. Defaults to "Low Memory" [IN]