use-pressure-system 0.1.0

Primitive pressure system vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    31 out of 31 items documented1 out of 12 items with examples
  • Size
  • Source code size: 12.69 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 859.61 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-pressure-system

Primitive pressure system vocabulary.

use-pressure-system models pressure system kinds, pressure system names, simple strength labels, and cyclone kind vocabulary. It does not model pressure fields, track storms, or fetch advisories.

use use_pressure_system::{CycloneKind, PressureSystemKind, PressureSystemName};

let name = PressureSystemName::new("Azores High").unwrap();

assert_eq!(name.as_str(), "Azores High");
assert_eq!(PressureSystemKind::High.to_string(), "high");
assert_eq!(CycloneKind::PolarLow.to_string(), "polar-low");