A object for accessing RSL Sweep data and header information.
This class should not be initalized from within Python. _RslSweep objects are returned from the _RslVolume.get_sweep method.
Attributes
sweep_num | (int) Interger sweep number. |
elev | (float) Mean elevation angle for thr sweep. -999.0 for RHI sweeps. |
azimuth | (float) Azumuth for the sweep. -999.0 for PPI scans. |
beam_width | (float) Beam width in degrees. Can also be found in _RslRay objects. |
vert_half_bw | (float) Vertical beam width divided by 2. |
horz_half_bw | (float) Horizontal beam width divided by 2. |
nrays | (int) Number of rays in the sweep. |
Methods
get_data() | Return the two-dimensional data contained in the sweep. |
get_ray(ray_number) | Return a _RslRay for a given ray. |
Private methods
__format__ | default object formatter |
__new__((S, ...) | |
__reduce__ | helper for pickle |
__reduce_ex__ | helper for pickle |
__sizeof__(() -> int) | size of object in memory, in bytes |
__subclasshook__ | Abstract classes can override this to customize issubclass(). |