nexrad-decode 0.1.2

Decoding functions and models for NEXRAD weather radar data.
Documentation
use crate::messages::digital_radar_data::DataBlockId;
use crate::messages::primitive_aliases::{Integer2, Real4, ScaledInteger2};
use serde::Deserialize;
use std::fmt::Debug;

#[cfg(feature = "uom")]
use uom::si::f64::{Information, Length, Velocity};

/// A radial data moment block.
#[derive(Clone, PartialEq, Deserialize)]
pub struct RadialDataBlock {
    /// Data block identifier.
    pub data_block_id: DataBlockId,

    /// Size of data block in bytes.
    pub lrtup: Integer2,

    /// Unambiguous range, interval size, in km.
    pub unambiguous_range: ScaledInteger2,

    /// Noise level for the horizontal channel in dBm.
    pub horizontal_channel_noise_level: Real4,

    /// Noise level for the vertical channel in dBm.
    pub vertical_channel_noise_level: Real4,

    /// Nyquist velocity in m/s.
    pub nyquist_velocity: ScaledInteger2,

    /// Radial flags to support RPG processing.
    pub radial_flags: Integer2,

    /// Calibration constant for the horizontal channel in dBZ.
    pub horizontal_channel_calibration_constant: Real4,

    /// Calibration constant for the vertical channel in dBZ.
    pub vertical_channel_calibration_constant: Real4,
}

impl RadialDataBlock {
    /// Size of data block.
    #[cfg(feature = "uom")]
    pub fn lrtup(&self) -> Information {
        Information::new::<uom::si::information::byte>(self.lrtup as f64)
    }

    /// Unambiguous range, interval size.
    #[cfg(feature = "uom")]
    pub fn unambiguous_range(&self) -> Length {
        Length::new::<uom::si::length::kilometer>(self.unambiguous_range as f64)
    }

    /// Nyquist velocity.
    #[cfg(feature = "uom")]
    pub fn nyquist_velocity(&self) -> Velocity {
        Velocity::new::<uom::si::velocity::meter_per_second>(self.nyquist_velocity as f64 * 0.01)
    }
}

#[cfg(not(feature = "uom"))]
impl Debug for RadialDataBlock {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("RadialDataBlock")
            .field("data_block_id", &self.data_block_id)
            .field("lrtup", &self.lrtup)
            .field("unambiguous_range", &self.unambiguous_range)
            .field(
                "horizontal_channel_noise_level",
                &self.horizontal_channel_noise_level,
            )
            .field(
                "vertical_channel_noise_level",
                &self.vertical_channel_noise_level,
            )
            .field("nyquist_velocity", &self.nyquist_velocity)
            .field("radial_flags", &self.radial_flags)
            .field(
                "horizontal_channel_calibration_constant",
                &self.horizontal_channel_calibration_constant,
            )
            .field(
                "vertical_channel_calibration_constant",
                &self.vertical_channel_calibration_constant,
            )
            .finish()
    }
}

#[cfg(feature = "uom")]
impl Debug for RadialDataBlock {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("RadialDataBlock")
            .field("data_block_id", &self.data_block_id)
            .field("lrtup", &self.lrtup())
            .field("unambiguous_range", &self.unambiguous_range())
            .field(
                "horizontal_channel_noise_level",
                &self.horizontal_channel_noise_level,
            )
            .field(
                "vertical_channel_noise_level",
                &self.vertical_channel_noise_level,
            )
            .field("nyquist_velocity", &self.nyquist_velocity())
            .field("radial_flags", &self.radial_flags)
            .field(
                "horizontal_channel_calibration_constant",
                &self.horizontal_channel_calibration_constant,
            )
            .field(
                "vertical_channel_calibration_constant",
                &self.vertical_channel_calibration_constant,
            )
            .finish()
    }
}