# NOT RUN {
# load an example vertical profile time series object
data(example_vp)
# print some summary information
example_vp
# convert the object to a data.frame
df <- as.data.frame(example_vp)
# print the data.frame to console
df
# do not compute sunrise/sunset information
df <- as.data.frame(example_vp, suntime = FALSE)
# override the latitude/longitude information stored in the object
# when calculating sunrise / sunset
df <- as.data.frame(example_vp, suntime = TRUE, lat = 50, lon = 4)
# }
Run the code above in your browser using DataLab