-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
45 lines (31 loc) · 1.54 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# **geocoder**: Efficiently Geocode Addresses <img src="man/figures/logo.png" align="right" height="156" />
This project is under development. It should not work. If it happens to appear to work, we make no guarantees of accuracy.
<!-- badges: start -->
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[](https://github.com/alarm-redist/geocoder/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
The goal of `geocoder` is to ...
## Installation
You can install the development version of `geocoder` like so:
``` r
remotes::install_github("alarm-redist/geocoder")
```
## Example
```{r example}
library(geocoder)
## basic example code
```
## Cache
Downloads will go to `options(geocoder.cache_dir)` if it is set. If it is not, and `options(geocoder.use_cache = TRUE)`, downloads will be cached between sessions in `rappdirs::user_cache_dir("geocoder")`. If If `options(geocoder.use_cache = FALSE)` (the default), then the cache will be in a temporary directory that does not persist between sessions. You can check the size of the cache and clear it with `gc_cache_size()` and `gc_cache_clear()`.