1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
//! Data type and methods to store an atmospheric sounding.

use chrono::NaiveDateTime;
use optional::{Optioned, none, wrap};

use data_row::DataRow;
use enums::{Profile, Surface};
use station_info::StationInfo;

/// All the variables stored in the sounding.
///
/// The upper air profile variables are stored in parallel vectors. If a profile lacks a certain
/// variable, e.g. cloud fraction, that whole vector has length 0 instead of being full of missing
/// values.
///
#[derive(Clone, Debug, Default)]
pub struct Sounding {
    /// Station info
    station: StationInfo,

    /// Valid time of sounding
    valid_time: Option<NaiveDateTime>,
    /// Difference in model initialization time and `valid_time` in hours.
    lead_time: Optioned<i32>,

    // Upper air profile
    /// Pressure (hPa) profile
    pressure: Vec<Optioned<f64>>,
    /// Temperature (c) profile
    temperature: Vec<Optioned<f64>>,
    /// Wet-bulb (c) profile
    wet_bulb: Vec<Optioned<f64>>,
    /// Dew Point (C) profile
    dew_point: Vec<Optioned<f64>>,
    /// Equivalent Potential Temperature (K) profile
    theta_e: Vec<Optioned<f64>>,
    /// Wind direction (degrees) profile
    direction: Vec<Optioned<f64>>,
    /// Wind speed (knots) profile
    speed: Vec<Optioned<f64>>,
    /// Vertical velocity (Pa/sec), pressure vertical coordinate
    omega: Vec<Optioned<f64>>,
    /// Geopotential Height (m) profile
    height: Vec<Optioned<f64>>,
    /// Cloud coverage fraction in percent
    cloud_fraction: Vec<Optioned<f64>>,

    // Surface data
    /// Surface pressure reduce to mean sea level (hPa)
    mslp: Optioned<f64>,
    /// Surface pressure (hPa)
    station_pres: Optioned<f64>,
    /// Low cloud fraction
    low_cloud: Optioned<f64>,
    /// Mid cloud fraction
    mid_cloud: Optioned<f64>,
    /// Hi cloud fraction
    hi_cloud: Optioned<f64>,
    /// Wind direction
    wind_dir: Optioned<f64>,
    /// Wind speed in knots
    wind_spd: Optioned<f64>,
    /// 2 meter  temperature
    sfc_temperature: Optioned<f64>,
    /// 2 meter dew point
    sfc_dew_point: Optioned<f64>,
    /// Precipitation in mm
    precip: Optioned<f64>,
}

impl Sounding {
    /// Create a new sounding with default values. This is a proxy for default with a clearer name.
    /// 
    /// # Examples
    /// 
    /// ```rust
    /// use sounding_base::Sounding;
    /// 
    /// let snd = Sounding::new();
    /// println!("{:?}", snd);
    /// ```
    #[inline]
    pub fn new() -> Self {
        Sounding::default()
    }

    /// Set the station info.
    /// 
    /// # Examples
    /// 
    /// ```rust
    /// use sounding_base::{Sounding, StationInfo};
    /// 
    /// let stn = StationInfo::new();
    /// // set station values
    /// 
    /// let snd = Sounding::new()
    ///     .set_station_info(stn);
    /// 
    /// ```
    #[inline]
    pub fn set_station_info(mut self, new_value: StationInfo) -> Self {
        self.station = new_value;
        self
    }

    /// Get the station info
    /// 
    /// # Examples
    /// 
    /// ```rust
    /// use sounding_base::{Sounding, StationInfo};
    /// # use sounding_base::doctest::make_test_sounding;
    /// 
    /// let snd = make_test_sounding();
    /// let stn: StationInfo = snd.get_station_info();
    /// 
    /// println!("{:?}", stn);
    /// 
    /// ```
    #[inline]
    pub fn get_station_info(&self) -> StationInfo {
        self.station
    }

    /// Set a profile variable
    /// 
    /// # Examples
    /// 
    /// ```rust
    /// extern crate optional;
    /// use optional::some;
    /// 
    /// # extern crate sounding_base;
    /// # use sounding_base::{Sounding, Profile};
    /// 
    /// # fn main(){
    /// let p = vec![some(1000.0), some(925.0), some(850.0), some(700.0)];
    /// 
    /// let snd = Sounding::new()
    ///     .set_profile(Profile::Pressure, p);
    /// 
    /// println!("{:?}", snd);
    /// # }
    /// 
    /// ```
    #[inline]
    pub fn set_profile(mut self, var: Profile, mut values: Vec<Optioned<f64>>) -> Self {
        use self::Profile::*;

        let sfc_val = match var {
            Pressure => self.station_pres,
            Temperature => self.sfc_temperature,
            WetBulb => self.station_pres.and_then(|p| {
                self.sfc_temperature.and_then(|t| {
                    self.sfc_dew_point
                        .and_then(|dp| ::metfor::wet_bulb_c(t, dp, p).ok().into())
                })
            }),
            DewPoint => self.sfc_dew_point,
            ThetaE => self.station_pres.and_then(|p| {
                self.sfc_temperature.and_then(|t| {
                    self.sfc_dew_point
                        .and_then(|dp| ::metfor::theta_e_kelvin(t, dp, p).ok().into())
                })
            }),
            WindDirection => self.wind_dir,
            WindSpeed => self.wind_spd,
            PressureVerticalVelocity => wrap(0.0),
            GeopotentialHeight => Optioned::from(self.station.elevation()),
            CloudFraction => none(),
        };

        if !values.is_empty() {
            values.insert(0, sfc_val);
        }

        match var {
            Pressure => self.pressure = values,
            Temperature => self.temperature = values,
            WetBulb => self.wet_bulb = values,
            DewPoint => self.dew_point = values,
            ThetaE => self.theta_e = values,
            WindDirection => self.direction = values,
            WindSpeed => self.speed = values,
            PressureVerticalVelocity => self.omega = values,
            GeopotentialHeight => self.height = values,
            CloudFraction => self.cloud_fraction = values,
        }

        self
    }

    /// Get a profile variable as a slice
    /// 
    /// # Examples
    /// 
    /// ```rust
    /// use sounding_base::{Sounding, Profile};
    /// # use sounding_base::doctest::make_test_sounding;
    /// 
    /// let snd = make_test_sounding();
    /// let data = snd.get_profile(Profile::Pressure);
    /// 
    /// for p in data {
    ///     if p.is_some() {
    ///         println!("{:?}", p);
    ///     } else {
    ///         println!("missing value!");
    ///     }
    /// }
    /// 
    /// ```
    #[inline]
    pub fn get_profile(&self, var: Profile) -> &[Optioned<f64>] {
        use self::Profile::*;
        match var {
            Pressure => &self.pressure,
            Temperature => &self.temperature,
            WetBulb => &self.wet_bulb,
            DewPoint => &self.dew_point,
            ThetaE => &self.theta_e,
            WindDirection => &self.direction,
            WindSpeed => &self.speed,
            PressureVerticalVelocity => &self.omega,
            GeopotentialHeight => &self.height,
            CloudFraction => &self.cloud_fraction,
        }
    }

    /// Set a surface variable
    #[inline]
    pub fn set_surface_value<T>(mut self, var: Surface, value: T) -> Self
    where
        Optioned<f64>: From<T>,
    {
        let value = Optioned::from(value);

        use self::Surface::*;
        match var {
            MSLP => self.mslp = value,
            StationPressure => self.station_pres = value,
            LowCloud => self.low_cloud = value,
            MidCloud => self.mid_cloud = value,
            HighCloud => self.hi_cloud = value,
            WindDirection => self.wind_dir = value,
            WindSpeed => self.wind_spd = value,
            Temperature => self.sfc_temperature = value,
            DewPoint => self.sfc_dew_point = value,
            Precipitation => self.precip = value,
        };

        // Set the first element of some of the profiles if necessary.
        {
            if let Some(profile) = match var {
                StationPressure => Some(&mut self.pressure),
                Temperature => Some(&mut self.temperature),
                DewPoint => Some(&mut self.dew_point),
                WindDirection => Some(&mut self.direction),
                WindSpeed => Some(&mut self.speed),
                _ => None,
            } {
                if profile.len() > 0 {
                    profile[0] = value;
                }
            }

            if var == StationPressure || var == Temperature || var == DewPoint {
                if !self.wet_bulb.is_empty() {
                    self.wet_bulb[0] = self.station_pres.and_then(|p| {
                        self.sfc_temperature.and_then(|t| {
                            self.sfc_dew_point
                                .and_then(|dp| ::metfor::wet_bulb_c(t, dp, p).ok().into())
                        })
                    });
                }

                if !self.theta_e.is_empty() {
                    self.theta_e[0] = self.station_pres.and_then(|p| {
                        self.sfc_temperature.and_then(|t| {
                            self.sfc_dew_point
                                .and_then(|dp| ::metfor::theta_e_kelvin(t, dp, p).ok().into())
                        })
                    });
                }
            }
        }

        self
    }

    /// Get a surface variable
    #[inline]
    pub fn get_surface_value(&self, var: Surface) -> Optioned<f64> {
        use self::Surface::*;
        match var {
            MSLP => self.mslp,
            StationPressure => self.station_pres,
            LowCloud => self.low_cloud,
            MidCloud => self.mid_cloud,
            HighCloud => self.hi_cloud,
            WindDirection => self.wind_dir,
            WindSpeed => self.wind_spd,
            Temperature => self.sfc_temperature,
            DewPoint => self.sfc_dew_point,
            Precipitation => self.precip.map_t(|pp| pp * 25.4), // convert from mm to inches.
        }
    }

    /// Difference in model initialization time and `valid_time` in hours.
    #[inline]
    pub fn set_lead_time<T>(mut self, lt: T) -> Self
    where
        Optioned<i32>: From<T>,
    {
        self.lead_time = Optioned::from(lt);
        self
    }

    /// Difference in model initialization time and `valid_time` in hours.
    #[inline]
    pub fn get_lead_time(&self) -> Optioned<i32> {
        self.lead_time
    }

    /// Valid time of the sounding
    #[inline]
    pub fn get_valid_time(&self) -> Option<NaiveDateTime> {
        self.valid_time
    }

    /// Builder method to set the valid time of the sounding
    #[inline]
    pub fn set_valid_time<T>(mut self, valid_time: T) -> Self
    where
        Option<NaiveDateTime>: From<T>,
    {
        self.valid_time = Option::from(valid_time);
        self
    }

    /// Get a bottom up iterator over the data rows. The first value returned from the iterator is
    /// surface values.
    #[inline]
    pub fn bottom_up<'a>(&'a self) -> impl Iterator<Item = DataRow> + 'a {
        ProfileIterator {
            next_idx: 0,
            direction: 1,
            src: self,
        }
    }

    /// Get a top down iterator over the data rows. The last value returned is the surface values.
    #[inline]
    pub fn top_down<'a>(&'a self) -> impl Iterator<Item = DataRow> + 'a {
        ProfileIterator {
            next_idx: (self.pressure.len() - 1) as isize,
            direction: -1,
            src: self,
        }
    }

    /// Get a row of data values from this sounding.
    #[inline]
    pub fn get_data_row(&self, idx: usize) -> Option<DataRow> {
        macro_rules! copy_to_result {
            ($result:ident, $field:ident, $idx:ident) => {
                match self.$field.get($idx) {
                    None => {}
                    Some(opt_val) => $result.$field = *opt_val,
                }
            };
        }

        if self.pressure.len() <= idx {
            return None;
        }

        let mut result = DataRow::default();

        copy_to_result!(result, pressure, idx);
        copy_to_result!(result, temperature, idx);
        copy_to_result!(result, wet_bulb, idx);
        copy_to_result!(result, dew_point, idx);
        copy_to_result!(result, theta_e, idx);
        copy_to_result!(result, direction, idx);
        copy_to_result!(result, speed, idx);
        copy_to_result!(result, omega, idx);
        copy_to_result!(result, height, idx);
        copy_to_result!(result, cloud_fraction, idx);

        Some(result)
    }

    /// Get the surface values in a `DataRow` format.
    #[inline]
    pub fn surface_as_data_row(&self) -> DataRow {
        let mut result = DataRow::default();
        result.pressure = self.station_pres;
        result.temperature = self.sfc_temperature;
        result.dew_point = self.sfc_dew_point;

        result.wet_bulb = self.station_pres.and_then(|p| {
            self.sfc_temperature.and_then(|t| {
                self.sfc_dew_point
                    .and_then(|dp| ::metfor::wet_bulb_c(t, dp, p).ok().into())
            })
        });

        result.theta_e = self.station_pres.and_then(|p| {
            self.sfc_temperature.and_then(|t| {
                self.sfc_dew_point
                    .and_then(|dp| ::metfor::theta_e_kelvin(t, dp, p).ok().into())
            })
        });

        result.direction = self.wind_dir;
        result.speed = self.wind_spd;
        result.omega = wrap(0.0);
        result.height = self.station.elevation().map_or(none(),|elev| wrap(elev));

        result
    }

    /// Given a target pressure, return the row of data values closest to this one.
    pub fn fetch_nearest_pnt(&self, target_p: f64) -> DataRow {
        let mut idx: usize = 0;
        let mut best_abs_diff: f64 = ::std::f64::MAX;
        for (i, p) in self.pressure.iter().enumerate()
        {
            if let Some(p) = p.map_or(None, |p| Some(p)) {
                let abs_diff = (target_p - p).abs();
                if abs_diff < best_abs_diff {
                    best_abs_diff = abs_diff;
                    idx = i;
                }
                if abs_diff > best_abs_diff {
                    break;
                }
            }
        }

        if idx == 0 {
            self.surface_as_data_row()
        } else {
            self.get_data_row(idx - 1).unwrap()
        }
    }
}

/// Iterator over the data rows of a sounding. This may be a top down or bottom up iterator where
/// either the last or first row returned is the surface data.
struct ProfileIterator<'a> {
    next_idx: isize,
    direction: isize, // +1 for bottom up, -1 for top down
    src: &'a Sounding,
}

impl<'a> Iterator for ProfileIterator<'a> {
    type Item = DataRow;

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        let result = self.src.get_data_row(self.next_idx as usize);
        self.next_idx += self.direction;
        result
    }
}

// FIXME: only configure for test and doc tests, not possible as of 1.26
#[doc(hidden)]
pub mod doctest {
    use super::*;

    pub fn make_test_sounding() -> super::Sounding {
        use optional::{some};

        let p = vec![some(1000.0), some(925.0), some(850.0), some(700.0)];
        let t = vec![some(20.0), some(18.0), some(10.0), some(2.0)];

        Sounding::new().set_profile(Profile::Pressure, p)
            .set_profile(Profile::Temperature, t)
            .set_surface_value(Surface::Temperature, 21.0)
            .set_surface_value(Surface::StationPressure, 1005.0)
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn test_profile() {

        let snd = doctest::make_test_sounding();

        println!("snd = {:#?}", snd);
        assert!(
            snd.get_profile(Profile::Pressure)
                .iter()
                .all(|p| p.is_some())
        );
        assert!(
            snd.get_profile(Profile::Temperature)
                .iter()
                .all(|t| t.is_some())
        );
    }
}