inst/tinytest/test_julian.R

Sys.setenv(LANGUAGE = "en") # Force locale

rd <- fixed(
  year = dates$julian_year,
  month = dates$julian_month,
  day = dates$julian_day,
  calendar = J()
)

dec <- as_decimal(
  year = dates$julian_year,
  month = dates$julian_month,
  day = dates$julian_day,
  calendar = J()
)

target <- data.frame(
  year = as.numeric(dates$julian_year),
  month = as.numeric(dates$julian_month),
  day = as.numeric(dates$julian_day)
)

# Rata die <> Julian date ======================================================
expect_equal(rd@.Data, as.numeric(dates$rata_die))
expect_equal(as_year(rd, calendar = J()), target$year)
expect_equal(as_date(rd, calendar = J()), target)

# Rata die <> Julian decimal year ===========================================
# expect_equal(round(as_decimal(2023, 05, 09, calendar = J()), 9), 2023.350684936)
# expect_equal(round(as_decimal(2000, 02, 29, calendar = J()), 9), 2000.161202186)

# WHY ???
fix <- fixed(dec, calendar = J())
expect_equal(fix@.Data, as.numeric(dates$rata_die))
expect_equal(as_date(fix, calendar = J()), target)
expect_equal(as_year(fix, calendar = J(), decimal = FALSE), target$year)
expect_equal(as_year(fix, calendar = J(), decimal = TRUE), dec)

# Shortcuts ====================================================================
expect_equal(fixed_to_julian(fixed_from_julian(01, 01, 01)), 1)
expect_equal(as_date(fixed_from_AD(01, 01, 01), calendar = J()), data.frame(year = 1, month = 1, day = 3))

Try the aion package in your browser

Any scripts or data that you put into this service are public.

aion documentation built on June 8, 2025, 1:10 p.m.