Aloft-rs

This is a sister library to aloft.py. It allows you to interact with winds aloft data from NOAA. This data is normally available as a giant blob from NOAA here and is obviously quite a pain to work with. Aloft-rs makes this easier!

Cargo.toml

[dependencies]
aloft = "*"

main.rs

extern crate aloft;
use aloft::winds_aloft_for_station;

fn main() {
    let winds = winds_aloft_for_station("CVG").unwrap();

    println!("{:?}", winds);
    println!("{:?}", winds.wind_at_altitude(12000).unwrap());
}