EasterWorker

VGI Worker

Worker process hosting the Easter date scalar function.

vgi v0.8.0

Implementation 0.1.4
Connect with DuckDB
ATTACH 'easter' AS easter (TYPE vgi, LOCATION '{location}');
Explore this data in CupolaBrowse schemas, tables, views, and functions interactively — no install required.

main

Computus: the date of Western (Gregorian) Easter Sunday

Functions
easter_date scalar

Date of Western (Gregorian) Easter Sunday for a given year

Parameters
NameType
yearint64
Examples

Easter Sunday in 2025 (2025-04-20)

SELECT easter_date(2025)

Easter dates for 2020 through 2030

SELECT year, easter_date(year) AS easter FROM range(2020, 2031) t(year)