A Clojure library designed to provide date calculations based on the Bible and the 1st Book of Enoch.
And God said, Let there be lights in the firmament of the heaven to divide the day from the night; and let them be for signs, and for seasons, and for days, and years:
And let them be for lights in the firmament of the heaven to give light upon the earth: and it was so.
Note that Luminary is still in active development and things are changing with every release. Consider it unstable until a 1.0.0 release has been tagged.
Require:
(:require [xyz.thoren.luminary :as l])
Examples:
(l/find-date 5 11)
;; =>
{:hebrew
{:days-in-month 30,
:day-of-week 5,
:month-of-year 5,
:minor-feast-day false,
:day-of-month 11,
:major-feast-day false,
:sabbath false,
:names
{:month-of-year "5th",
:traditional-month-of-year "Av",
:day-of-month "11th",
:day-of-week "5th day of the week"},
:months-in-year 12},
:time
{:year
{:start #object[java.time.ZonedDateTime 0x7d7f4754 "2021-04-12T19:06+03:00[Asia/Jerusalem]"],
:end #object[java.time.ZonedDateTime 0x50fa2316 "2022-04-01T18:57:59+03:00[Asia/Jerusalem]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region false},
:month
{:start #object[java.time.ZonedDateTime 0x757fa215 "2021-08-08T19:29+03:00[Asia/Jerusalem]"],
:end #object[java.time.ZonedDateTime 0x6feb8d9e "2021-09-07T18:54:59+03:00[Asia/Jerusalem]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region false},
:week
{:start #object[java.time.ZonedDateTime 0x123392bd "2021-08-14T19:23+03:00[Asia/Jerusalem]"],
:end #object[java.time.ZonedDateTime 0x4228d927 "2021-08-21T19:15:59+03:00[Asia/Jerusalem]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region false},
:day
{:start #object[java.time.ZonedDateTime 0x7c635c18 "2021-08-18T19:19+03:00[Asia/Jerusalem]"],
:end #object[java.time.ZonedDateTime 0x439d3674 "2021-08-19T19:17:59+03:00[Asia/Jerusalem]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region false}}}
(l/find-date-in-year 78.2253587 15.4878901 "Europe/Oslo" 2025 1 14)
;; =>
{:hebrew
{:days-in-month 30,
:day-of-week 7,
:month-of-year 1,
:minor-feast-day false,
:day-of-month 14,
:major-feast-day
{:name "Passover",
:hebrew-name "Pesach",
:day-of-feast 1,
:days-in-feast 1},
:sabbath true,
:names
{:month-of-year "1st",
:traditional-month-of-year "Nisan",
:day-of-month "14th",
:day-of-week "Sabbath"},
:months-in-year 13},
:time
{:year
{:start #object[java.time.ZonedDateTime 0x7b50d0cc "2025-03-29T19:32+01:00[Europe/Oslo]"],
:end #object[java.time.ZonedDateTime 0x183fe2dc "2026-04-18T00:13:59+02:00[Europe/Oslo]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region false},
:month
{:start #object[java.time.ZonedDateTime 0x60f92419 "2025-03-29T19:32+01:00[Europe/Oslo]"],
:end #object[java.time.ZonedDateTime 0x48bd469b "2025-04-28T21:23:59+02:00[Europe/Oslo]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region true},
:week
{:start #object[java.time.ZonedDateTime 0x6fc06188 "2025-04-05T21:31+02:00[Europe/Oslo]"],
:end #object[java.time.ZonedDateTime 0x337e83c0 "2025-04-12T22:43:59+02:00[Europe/Oslo]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region false},
:day
{:start #object[java.time.ZonedDateTime 0x40883d00 "2025-04-11T22:32+02:00[Europe/Oslo]"],
:end #object[java.time.ZonedDateTime 0x9b8598d "2025-04-12T22:43:59+02:00[Europe/Oslo]"],
:start-adjusted-for-polar-region false,
:end-adjusted-for-polar-region false}}}
list-of-known-feast-days-in-gregorian-year
will list the dates on which holidays start
at the sunset:
(l/list-of-known-feast-days-in-gregorian-year 2021)
;; =>
("2021-01-13 1st day of the 11th month"
"2021-02-12 1st day of the 12th month"
"2021-02-25 Purim"
"2021-02-26 Shushan Purim"
"2021-03-13 1st day of the 13th month"
"2021-04-12 1st day of the 1st month"
"2021-04-25 Passover"
"2021-04-26 1st day of the Feast of Unleavened Bread"
"2021-04-27 2nd day of the Feast of Unleavened Bread"
"2021-04-28 3rd day of the Feast of Unleavened Bread"
"2021-04-29 4th day of the Feast of Unleavened Bread"
"2021-04-30 5th day of the Feast of Unleavened Bread"
"2021-05-01 Feast of First Fruits"
"2021-05-02 7th day of the Feast of Unleavened Bread"
"2021-05-12 1st day of the 2nd month"
"2021-06-10 1st day of the 3rd month"
"2021-06-19 Feast of Weeks"
"2021-07-10 1st day of the 4th month"
"2021-08-08 1st day of the 5th month"
"2021-09-07 1st day of the 6th month"
"2021-10-06 1st day of the 7th month"
"2021-10-06 Feast of Trumpets"
"2021-10-15 Day of Atonement"
"2021-10-20 1st day of the Feast of Tabernacles"
"2021-10-21 2nd day of the Feast of Tabernacles"
"2021-10-22 3rd day of the Feast of Tabernacles"
"2021-10-23 4th day of the Feast of Tabernacles"
"2021-10-24 5th day of the Feast of Tabernacles"
"2021-10-25 6th day of the Feast of Tabernacles"
"2021-10-26 7th day of the Feast of Tabernacles"
"2021-10-27 The Last Great Day"
"2021-11-05 1st day of the 8th month"
"2021-12-04 1st day of the 9th month"
"2021-12-28 1st day of Hanukkah"
"2021-12-29 2nd day of Hanukkah"
"2021-12-30 3rd day of Hanukkah"
"2021-12-31 4th day of Hanukkah")
The Bible instructs believers to keep several Feasts, or Moedim. There are several methods for determining what date it is according to the model described in the Bible. The most common would be the Rabbinic Calendar which is a mathematical calendar based on a lunar month and a solar year, but there are others, such as the Karaite Calendar, which is also has a lunar month and a solar year, but where observation of the new moon is the basis for a 'new month' and the status of the Barley in Israel is the basis for a 'new year'.
This library is based both on The Bible and the 1st Book of Enoch and follows the following conventions:
Pull requests are welcome. Especially those related to performance improvements, and of course bug fixes. Please don't open an issue or a pull request to 'fix' the interpretation of Scripture leading to this calendar system. There are many calendar systems out there and I absolutely respect that no one can know with 100% assurance how to calculate these matters until Messiah comes back.
With that being said, I will consider pull requests to support multiple variants, such as sliver calculations, etc.
Copyright © 2021 Johan Thorén
This project is licensed under the GNU Lesser General Public License v3.0.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close