forked from cyclestreets/cyclestreets-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
68 lines (50 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
output: github_document
---
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/robinlovelace/cyclestreets?branch=master&svg=true)](https://ci.appveyor.com/project/robinlovelace/cyclestreets)
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# cyclestreets
The goal of cyclestreets is to provide a simple R interface to the CycleStreets.net routing service.
It was split-out from **stplanr** for modularity.
## Installation
<!-- You can install the released version of cyclestreets from [CRAN](https://CRAN.R-project.org) with: -->
Install the package with **devtools** as follows:
```{r install, eval=FALSE}
# install.packages("devtools")
devtools::install_github("Robinlovelace/cyclestreets")
```
## Example
A common need is to get from A to B:
```{r example}
library ("cyclestreets")
# stplanr::geo_code ("leeds rail station")
from = c(-1.544, 53.794)
# stplanr::geo_code ("leeds university")
to = c(-1.551, 53.807)
r = cyclestreets::journey(from, to, "balanced")
sf:::plot.sf(r)
```
To get a key go to https://www.cyclestreets.net/api/apply/
Save the key as an environment varible using `export CYCLESTREETS=your_key_here` by adding `CYCLESTREETS=your_key_here` as a new line in your `.Renviron` file, e.g. with the following command:
```{r, eval=FALSE}
usethis::edit_r_environ()
```
Check the map is good with leaflet:
```{r}
library(leaflet)
p = colorNumeric("RdYlBu", domain = r$busynance, reverse = TRUE)
leaflet(r) %>%
addTiles() %>%
addPolylines(color = ~p(busynance), weight = 20, opacity = 0.9) %>%
addLegend(pal = p, values = ~busynance)
```
Route types available are: fastest, quietest, balanced.
See help pages such as `?journey` and https://www.cyclestreets.net/api/ for details.