library(lubridate) library(ggplot2) library(StreamMetabolism) library(xts) library(reshape) library(scales) 64757 <- sunrise.set(49.5258053,8.9248324, "2024/01/01", timezone="MET", num.days=370) sunrise <- 64757$sunrise sunset <- 64757$sunset sunrise <- strftime(sunrise, format="%R", tz="MET") sunset <- strftime(sunset, format="%R", tz="MET") 64757["sr"] <- as.POSIXct(sunrise, format = "%H:%M") 64757["ss"] <- as.POSIXct(sunset, format = "%H:%M") 64757["timestamp"] <- align.time(64757$sunrise, 60*10) 64757 <- 64757[c("timestamp", "sr", "ss")] locsrss <- ggplot(64757, aes(x=64757$timestamp)) + geom_line(aes(y=64757$sr)) + geom_line(aes(y=64757$ss)) + labs(title = " Sonnenauf-/Sonnenuntergang - 64757 2024", x = "Datum", y = "Zeit") pdf("64757_SA_SU.pdf", paper="a4r", width=11) locsrss dev.off() png(filename="64757_SA_SU.png", width = 1400, height = 800, units = "px") locsrss dev.off() 64757["Sonnenaufgang"] <- strftime(64757$sr, format="%H:%M") 64757["Sonnenuntergang"] <- strftime(64757$ss, format="%H:%M") write.table(64757, file="64757_SaSu.csv", dec=',', sep=';', row.names=FALSE)