use-atmosphere 0.1.0

Primitive atmosphere vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    39 out of 39 items documented1 out of 12 items with examples
  • Size
  • Source code size: 14.39 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 915.96 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 3s Average build duration of successful builds.
  • all releases: 3s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-meteorology
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-atmosphere

Primitive atmosphere vocabulary.

use-atmosphere models atmosphere layers, descriptive atmospheric conditions, air masses, and visibility conditions. It does not simulate atmospheric layers, model circulation, or calculate atmospheric movement.

use use_atmosphere::{AirMassKind, AtmosphericCondition, AtmosphereLayer, VisibilityCondition};

let condition = AtmosphericCondition::new("stable boundary layer").unwrap();

assert_eq!(AtmosphereLayer::Troposphere.to_string(), "troposphere");
assert_eq!(AirMassKind::MaritimePolar.to_string(), "maritime-polar");
assert_eq!(VisibilityCondition::Mist.to_string(), "mist");
assert_eq!(condition.as_str(), "stable boundary layer");