Rostmonat bis Quartal
fn month_to_quarter(month: u8) -> u8 {
(month + 2) / 3
}
Mackerel
fn month_to_quarter(month: u8) -> u8 {
(month + 2) / 3
}