use-air-temperature 0.1.0

Primitive meteorological air temperature vocabulary for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# use-air-temperature

Primitive meteorological air temperature vocabulary.

`use-air-temperature` stores air temperature, dew point, heat index, and wind chill values as Celsius `f64` wrappers. It does not provide a unit-conversion framework, forecast logic, or heat-index and wind-chill formulas.

```rust
use use_air_temperature::{AirTemperature, DewPoint, TemperatureKind};

let air = AirTemperature::new(18.5).unwrap();
let dew_point = DewPoint::new(11.0).unwrap();

assert_eq!(air.celsius(), 18.5);
assert_eq!(dew_point.celsius(), 11.0);
assert_eq!(TemperatureKind::DewPoint.to_string(), "dew-point");
```