An open API service indexing awesome lists of open source software.

https://github.com/dpprdan/batch_geocode_with_r


https://github.com/dpprdan/batch_geocode_with_r

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

---
title: "Batch geocoding in R"
output: github_document
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
error = TRUE, # don't stop at errors
collapse = TRUE,
comment = "#>"
)
Sys.setenv(LANGUAGE = "en") # error messages in English
```

Some rough sketches about different geocoding packages in R (and how to batch geocode with them (or not)).

In particular:

- [opencage](https://github.com/dpprdan/batch_geocode_with_R/blob/master/batch_geocode_opencage.md) (package on [github](https://github.com/ropensci/opencage), package on [CRAN](https://cran.r-project.org/web/packages/opencage/index.html), [API docs](https://geocoder.opencagedata.com/api))
- [rmapzen](https://github.com/dpprdan/batch_geocode_with_R/blob/master/batch_geocode_rmapzen.md) (package on [github](https://github.com/tarakc02/rmapzen), package on [CRAN](https://cran.r-project.org/web/packages/rmapzen/index.html), [API docs](https://github.com/pelias/documentation))