R, GeoJSON and GitHub
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
GeoJSON is an open computer file format for encoding collections of simple geographical features along with their non-spatial attributes using JavaScript Object Notation. These files can be rendered easily within GitHub repositories. GitHub uses Leaflet.js to represent the data and OpenStreetMap for the underlying map data.
Spatial objects in R
can be converted to GeoJSON with writeOGR
from the rgdal
package. For example, let’s display the meteorological stations of the SIAR network. (By the way, GitHub also supports rendering csv files)
Now upload this file to a GitHub repository or create a Gist and voilá!
Another example, now using a larger dataset from the OpenPV project. From the GitHub help page:
If your map contains a large number of markers (roughly over 750), GitHub will automatically cluster nearby markers at higher zoom levels. Simply click the cluster or zoom in to see individual markers.
Related articles
- Gist meets GeoJSON (github.com)
- GeoJSON Previewing (github.com)
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.