SAFRAN meteorological data for a region in southern France for precipitation, wind and maximum temperature.

Format

a 3-dimensional array [days,coordinates,variables] as index

days index

first dimension : 4018 days index from 2011/01/01 to 2021/12/31

coordinates index

second dimension : 108 coordinates index

variables index

third dimension : 3 variables index precipitation, wind and maximum temperature

Author

Said Obakrim

Examples

data("data", package="MSTWeatherGen")
data("coordinates", package = "MSTWeatherGen")
variables = c("Precipitation", "Wind", "Temp_max")
days = seq(as.Date("2011-01-01"),as.Date("2021-12-31"), by="day")
str(data)
#>  num [1:4018, 1:108, 1:3] 0 0 1.5 1 0.5 0 0 0 13.9 0 ...
#>  - attr(*, "dimnames")=List of 3
#>   ..$ : chr [1:4018] "1" "2" "3" "4" ...
#>   ..$ : chr [1:108] "227" "228" "229" "230" ...
#>   ..$ : chr [1:3] "Precipitation" "Wind" "Temp_max"