polar_ppath_helper
- pyarts.plots.ppath.polar_ppath_helper(rad, tht, planetary_radius, rscale, ax=None)[source]
Just the polar plots required by
polar_ppath()
.- Parameters:
rad (np.array) – List of radiuses [in meters].
tht (np.array) – List of angles [in radian].
planetary_radius (float) – A planetary radius in same unit as rad.
rscale (float) – This will rescale values. As rad is in meters, rscale=1000 means that the scale is now in kilometers. See
polar_ppath_rad_unit()
for good optionsax (Axes, optional) – The axis to draw at. The default is None, which generates a default polar coordinate.
- Returns:
ax – As input.
- Return type:
As input