[][src]Struct sounding_analysis::StationInfo

pub struct StationInfo { /* fields omitted */ }

Station information including location data and identification number.

Methods

impl StationInfo[src]

pub fn new_with_values<T, U, V, W>(
    station_num: T,
    location: U,
    elevation: V
) -> Self where
    T: Into<Optioned<i32>>,
    U: Into<Option<(f64, f64)>>,
    Optioned<W>: From<V>,
    W: Noned + Length,
    Meters: From<W>, 
[src]

Create a new StationInfo object.

Arguments

station_num: The USAF station identifier, or None.

location: The latitude and longitude as a tuple, or None.

elevation: The elevation of the station in meters.

Examples

use metfor::{Meters, Feet};
use sounding_analysis::StationInfo;
use optional::{some, none};

let _stn = StationInfo::new_with_values(12345, (45.2,-113.5), Meters(2000.0));
let _stn = StationInfo::new_with_values(12345, (45.2,-113.5), Feet(2000.0));
let _stn = StationInfo::new_with_values(12345, (45.2,-113.5), some(Meters(2000.0)));
let _stn = StationInfo::new_with_values(12345, (45.2,-113.5), some(Feet(2000.0)));
let _stn = StationInfo::new_with_values(12345, Some((45.2,-113.5)), Meters(2000.0));
let _stn = StationInfo::new_with_values(12345, Some((45.2,-113.5)), Feet(2000.0));
let _stn = StationInfo::new_with_values(12345, Some((45.2,-113.5)), some(Meters(2000.0)));
let _stn = StationInfo::new_with_values(12345, Some((45.2,-113.5)), some(Feet(2000.0)));
let _stn = StationInfo::new_with_values(Some(12345), None, Meters(2000.0));
let _stn = StationInfo::new_with_values(Some(12345), None, Feet(2000.0));
let _stn = StationInfo::new_with_values(None, (45.2,-113.5), some(Meters(2000.0)));
let _stn = StationInfo::new_with_values(None, (45.2,-113.5), some(Feet(2000.0)));

// Note that lat-lon is an `Option` and not an `Optioned`
let _stn = StationInfo::new_with_values(some(12345), None, none::<Feet>());
let _stn = StationInfo::new_with_values(some(12345), None, none::<Meters>());

pub fn new() -> Self[src]

Create a new object with default values.

Examples

use sounding_analysis::StationInfo;

assert!(StationInfo::new().station_num().is_none());
assert!(StationInfo::new().location().is_none());
assert!(StationInfo::new().elevation().is_none());

pub fn with_station<T>(self, number: T) -> Self where
    Optioned<i32>: From<T>, 
[src]

Builder method to add a station number.

Examples

use sounding_analysis::StationInfo;

assert_eq!(StationInfo::new().with_station(12345).station_num().unwrap(), 12345);
assert_eq!(StationInfo::new().with_station(Some(12345)).station_num().unwrap(), 12345);

pub fn with_lat_lon<T>(self, coords: T) -> Self where
    Option<(f64, f64)>: From<T>, 
[src]

Builder method to add a location.

Examples

use sounding_analysis::StationInfo;

assert_eq!(
    StationInfo::new().with_lat_lon((45.0, -116.0)).location().unwrap(), (45.0, -116.0));
assert_eq!(
    StationInfo::new().with_lat_lon(Some((45.0, -116.0)))
        .location()
        .unwrap(),
    (45.0, -116.0));

pub fn with_elevation<T, U>(self, elev: T) -> Self where
    Optioned<U>: From<T>,
    U: Noned + Length,
    Meters: From<U>, 
[src]

Builder method to add elevation.

Examples

 use metfor::{Meters, Feet, Km};
 use sounding_analysis::StationInfo;
 use optional::{some, none};

 let _info = StationInfo::new().with_elevation(Feet(200.0));
 let _info = StationInfo::new().with_elevation(Meters(200.0));
 let _info = StationInfo::new().with_elevation(Km(2.0));
 let _info = StationInfo::new().with_elevation(some(Feet(200.0)));
 let _info = StationInfo::new().with_elevation(some(Meters(200.0)));
 let _info = StationInfo::new().with_elevation(some(Km(2.0)));
 let _info = StationInfo::new().with_elevation(none::<Feet>());
 let _info = StationInfo::new().with_elevation(none::<Meters>());
 let _info = StationInfo::new().with_elevation(none::<Km>());

pub fn station_num(&self) -> Optioned<i32>[src]

station number, USAF number, eg 727730

pub fn location(&self) -> Option<(f64, f64)>[src]

Latitude and longitude.

pub fn elevation(&self) -> Optioned<Meters>[src]

Elevation in meters, this may be in model terrain, not necessarily the same as the real world.

Trait Implementations

impl Clone for StationInfo[src]

impl Copy for StationInfo[src]

impl Default for StationInfo[src]

impl PartialEq<StationInfo> for StationInfo[src]

impl Debug for StationInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]