Skip to content

Commit 2357706

Browse files
authored
Merge pull request #110 from r-spatialecology/main
Update v2.0.1
2 parents 3f41d6b + 6df5597 commit 2357706

18 files changed

+407
-108
lines changed

.Rbuildignore

+14-17
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
^CRAN-RELEASE$
2-
^.*\.Rproj$
3-
^\.Rproj\.user$
4-
^README.*$
5-
^cran-comments\.md$
6-
^docs$
7-
^CODE_OF_CONDUCT.*$
8-
^vignettes/articles$
1+
codecov.yml
2+
codemeta.json
3+
CODE_OF_CONDUCT.md
4+
CONTRIBUTING.md
5+
cran-comments.md
6+
data-raw
7+
docs
8+
LICENSE.md
9+
pkgdown
10+
README.Rmd
11+
README.md
12+
shar.Rproj
913
vignettes/articles
10-
^data-raw$
11-
^_pkgdown\.yml$
12-
^codecov\.yml$
13-
^CONTRIBUTING.*$
14-
^pkgdown$
15-
^\.github$
16-
^LICENSE\.md$
17-
^CRAN-SUBMISSION$
18-
^CODE_OF_CONDUCT\.md$
14+
.github
15+
_pkgdown.yml

.github/workflows/Deploy-pkgdown.yaml

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,41 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2-branch/examples
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
34
on:
45
push:
56
branches: [main, development]
7+
tags: ['*']
68
workflow_dispatch:
79

810
name: deploy-pkgdown
911

1012
jobs:
1113
deploy-pkgdown:
1214
runs-on: ubuntu-latest
13-
# Only restrict concurrency for non-PR jobs
14-
concurrency:
15-
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
15+
1616
env:
1717
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
18+
1819
steps:
19-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2021

2122
- uses: r-lib/actions/setup-pandoc@v2
2223

2324
- uses: r-lib/actions/setup-r@v2
2425
with:
2526
use-public-rspm: true
26-
extra-repositories: 'http://packages.ropensci.org'
2727

2828
- uses: r-lib/actions/setup-r-dependencies@v2
2929
with:
30-
extra-packages: any::pkgdown, local::.
30+
extra-packages: any::pkgdown, any::ggplot2, any::future, any::future.apply,
31+
any::patchwork, any::rgbif, any::rgdal, any::rnaturalearth,
32+
any::rnaturalearthdata, any::sf, local::.
3133
needs: website
3234

35+
- name: Install getCRUCLdata
36+
run: install.packages('getCRUCLdata', repos = 'http://packages.ropensci.org', typ = 'source')
37+
shell: Rscript {0}
38+
3339
- name: Build site
3440
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
3541
shell: Rscript {0}

.github/workflows/R-CMD-check.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2-branch/examples
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
55
branches: [CRAN, main, development]
66
pull_request:
77
branches: [CRAN, main]
8+
workflow_dispatch:
89

910
name: r-cmd-check
1011

1112
jobs:
1213
r-cmd-check:
1314
if: "!contains(github.event.commits[0].message, '[skip-ci]')"
1415
runs-on: ${{ matrix.config.os }}
15-
1616
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
1717

1818
strategy:
@@ -28,7 +28,7 @@ jobs:
2828
R_KEEP_PKG_SOURCE: yes
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232

3333
- uses: r-lib/actions/setup-pandoc@v2
3434

@@ -37,7 +37,6 @@ jobs:
3737
r-version: ${{ matrix.config.r }}
3838
http-user-agent: ${{ matrix.config.http-user-agent }}
3939
use-public-rspm: true
40-
extra-repositories: 'http://packages.ropensci.org'
4140

4241
- uses: r-lib/actions/setup-r-dependencies@v2
4342
with:

.github/workflows/Render-README.yaml

+18-14
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,39 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2-branch/examples
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
paths: ['README.Rmd']
5+
paths: ["README.Rmd"]
6+
workflow_dispatch:
67

7-
name: render-rmarkdown
8+
name: render-readme
89

910
jobs:
10-
render-rmarkdown:
11+
render-readme:
1112
runs-on: ubuntu-latest
13+
1214
env:
1315
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
16+
1417
steps:
15-
- name: Checkout repo
16-
uses: actions/checkout@v2
17-
with:
18-
fetch-depth: 0
18+
- uses: actions/checkout@v3
1919

2020
- uses: r-lib/actions/setup-pandoc@v2
2121

2222
- uses: r-lib/actions/setup-r@v2
2323
with:
24-
extra-repositories: 'http://packages.ropensci.org'
24+
use-public-rspm: true
25+
26+
- uses: r-lib/actions/setup-r-dependencies@v2
27+
with:
28+
extra-packages: any::rmarkdown, any::spatstat, any::terra
2529

26-
- uses: r-lib/actions/setup-renv@v2
30+
- name: Render README files
31+
run: Rscript -e 'rmarkdown::render("README.Rmd")'
2732

28-
- name: Render Rmarkdown files and Commit Results
33+
- name: Commit README
2934
run: |
30-
RMD_PATH=($(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep '[.]Rmd$'))
31-
Rscript -e 'for (f in commandArgs(TRUE)) if (file.exists(f)) rmarkdown::render(f)' ${RMD_PATH[*]}
3235
git config --local user.name "$GITHUB_ACTOR"
3336
git config --local user.email "[email protected]"
34-
git commit ${RMD_PATH[*]/.Rmd/.md} -m 'Re-build Rmarkdown files' || echo "No changes to commit"
37+
git add README.md man/figures/README-*
38+
git commit -m "Re-build README.md" || echo "No changes to commit"
3539
git push origin || echo "No changes to commit"

.github/workflows/Test-coverage.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2-branch/examples
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
55
branches: [CRAN, main, development]
66
pull_request:
77
branches: [CRAN, main]
8+
workflow_dispatch:
89

910
name: test-coverage
1011

1112
jobs:
1213
test-coverage:
1314
if: "!contains(github.event.commits[0].message, '[skip-ci]')"
1415
runs-on: ubuntu-latest
16+
1517
env:
1618
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1719

1820
steps:
19-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2022

2123
- uses: r-lib/actions/setup-r@v2
2224
with:
2325
use-public-rspm: true
24-
extra-repositories: 'http://packages.ropensci.org'
2526

2627
- uses: r-lib/actions/setup-r-dependencies@v2
2728
with:

.github/workflows/Write-codemeta.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
2+
3+
on:
4+
push:
5+
paths: ['DESCRIPTION']
6+
workflow_dispatch:
7+
8+
name: write-codemeta
9+
10+
jobs:
11+
write-codemeta:
12+
runs-on: ubuntu-latest
13+
14+
env:
15+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
20+
- uses: r-lib/actions/setup-r@v2
21+
with:
22+
use-public-rspm: true
23+
24+
- name: Install codemeta
25+
run: Rscript -e 'install.packages("codemeta")'
26+
27+
- name: Write codemeta file
28+
run: Rscript -e 'codemeta::write_codemeta()'
29+
30+
- name: Commit codemeta file
31+
run: |
32+
git config --local user.name "$GITHUB_ACTOR"
33+
git config --local user.email "[email protected]"
34+
git add codemeta.json
35+
git commit -m "Re-write codemeta.json" || echo "No changes to commit"
36+
git push origin || echo "No changes to commit"

DESCRIPTION

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Type: Package
22
Package: shar
33
Title: Species-Habitat Associations
4-
Version: 2.0.0
5-
Authors@R: c(person("Maximillian H.K.", "Hesselbarth", email = "[email protected]",
4+
Version: 2.0.1
5+
Authors@R: c(person("Maximilian H.K.", "Hesselbarth", email = "[email protected]",
66
role = c("aut", "cre"), comment = c(ORCID = "0000-0003-1125-9918")),
77
person("Marco", "Sciaini", email = "[email protected]",
88
role = "aut", comment = c(ORCID = "0000-0002-3042-5435")),
@@ -11,7 +11,7 @@ Authors@R: c(person("Maximillian H.K.", "Hesselbarth", email = "mhk.hesselbarth@
1111
person("Thomas", "Etherington", email = "[email protected]",
1212
role = "ctb", comment = c(ORCID = "0000-0002-3187-075X"))
1313
)
14-
Maintainer: Maximillian H.K. Hesselbarth <[email protected]>
14+
Maintainer: Maximilian H.K. Hesselbarth <[email protected]>
1515
Description:
1616
Analyse species-habitat associations in R. Therefore, information about the location
1717
of the species (as a point pattern) is needed together with environmental conditions
@@ -37,18 +37,8 @@ RoxygenNote: 7.2.1
3737
Suggests:
3838
covr,
3939
dplyr,
40-
getCRUCLdata,
41-
ggplot2,
42-
future,
43-
future.apply,
4440
knitr,
45-
patchwork,
46-
rgbif,
47-
rgdal,
4841
rmarkdown,
49-
rnaturalearth,
50-
rnaturalearthdata,
51-
sf,
5242
spatstat (>= 2.0.0),
5343
testthat (>= 2.1.0)
5444
Additional_repositories: http://packages.ropensci.org

NEWS.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# shar 2.0.1
2+
* Improvements
3+
* Better approach for external repo
4+
* Various
5+
* Fixing typo in maintainer name
6+
17
# shar 2.0.0
28
* Improvements
39
* Using `terra` instead of `raster`

R/onLoad.R

-11
This file was deleted.

README.Rmd

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
output: github_document
2+
output:
3+
github_document:
4+
html_preview: false
35
---
46

57
<!-- README.md is generated from README.Rmd. Please edit that file -->
@@ -15,6 +17,8 @@ knitr::opts_chunk$set(
1517

1618
<!-- badges: start -->
1719

20+
Last updated: `r Sys.Date()`
21+
1822
| CI | Development | CRAN | License |
1923
|----|-------------|------|---------|
2024
| [![R-CMD-check](https://github.com/r-spatialecology/shar/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-spatialecology/shar/actions/workflows/R-CMD-check.yaml) | [![Project Status](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) | [![CRAN status](https://www.r-pkg.org/badges/version/shar)](https://cran.r-project.org/package=shar) |[![JOSS](https://joss.theoj.org/papers/1b786c028a5425858cb0e5428bd9173b/status.svg)](https://joss.theoj.org/papers/1b786c028a5425858cb0e5428bd9173b) |
@@ -43,8 +47,7 @@ install.packages("shar")
4347
And the development version from [GitHub](https://github.com/r-spatialecology/shar) with:
4448

4549
```{r install-github, eval = FALSE}
46-
install.packages("remotes")
47-
50+
# install.packages("remotes")
4851
remotes::install_github("r-spatialecology/shar")
4952
```
5053

@@ -98,7 +101,7 @@ Of course, there are several utility functions. For example, you can plot the su
98101
plot(reconstruction, what = "pp")
99102
```
100103

101-
Another utility functions allows to calculate the differences between the observed pattern and the randomized patterns (also called energy using summary functions).
104+
Another utility function allows to calculate the differences between the observed pattern and the randomized patterns (also called energy using summary functions).
102105

103106
```{r calculate-energy, message = FALSE}
104107
calculate_energy(reconstruction, return_mean = TRUE)
@@ -114,7 +117,6 @@ Furthermore, please be aware that due to the randomization of the null model dat
114117
torus_trans <- unpack_randomized(torus_trans)
115118
```
116119

117-
118120
```{r results}
119121
significance_level <- 0.01
120122
@@ -129,7 +131,7 @@ Contributions to **shar** are highly welcomed and appreciated. This includes any
129131

130132
Please note that the **shar** package is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.
131133

132-
To see how to contribute to this project, please see the [Contributing guidelines](CONTRIBUTING.md).
134+
To contribute to this project, please see the [Contributing guidelines](CONTRIBUTING.md).
133135

134136
### References
135137

0 commit comments

Comments
 (0)