[This article was first published on theBioBucket*, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
A quick geo-tip:Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
With the osmar and maptools package you can easily pull an OpenStreetMap object and convert it to KML, like below (thanks to adibender helping out on SO). I found the relation ID by googling for it (www.google.at/search?q=openstreetmap+relation+innsbruck).
# get OSM data library(osmar) library(maptools) innsbruck <- get_osm(relation(113642), full = T) sp_innsbruck <- as_sp(innsbruck, what = "lines") # convert to KML for( i in seq_along(sp_innsbruck) ) { kmlLine(sp_innsbruck@lines[[i]], kmlfile = "innsbruck.kml", lwd = 3, col = "blue", name = "Innsbruck") } shell.exec("innsbruck.kml")
To leave a comment for the author, please follow the link and comment on their blog: theBioBucket*.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.