Nothing
EPOCHyear<-function(iday, origyr=1972)
{
if(missing(origyr)) { origyr=1972 }
# message("EPOCHyear Dates")
if(any(!is.numeric(iday)))
{
warning("Bad Dates")
## return(list(yr=origyr, jd=0) )
}
N = length(iday)
if(N<1)
{
bad.date = list(yr=1972, jd=1)
## return(list(yr=1972, jd=1) )
}
IYEARS = rep(NA, N)
IJD = rep(NA, N)
# message(iday)
# message(origyr)
for(i in 1:N)
{
itemp = trunc(iday[i]/365)+5
if(iday[i]<0) {
IYEARS[i] = origyr
IJD[i] = 0
next
}
ii = seq(from=origyr, to=origyr+itemp, by=1)
YRDAYS = c(1, DAYSperYEAR(ii))
csi = cumsum(YRDAYS)
i2 = findInterval(iday[i], csi)
if(iday[i]==DAYSperYEAR(origyr))
{
i2=1
}
IYEARS[i] = ii[i2]
theday = EPOCHday(IYEARS[i] ,jd=1, origyr=origyr)
IJD[i] = iday[i] - theday$jday +1
}
return(list(yr=IYEARS, jd=IJD) )
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.