Nothing
# calculates daylength dl [h] and declination delta [radians]
# on day i for latitude lat [degrees]
# declination: angle between sun rays and equatorial plane for
# the whole earth (-23 degrees - + 23 degrees)
daylength <- function(i,l) {
if(!is.integer(i)) stop("daylength: first argument must be an integer. Exiting ...")
res <- .C("Cdaylength",l=as.double(l),i=as.integer(i),dl=double(1),delta=double(1))
return(list(dl=res$dl, delata=res$delta))
}
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.