Description Usage Format Author(s) Source Examples
data.frame
table containing SYNOP weather data obtained through MeteoDataFrance
R package (https://github.com/ecor/MeteoDataFrance)
1 |
data.frame
Emanuele Cordano
https://donneespubliques.meteofrance.fr(in pariticular https://donneespubliques.meteofrance.fr/?fond=produit&id_produit=94&id_rubrique=32)
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.