~fossdd/nina

Rust crate for the Bundesamt für Bevölkerungsschutz
Release 1.0.0
Format code
Unlicense repository

clone

read-only
https://git.sr.ht/~fossdd/nina
read/write
git@git.sr.ht:~fossdd/nina

You can also use your local clone with git send-email.

#NINA API

Rust library for nina.api.bund.dev, the german warn system.

#Example

use nina::*;

let ags = "091620000000";

let covidrules_for_ags = covidrules(ags).unwrap();
let overview_for_ags = overview(ags).unwrap();

let mut warnings: Vec<MapWarning> = Vec::new();
warnings.extend(mowas().unwrap());
warnings.extend(katwarn().unwrap());
warnings.extend(biwapp().unwrap());