sensor_losGeometricFromSensorPosToOtherPositions
- Workspace.sensor_losGeometricFromSensorPosToOtherPositions(self: pyarts.arts._Workspace, 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, sensor_pos: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Matrix]] = self.sensor_pos, target_pos: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Matrix], verbosity: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Verbosity]] = self.verbosity) None
The geometric line-of-sight between pair of points.
The method sets
sensor_los
to the line-of-sights, that matches the geometrical propagation path fromsensor_pos
totarget_pos
. This is done for pair of positions, i.e. the two matrices shall have the same number of rows. The number of columns intarget_pos
shall be two for 1D and 2D and two for 3D, exactly as forrte_pos2
.See also
rte_losGeometricFromRtePosToRtePos2()
. This method calls that method for each pair of positions, where values insensor_pos
matchesrte_pos
and values intarget_pos
matchesrte_pos2
.Author(s): Patrick Eriksson
- Parameters:
sensor_los (Matrix, optional) – The sensor line-of-sight (LOS) for each measurement block. See
sensor_los
, defaults toself.sensor_los
[OUT]atmosphere_dim (Index, optional) – The atmospheric dimensionality (1-3). See
atmosphere_dim
, defaults toself.atmosphere_dim
[IN]lat_grid (Vector, optional) – The latitude grid. See
lat_grid
, defaults toself.lat_grid
[IN]lon_grid (Vector, optional) – The longitude grid. See
lon_grid
, defaults toself.lon_grid
[IN]refellipsoid (Vector, optional) – Reference ellipsoid. See
refellipsoid
, defaults toself.refellipsoid
[IN]sensor_pos (Matrix, optional) – The sensor position for each measurement block. See
sensor_pos
, defaults toself.sensor_pos
[IN]target_pos (Matrix) – Target position, for each position in
sensor_pos
. [IN]verbosity (Verbosity) – ARTS verbosity. See
verbosity
, defaults toself.verbosity
[IN]