meteospain
aims to offer access to different Spanish
meteorological stations data in an uniform way.
meteospain
is in CRAN, and can be installed as any other
package:
install.packages('meteospain')
Also, meteospain
is in active development. You can
install the development version from GitHub with:
# install.packages("remotes")
::install_github("emf-creaf/meteospain") remotes
The following meteorological stations services are available:
Access to the services is done with the get_meteo_from
function, providing the name of the service and the options. Each
service has a dedicated *service*_options()
function to
guide through the specifics of each service:
library(meteospain)
<- meteogalicia_options(resolution = 'current_day')
mg_options get_meteo_from('meteogalicia', mg_options)
#> A información divulgada a través deste servidor ofrécese gratuitamente aos cidadáns para que poida ser
#> utilizada libremente por eles, co único compromiso de mencionar expresamente a MeteoGalicia e á
#> Consellería de Medio Ambiente, Territorio e Vivenda da Xunta de Galicia como fonte da mesma cada vez
#> que as utilice para os usos distintos do particular e privado.
#> https://www.meteogalicia.gal/web/informacion/notaIndex.action
#> Simple feature collection with 3673 features and 14 fields
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: -9.178318 ymin: 41.8982 xmax: -6.765224 ymax: 43.734
#> Geodetic CRS: WGS 84
#> # A tibble: 3,673 × 15
#> timestamp service stati…¹ stati…² stati…³ altit…⁴ tempe…⁵ min_t…⁶
#> <dttm> <chr> <chr> <chr> <chr> [m] [°C] [°C]
#> 1 2022-12-12 11:00:00 meteogal… 10045 Mabego… A Coru… 94 18.1 17.6
#> 2 2022-12-12 11:00:00 meteogal… 10046 Marco … A Coru… 651 12.6 12.3
#> 3 2022-12-12 11:00:00 meteogal… 10047 Pedro … Lugo 51 16.8 13.5
#> 4 2022-12-12 11:00:00 meteogal… 10048 O Inve… Ourense 1026 12.0 11.2
#> 5 2022-12-12 11:00:00 meteogal… 10049 Corrub… A Coru… 30 16.2 16.1
#> 6 2022-12-12 11:00:00 meteogal… 10050 CIS Fe… A Coru… 37 17.3 17.1
#> 7 2022-12-12 11:00:00 meteogal… 10052 Muralla A Coru… 661 13.3 13.1
#> 8 2022-12-12 11:00:00 meteogal… 10053 Campus… Lugo 400 14.0 12.4
#> 9 2022-12-12 11:00:00 meteogal… 10055 Guitir… Lugo 684 12.3 12.2
#> 10 2022-12-12 11:00:00 meteogal… 10056 Marroxo Lugo 645 13.4 12.8
#> # … with 3,663 more rows, 7 more variables: max_temperature [°C],
#> # relative_humidity [%], precipitation [L/m^2], wind_direction [°],
#> # wind_speed [m/s], insolation [h], geometry <POINT [°]>, and abbreviated
#> # variable names ¹station_id, ²station_name, ³station_province, ⁴altitude,
#> # ⁵temperature, ⁶min_temperature
Stations info can be accessed with
get_stations_info_from
function:
get_stations_info_from('meteogalicia', mg_options)
#> Simple feature collection with 155 features and 5 fields
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: -9.178318 ymin: 41.8982 xmax: -6.765224 ymax: 43.734
#> Geodetic CRS: WGS 84
#> # A tibble: 155 × 6
#> service station_id station_n…¹ stati…² altit…³ geometry
#> * <chr> <chr> <chr> <chr> [m] <POINT [°]>
#> 1 meteogalicia 10157 Coruña-Tor… A Coru… 21 (-8.409202 43.38276)
#> 2 meteogalicia 14000 Coruña-Diq… A Coru… 5 (-8.374706 43.36506)
#> 3 meteogalicia 10045 Mabegondo A Coru… 94 (-8.262225 43.24137)
#> 4 meteogalicia 14003 Punta Lang… A Coru… 5 (-8.531179 43.34723)
#> 5 meteogalicia 10144 Arzúa A Coru… 362 (-8.17469 42.93196)
#> 6 meteogalicia 19005 Guísamo A Coru… 175 (-8.276487 43.30799)
#> 7 meteogalicia 19012 Cespón A Coru… 59 (-8.854571 42.67466)
#> 8 meteogalicia 10095 Sergude A Coru… 231 (-8.461246 42.82283)
#> 9 meteogalicia 10800 Camariñas A Coru… 5 (-9.178318 43.12445)
#> 10 meteogalicia 19001 Rus A Coru… 134 (-8.685357 43.15616)
#> # … with 145 more rows, and abbreviated variable names ¹station_name,
#> # ²station_province, ³altitude
Returned objects are spatial objects (using the sf
R package),
so results can be plotted directly:
library(sf)
#> Linking to GEOS 3.11.1, GDAL 3.6.0, PROJ 9.1.0; sf_use_s2() is TRUE
<- meteogalicia_options(resolution = 'daily', start_date = as.Date('2021-04-25'))
mg_options plot(get_meteo_from('meteogalicia', mg_options))
#> A información divulgada a través deste servidor ofrécese gratuitamente aos cidadáns para que poida ser
#> utilizada libremente por eles, co único compromiso de mencionar expresamente a MeteoGalicia e á
#> Consellería de Medio Ambiente, Territorio e Vivenda da Xunta de Galicia como fonte da mesma cada vez
#> que as utilice para os usos distintos do particular e privado.
#> https://www.meteogalicia.gal/web/informacion/notaIndex.action
#> Warning: plotting the first 9 out of 16 attributes; use max.plot = 16 to plot
#> all
plot(get_stations_info_from('meteogalicia', mg_options))