Learn R Programming

chillR (version 0.75)

JDay_later: Check whether a Julian date is after another one

Description

For two Julian dates, this function checks whether the first date is later than the second date within a user-defined phenological season. This is particularly useful for seasons that start in one year and end in the next, because simple > or < operations can produce wrong results then.

Usage

JDay_later(check_date, ref_date, season = c(1, 366))

Value

Boolean result (TRUE/FALSE) of the comparison.

Arguments

check_date

integer ranging from 1 to 366, indicating a Julian date. This is the date for which to check whether it is after the reference date. If this is a vector, all elements are checked against the reference date.

ref_date

integer ranging from 1 to 366, indicating a Julian date. This is the reference date.

season

integer vector of length 2, specifying the beginning and end of the phenology season, respectivcely.

Author

Eike Luedeling

Examples

Run this code

JDay_later(check_date=10,ref_date=365,season=c(305,59))

Run the code above in your browser using DataLab