camsRad
is a R client for CAMS
radiation service. CAMS radiation service provides time series of
global, direct, and diffuse irradiations on horizontal surface, and
direct irradiation on normal plane for the actual weather conditions as
well as for clear-sky conditions. The geographical coverage is the
field-of-view of the Meteosat satellite, roughly speaking Europe,
Africa, Atlantic Ocean, Middle East (-66° to 66° in both latitudes and
longitudes). The time coverage of data is from 2004-02-01 up to 2 days
ago. Data are available with a time step ranging from 15 min to 1 month.
Target audience are researchers, developers and consultants in need of
high resolution solar radiations time series.
Dev version from GitHub.
::install_github("ropenscilabs/camsRad") devtools
library("camsRad")
To access the CAMS radiation service you need to register at http://www.soda-pro.com/web-services/radiation/cams-radiation-service.
The email you use at the registration step will be used for
authentication, and need to be set with
cams_set_user()
.
# Authentication
cams_set_user("your@email.com") # An email registered at soda-pro.com
Get hourly CAMS solar data into a R data frame. For the location 60° latitude and 15° longitude, and for period 2016-01-01 to 2016-01-15.
<- cams_get_radiation(
df lat=60, lng=15,
date_begin="2016-07-01",
date_end="2016-07-01")
print(df)
Retrieve daily CAMS solar data in netCDF format. You need to have the
ncdf4
package installed.
library(ncdf4)
<- paste0(tempfile(), ".nc")
filename
<- cams_api(
r 60, 15, "2016-06-01", "2016-06-10",
format="application/x-netcdf",
time_step = "P01D",
filename=filename)
# Access the on disk stored ncdf4 file
<- nc_open(r$response$content)
nc
# list names of available variables
names(nc$var)
# create data.frame with timestamp and global horizontal irradiation and plot it
<- data.frame(
df timestamp = as.POSIXct(nc$dim$time$vals, "UTC", origin="1970-01-01"),
GHI = ncvar_get(nc, "GHI"))
plot(df, type="l")
nc_close(nc)