meteofranceSynop: SYNOP Weather Data in France

Description Usage Format Author(s) Source Examples

Description

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

Usage

1

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 

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) 

RSMET documentation built on April 24, 2018, 5:04 p.m.