stem-branch 0.4.0

Native Rust port of stem-branch's solar ephemeris core (full VSOP87D Earth series + JPL DE441-fitted correction + IAU2000B nutation).
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Sexagenary name labels — the ten Heavenly Stems (天干) and twelve Earthly
//! Branches (地支). Ported verbatim from the TypeScript `STEMS` / `BRANCHES`
//! (`src/stems.ts`, `src/branches.ts`); Traditional Chinese.

/// The ten Heavenly Stems (天干), index 0 = 甲.
pub const HEAVENLY_STEMS: [&str; 10] = ["", "", "", "", "", "", "", "", "", ""];

/// The twelve Earthly Branches (地支), index 0 = 子.
pub const EARTHLY_BRANCHES: [&str; 12] = [
    "", "", "", "", "", "", "", "", "", "", "", "",
];