Skip to content

Commit 5b27ea8

Browse files
committed
misc: add list of publications citing the package
1 parent 566bf2d commit 5b27ea8

File tree

7 files changed

+449
-3
lines changed

7 files changed

+449
-3
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
^\.Rproj\.user$
33
^man-roxygen$
44
^README\.Rmd$
5+
^references.*$
56
^Makefile$
67
^pkgdown$
78
^docs$

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ RSCRIPT = Rscript --vanilla
77
%.md: %.Rmd
88
${RSCRIPT} -e 'rmarkdown::render("$<")'
99

10-
README.md: vignettes/${PKGNAME}.Rmd NEWS.md
10+
README.md: vignettes/${PKGNAME}.Rmd NEWS.md references.md
11+
12+
references.md: references.bib
1113

1214
readme: README.md
1315

README.Rmd

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ cat(sprintf(opts_str, paste0(ors_paths, collapse = paste(",", indent, sep="\n"))
4444
options(openrouteservice.path = list(directions = "v2/directions"))
4545
```
4646

47-
## Package News
47+
## Recent package news
4848

4949
```{r news, echo = FALSE, results = 'asis'}
5050
lines = readLines("NEWS.md")
@@ -58,3 +58,15 @@ news = lines[from:to]
5858
news = gsub("^(#+)(.*)", "##\\1\\2", news)
5959
cat(paste(news, collapse = "\n"))
6060
```
61+
62+
## Publications citing openrouteservice R package
63+
64+
Please feel free to reach out if you would like to have your work added to the list below.
65+
66+
```{r references, echo = FALSE, results = 'asis'}
67+
lines = readLines("references.md")
68+
lines = gsub('^<span class="csl-left-margin">', '', lines)
69+
lines = gsub('^</span><span class="csl-right-inline">', '', lines)
70+
lines = gsub(' </span>$', '', lines)
71+
cat(paste(lines, collapse = "\n"))
72+
```

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ defaults are equivalent of having
6868
optimization = "optimization",
6969
snap = "v2/snap"))
7070

71-
## Package News
71+
## Recent package news
7272

7373
### version 0.5.2
7474

@@ -87,3 +87,30 @@ defaults are equivalent of having
8787
#### NEW FEATURES
8888

8989
- Enable snap endpoint.
90+
91+
## Publications citing openrouteservice R package
92+
93+
Please feel free to reach out if you would like to have your work added
94+
to the list below.
95+
96+
1. Baumer BS, Kaplan DT, Horton NJ. Modern data science with r.
97+
Chapman; Hall/CRC; 2017.
98+
99+
2. Shields N, Willis C, Imms C, McKenzie G, Van Dorsselaer B, Bruder
100+
AM, et al. Feasibility of scaling-up a community-based exercise
101+
program for young people with disability. Disability and
102+
Rehabilitation. 2022;44(9):1669–81.
103+
104+
3. Cubells J, Miralles-Guasch C, Marquet O. E-scooter and bike-share
105+
route choice and detours: Modelling the influence of built
106+
environment and sociodemographic factors. Journal of transport
107+
geography. 2023;111:103664.
108+
109+
4. Bhowon Y, Prendergast LA, Taylor NF, Shields N. Using geospatial
110+
analysis to determine the proximity of community gyms for a
111+
population-based cohort of young people with cerebral palsy.
112+
Physiotherapy Canada. 2023;e20220064.
113+
114+
5. Jain A, LaValley M, Dukes K, Lane K, Winter M, Spangler KR, et
115+
al. Modeling health and well-being measures using ZIP code spatial
116+
neighborhood patterns. Scientific Reports. 2024;14(1):9180.

references.Rmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
output: rmarkdown::md_document
3+
bibliography: references.bib
4+
csl: references.csl
5+
nocite: '@*'
6+
---

references.bib

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
@book{baumer2017modern,
2+
title={Modern data science with R},
3+
author={Baumer, Benjamin S and Kaplan, Daniel T and Horton, Nicholas J},
4+
year={2017},
5+
publisher={Chapman and Hall/CRC}
6+
}
7+
8+
@article{shields2022feasibility,
9+
title={Feasibility of scaling-up a community-based exercise program for young people with disability},
10+
author={Shields, Nora and Willis, Claire and Imms, Christine and McKenzie, Georgia and Van Dorsselaer, Ben and Bruder, Andrea M and Kennedy, Rachel A and Bhowon, Yeshna and Southby, Alesha and Prendergast, Luke A and others},
11+
journal={Disability and Rehabilitation},
12+
volume={44},
13+
number={9},
14+
pages={1669--1681},
15+
year={2022},
16+
publisher={Taylor \& Francis}
17+
}
18+
19+
@article{cubells2023scooter,
20+
title={E-scooter and bike-share route choice and detours: modelling the influence of built environment and sociodemographic factors},
21+
author={Cubells, Jer{\`o}nia and Miralles-Guasch, Carme and Marquet, Oriol},
22+
journal={Journal of transport geography},
23+
volume={111},
24+
pages={103664},
25+
year={2023},
26+
publisher={Elsevier}
27+
}
28+
29+
@article{bhowon2023using,
30+
title={Using Geospatial Analysis to Determine the Proximity of Community Gyms for a Population-based Cohort of Young People with Cerebral Palsy},
31+
author={Bhowon, Yeshna and Prendergast, Luke A and Taylor, Nicholas F and Shields, Nora},
32+
journal={Physiotherapy Canada},
33+
pages={e20220064},
34+
year={2023},
35+
publisher={University of Toronto Press}
36+
}
37+
38+
@article{jain2024modeling,
39+
title={Modeling health and well-being measures using ZIP code spatial neighborhood patterns},
40+
author={Jain, Abhi and LaValley, Michael and Dukes, Kimberly and Lane, Kevin and Winter, Michael and Spangler, Keith R and Cesare, Nina and Wang, Biqi and Rickles, Michael and Mohammed, Shariq},
41+
journal={Scientific Reports},
42+
volume={14},
43+
number={1},
44+
pages={9180},
45+
year={2024},
46+
publisher={Nature Publishing Group UK London}
47+
}

0 commit comments

Comments
 (0)