https://github.com/dpprdan/batch_geocode_with_r
https://github.com/dpprdan/batch_geocode_with_r
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dpprdan/batch_geocode_with_r
- Owner: dpprdan
- Created: 2018-02-12T10:24:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-26T12:55:51.000Z (over 8 years ago)
- Last Synced: 2025-04-04T15:30:34.551Z (about 1 year ago)
- Size: 21.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
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))