ray_pathGeometric
- Workspace.ray_pathGeometric(self, ray_path: pyarts3.arts.ArrayOfPropagationPathPoint | None = None, atmospheric_field: pyarts3.arts.AtmField | None = None, surface_field: pyarts3.arts.SurfaceField | None = None, max_stepsize: pyarts3.arts.Numeric | None = None, pos: pyarts3.arts.Vector3 | None = None, los: pyarts3.arts.Vector2 | None = None, surface_search_accuracy: pyarts3.arts.Numeric | None = None, as_observer: pyarts3.arts.Index | None = None, add_limb: pyarts3.arts.Index | None = None, remove_non_atm: pyarts3.arts.Index | None = None, fix_updown_azimuth: pyarts3.arts.Index | None = None, surface_safe_search: pyarts3.arts.Index | None = None) None
Get a geometric radiation path
The path is defined by the origo and the line of sight.
The
posis either at the end or at the beginning of the path depending on theas_observerflag. A value that evaluates to true means that it is at the end of the path. Ifas_observeris true, thelosis therefore looking backwards along the path. Basically,as_observertrue means thatposandlosbehaves as sensor pos and los.The
max_stepsizeis the maximum step length in meters. The path is first created between the two extremes of either space and/or surface. Afterwards, there are additional points added everymax_stepsizemeters between these points until no more fits (the last step is shorter or exactlymax_stepsize).Upon closing the method, the following options are available to modify the output:
If
add_limbis true, the limb point is added to the path at the end. It is computed using bisections to ensure that the zenith angle of the tangent point is as close to 90 degrees as it can numerically be.If
remove_non_atmis true, all points that are not in the atmosphere are removed. It is recommended to remove these points as multiple methods will either perform poorly or not at all with these points present.If
fix_updown_azimuthis true, the azimuthal angle of the path is fixed to the initial azimuthal angle of the path. Because calculations of the azimuth angle makes use of IEEE atan2, some paths may produce bad angles if this is turned off.Author: Richard Larsson
- Parameters:
ray_path (ArrayOfPropagationPathPoint, optional) – A list path points making up a propagation path. See
ray_path, defaults toself.ray_path[OUT]atmospheric_field (AtmField, optional) – An atmospheric field in ARTS. See
atmospheric_field, defaults toself.atmospheric_field[IN]surface_field (SurfaceField, optional) – The surface field. See
surface_field, defaults toself.surface_field[IN]max_stepsize (Numeric, optional) – A control parameter for stepping through layers in ray tracing. See
max_stepsize, defaults toself.max_stepsize[IN]pos (Vector3) – The origo of the radiation path. [IN]
los (Vector2) – The line of sight of the radiation path. [IN]
surface_search_accuracy (Numeric, optional) – The accuracy within which the surface intersection is counted as a hit. Defaults to
0.1[IN]as_observer (Index, optional) – Whether or not the path is as seen by the sensor or by the radiation (see text). Defaults to
1[IN]add_limb (Index, optional) – Wheter or not to add the limb point. Defaults to
0[IN]remove_non_atm (Index, optional) – Wheter or not to keep only atmospheric points. Defaults to
1[IN]fix_updown_azimuth (Index, optional) – Whether or not to attempt fix a potential issue with the path azimuthal angle. Defaults to
1[IN]surface_safe_search (Index, optional) – Whether or not to search for the surface intersection in a safer but slower manner. Defaults to
1[IN]