sensor_pos_losBackwardToAltitude

Workspace.sensor_pos_losBackwardToAltitude(self: pyarts.arts._Workspace, sensor_pos: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Matrix]] = self.sensor_pos, sensor_los: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Matrix]] = self.sensor_los, atmosphere_dim: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Index]] = self.atmosphere_dim, lat_grid: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Vector]] = self.lat_grid, lon_grid: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Vector]] = self.lon_grid, refellipsoid: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Vector]] = self.refellipsoid, altitude: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], los_is_reversed: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Index]] = 0, verbosity: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Verbosity]] = self.verbosity) None

Moves sensor_pos and sensor_los backwards to the target altitude.

The method gives the sensor_pos and sensor_los at the target altitude to reach the original sensor_pos and sensor_los with a geometrical ppath. That is, the movement is backwards in terms of viewing direction.

If the original sensor_los is reversed with respect to the line-of-sight direction, then set the GIN los_reversed to 1. One such case is that if sensor_los represents surface incidence angles, i.e. holds the zenith and nadir angle towards the sensor.

There is also rte_pos_losBackwardToAltitude().

Author(s): Patrick Eriksson

Parameters:
  • sensor_pos (Matrix, optional) – The sensor position for each measurement block. See sensor_pos, defaults to self.sensor_pos [INOUT]

  • sensor_los (Matrix, optional) – The sensor line-of-sight (LOS) for each measurement block. See sensor_los, defaults to self.sensor_los [INOUT]

  • atmosphere_dim (Index, optional) – The atmospheric dimensionality (1-3). See atmosphere_dim, defaults to self.atmosphere_dim [IN]

  • lat_grid (Vector, optional) – The latitude grid. See lat_grid, defaults to self.lat_grid [IN]

  • lon_grid (Vector, optional) – The longitude grid. See lon_grid, defaults to self.lon_grid [IN]

  • refellipsoid (Vector, optional) – Reference ellipsoid. See refellipsoid, defaults to self.refellipsoid [IN]

  • altitude (Numeric) – Target altitude. [IN]

  • los_is_reversed (Index, optional) – Set to 1 if rte_los is valid for the reversed direction. Defaults to 0 [IN]

  • verbosity (Verbosity) – ARTS verbosity. See verbosity, defaults to self.verbosity [IN]