#lunar-calendar #solar-calendar #korean #solar #calendar #lunar #gapja

bin+lib rs-klc

A library for converting between Korean Solar and Lunar dates, calculating Gapja (간지), and day of the week

2 releases

new 0.1.3 Mar 28, 2025
0.1.2 Mar 28, 2025

#94 in Date and time

MIT license

60KB
1K SLoC

korean-lunar-calendar: Korean Lunar-Solar Calendar Converter

A Rust library for converting between Korean Lunar dates and Gregorian Solar dates. It also calculates the traditional Korean and Chinese Gapja (sexagenary cycle) names for the year, month, and day.

This library is based on the data and algorithms originally implemented in JavaScript by usingsky and adapted for Rust.

Features

  • Lunar to Solar Conversion: Convert a Korean Lunar date (including intercalary months) to the corresponding Gregorian Solar date.
  • Solar to Lunar Conversion: Convert a Gregorian Solar date to the corresponding Korean Lunar date.
  • Gapja Calculation: Calculate the Korean (갑자) and Chinese (干支) sexagenary cycle names for the year, month, and day of a given date.
  • Julian Day Number (JDN): Calculate the JDN for a solar date.
  • Day of the Week: Determine the day of the week (Monday-Sunday) for a solar date.
  • Solar Leap Year Check: Check if a given solar year is a leap year (handling Julian/Gregorian rules).
  • Lunar Intercalary Month Check: Check if a given lunar year contains an intercalary month (윤달) and which month it is.
  • Date Validation: Checks if the provided dates are within the supported range and handles historical anomalies like the Gregorian calendar reform gap in October 1582.
  • Intercalary Month Handling: Correctly identifies and processes intercalary (leap) months in the Lunar calendar during conversions.
  • ISO Formatting: Provides simple ISO 8601 format output (YYYY-MM-DD) for both Lunar and Solar dates.

Supported Date Range

  • Lunar: 1391-01-01 to 2050-11-18
  • Solar: 1391-02-05 to 2050-12-31

(Note: Dates are based on the Korean time zone (KST) implicitly via the underlying data/algorithm design.)

Usage

Add this to your Cargo.toml:

[dependencies]
rs-klc = "0.1" # Check crates.io for the latest version

Then use the library like this:

use korean_lunar_calendar::{LunarSolarConverter, DayOfWeek};

fn main() {
    let mut converter = LunarSolarConverter::new();

    // Set a Solar date and get Lunar info
    if converter.set_solar_date(2022, 7, 10) {
        println!("Solar: {}", converter.get_solar_iso_format()); // Output: 2022-07-10
        println!("Lunar: {}", converter.get_lunar_iso_format()); // Output: 2022-06-12
        println!("Gapja: {}", converter.get_gapja_string()); // Output: 임인년 정미월 갑자일

        // Get day of week for the solar date
        if let Some(dow) = LunarSolarConverter::get_day_of_week(2022, 7, 10) {
            println!("Day of Week: {:?}", dow); // Output: Sunday
        }
    } else {
        println!("Invalid solar date");
    }

    println!("--- Check other features ---");

    // Check solar leap year
    let solar_year = 2024;
    let is_solar_leap = LunarSolarConverter::is_solar_leap_year(solar_year);
    println!("Solar Year {} Leap: {}", solar_year, is_solar_leap); // Output: true

    // Check lunar intercalary month
    let lunar_year = 2023;
    if let Some(intercalary_month) = LunarSolarConverter::get_lunar_intercalary_month(lunar_year) {
        println!("Lunar Year {} has intercalary month: {}", lunar_year, intercalary_month); // Output: 2 (윤2월)
    } else {
        println!("Lunar Year {} has no intercalary month.", lunar_year);
    }

    // Calculate JDN
    if let Some(jdn) = LunarSolarConverter::get_julian_day_number(2022, 7, 10) {
        println!("JDN for 2022-07-10: {}", jdn); // Output: 2459771
    }
}

Building and Testing

  • Build: cargo build
  • Run example (if you add one to examples/): cargo run --example <name>
  • Run tests: cargo test

License

This project is licensed under the MIT License. See the LICENSE file for details.

No runtime deps