meteofranceSynop: SYNOP Weather Data in France

meteofranceSynopR Documentation

SYNOP Weather Data in France

Description

data.frame table containing SYNOP weather data obtained through MeteoDataFrance R package (https://github.com/ecor/MeteoDataFrance)

Usage

data(meteofranceSynop)

Format

data.frame

Author(s)

Emanuele Cordano

Source

https://donneespubliques.meteofrance.fr(in pariticular https://donneespubliques.meteofrance.fr/?fond=produit&id_produit=94&id_rubrique=32)

Examples

 

library(ggmap)
data(meteofranceSynop)


## Not run: 
## See help(get_map) documentation and run the example with a connection to Google!
data=meteofranceSynop[meteofranceSynop$timestamp==meteofranceSynop$timestamp[250],]



map <- get_map(location ="France", zoom = 6)

size <- 3

gsynop <- ggmap(map) +
		geom_point(data = data,aes(x = longitude, y = latitude),size=size,  alpha
						=1, color="blue",show.legend  = FALSE)

## Uncomment if you want to save in PDF format the otput of gsynop
## ggsave("test-map.pdf", gsynop,width=10,height=10)

## End(Not run) 

ecor/RSMET documentation built on Aug. 30, 2023, 2:04 a.m.