Skip to content

Commit 00da229

Browse files
authored
Merge pull request #112 from r-spatialecology/main
Update v2.0.2
2 parents 2357706 + e90c84c commit 00da229

23 files changed

+122
-89
lines changed

.Rbuildignore

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ codemeta.json
33
CODE_OF_CONDUCT.md
44
CONTRIBUTING.md
55
cran-comments.md
6+
CRAN-SUBMISSION
67
data-raw
78
docs
89
LICENSE.md
@@ -13,3 +14,6 @@ shar.Rproj
1314
vignettes/articles
1415
.github
1516
_pkgdown.yml
17+
^.*\.Rproj$
18+
^\.Rproj\.user$
19+
^CRAN-SUBMISSION$

.github/workflows/Deploy-pkgdown.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
deploy-pkgdown:
1414
runs-on: ubuntu-latest
1515

16+
# Only restrict concurrency for non-PR jobs
17+
concurrency:
18+
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
19+
1620
env:
1721
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1822

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# 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:
5-
branches: [CRAN, main, development]
6+
branches: [main, development]
67
pull_request:
78
branches: [CRAN, main]
89
workflow_dispatch:

.github/workflows/Render-README.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# 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:
6+
branches: [main, development]
57
paths: ["README.Rmd"]
68
workflow_dispatch:
79

@@ -25,7 +27,7 @@ jobs:
2527

2628
- uses: r-lib/actions/setup-r-dependencies@v2
2729
with:
28-
extra-packages: any::rmarkdown, any::spatstat, any::terra
30+
extra-packages: any::rmarkdown, any::spatstat, any::terra, local::.
2931

3032
- name: Render README files
3133
run: Rscript -e 'rmarkdown::render("README.Rmd")'

.github/workflows/Test-coverage.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# 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:
5-
branches: [CRAN, main, development]
6+
branches: [main, development]
67
pull_request:
78
branches: [CRAN, main]
89
workflow_dispatch:

.github/workflows/Write-codemeta.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
on:
44
push:
5+
branches: [main, development]
56
paths: ['DESCRIPTION']
67
workflow_dispatch:
78

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
inst/doc
77
Rplots.pdf
88
docs
9-
^CRAN-SUBMISSION
9+
CRAN-SUBMISSION

DESCRIPTION

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: shar
33
Title: Species-Habitat Associations
4-
Version: 2.0.1
4+
Version: 2.0.2
55
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]",
@@ -27,7 +27,8 @@ Imports:
2727
graphics,
2828
grDevices,
2929
methods,
30-
spatstat.core,
30+
spatstat.explore,
31+
spatstat.model,
3132
spatstat.geom,
3233
spatstat.random,
3334
stats,
@@ -39,9 +40,8 @@ Suggests:
3940
dplyr,
4041
knitr,
4142
rmarkdown,
42-
spatstat (>= 2.0.0),
43-
testthat (>= 2.1.0)
44-
Additional_repositories: http://packages.ropensci.org
43+
spatstat (>= 2.0-0),
44+
testthat (>= 3.0.0)
4545
VignetteBuilder: knitr
4646
Encoding: UTF-8
4747
LazyData: true

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# shar 2.0.2
2+
* Various
3+
* Update `spatstat` dependency
4+
15
# shar 2.0.1
26
* Improvements
37
* Better approach for external repo

R/calculate_energy.R

+9-9
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ calculate_energy <- function(pattern,
8282

8383
# calculate r sequence
8484
r <- seq(from = 0,
85-
to = spatstat.core::rmax.rule(W = pattern_observed$window,
85+
to = spatstat.explore::rmax.rule(W = pattern_observed$window,
8686
lambda = spatstat.geom::intensity.ppp(pattern_observed)),
8787
length.out = 250)
8888

@@ -117,7 +117,7 @@ calculate_energy <- function(pattern,
117117
# calculate summary functions for observed pattern
118118
if (comp_fast) {
119119

120-
gest_observed <- spatstat.core::Gest(X = pattern_observed, correction = "none",
120+
gest_observed <- spatstat.explore::Gest(X = pattern_observed, correction = "none",
121121
r = r)
122122

123123
pcf_observed <- estimate_pcf_fast(pattern = pattern_observed,
@@ -126,10 +126,10 @@ calculate_energy <- function(pattern,
126126

127127
} else {
128128

129-
gest_observed <- spatstat.core::Gest(X = pattern_observed,
129+
gest_observed <- spatstat.explore::Gest(X = pattern_observed,
130130
correction = "han", r = r)
131131

132-
pcf_observed <- spatstat.core::pcf(X = pattern_observed,
132+
pcf_observed <- spatstat.explore::pcf(X = pattern_observed,
133133
correction = "best", divisor = "d", r = r)
134134

135135
}
@@ -140,7 +140,7 @@ calculate_energy <- function(pattern,
140140
# fast computation of summary stats
141141
if (comp_fast) {
142142

143-
gest_reconstruction <- spatstat.core::Gest(X = pattern_randomized[[x]],
143+
gest_reconstruction <- spatstat.explore::Gest(X = pattern_randomized[[x]],
144144
correction = "none",
145145
r = r)
146146

@@ -151,11 +151,11 @@ calculate_energy <- function(pattern,
151151
# normal computation of summary stats
152152
} else {
153153

154-
gest_reconstruction <- spatstat.core::Gest(X = pattern_randomized[[x]],
154+
gest_reconstruction <- spatstat.explore::Gest(X = pattern_randomized[[x]],
155155
correction = "han",
156156
r = r)
157157

158-
pcf_reconstruction <- spatstat.core::pcf(X = pattern_randomized[[x]],
158+
pcf_reconstruction <- spatstat.explore::pcf(X = pattern_randomized[[x]],
159159
correction = "best",
160160
divisor = "d",
161161
r = r)
@@ -193,13 +193,13 @@ calculate_energy <- function(pattern,
193193
} else {
194194

195195
# calculate summary functions
196-
kmmr_observed <- spatstat.core::markcorr(pattern_observed, correction = "Ripley",
196+
kmmr_observed <- spatstat.explore::markcorr(pattern_observed, correction = "Ripley",
197197
r = r)
198198

199199
result <- vapply(seq_along(pattern_randomized), function(x) {
200200

201201
# calculate summary functions
202-
kmmr_reconstruction <- spatstat.core::markcorr(pattern_randomized[[x]],
202+
kmmr_reconstruction <- spatstat.explore::markcorr(pattern_randomized[[x]],
203203
correction = "Ripley",
204204
r = r)
205205

R/estimate_pcf_fast.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
#' @export
3939
estimate_pcf_fast <- function(pattern, ...){
4040

41-
k_fun <- suppressMessages(spatstat.core::Kest(X = pattern, ...)) # estimate K-fct
41+
k_fun <- suppressMessages(spatstat.explore::Kest(X = pattern, ...)) # estimate K-fct
4242

43-
result <- spatstat.core::pcf.fv(X = k_fun, ...) # estimate pcf from K-fct
43+
result <- spatstat.explore::pcf.fv(X = k_fun, ...) # estimate pcf from K-fct
4444

4545
return(result)
4646
}

R/fit_point_process.R

+7-7
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,17 @@ fit_point_process <- function(pattern,
8282
} else if (process == "cluster") {
8383

8484
# fit cluster process
85-
fitted_process <- spatstat.core::kppm(pattern, cluster = "Thomas",
86-
statistic = "pcf",
87-
statargs = list(divisor = "d",
88-
correction = "best"),
89-
method = "mincon", improve.type = "none")
85+
fitted_process <- spatstat.model::kppm(pattern, cluster = "Thomas",
86+
statistic = "pcf",
87+
statargs = list(divisor = "d",
88+
correction = "best"),
89+
method = "mincon", improve.type = "none")
9090

9191
result <- lapply(seq_len(n_random), function(x) {
9292

9393
# simulate clustered pattern
94-
simulated <- spatstat.core::simulate.kppm(fitted_process, window = pattern$window,
95-
nsim = 1, drop = TRUE)
94+
simulated <- spatstat.model::simulate.kppm(fitted_process, window = pattern$window,
95+
nsim = 1, drop = TRUE)
9696

9797
# remove points because more points in simulated
9898
if (pattern$n < simulated$n) {

R/plot.rd_mar.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_
8484
name_unit <- spatstat.geom::unitname(x$observed)[[1]] # unit name for labels
8585

8686
# calculate r
87-
r <- seq(from = 0, to = spatstat.core::rmax.rule(W = x$observed$window,
87+
r <- seq(from = 0, to = spatstat.explore::rmax.rule(W = x$observed$window,
8888
lambda = spatstat.geom::intensity.ppp(x$observed)),
8989
length.out = 250)
9090

@@ -95,7 +95,7 @@ plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_
9595

9696
result <- lapply(seq_along(pattern), function(x) {
9797

98-
mark_corr <- as.data.frame(spatstat.core::markcorr(pattern[[x]],
98+
mark_corr <- as.data.frame(spatstat.explore::markcorr(pattern[[x]],
9999
correction = "Ripley",
100100
r = r))
101101

R/plot.rd_pat.R

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ plot.rd_pat <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_
8383
name_unit <- spatstat.geom::unitname(x$observed)[[1]] # unit name for labels
8484

8585
# calculate r
86-
r <- seq(from = 0, to = spatstat.core::rmax.rule(W = x$observed$window,
86+
r <- seq(from = 0, to = spatstat.explore::rmax.rule(W = x$observed$window,
8787
lambda = spatstat.geom::intensity.ppp(x$observed)),
8888
length.out = 250)
8989

@@ -98,16 +98,16 @@ plot.rd_pat <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_
9898
# calculate summary functions
9999
if (comp_fast) {
100100

101-
gest_result <- spatstat.core::Gest(pattern[[x]], correction = "none", r = r)
101+
gest_result <- spatstat.explore::Gest(pattern[[x]], correction = "none", r = r)
102102

103103
pcf_result <- estimate_pcf_fast(pattern[[x]], correction = "none",
104104
method = "c", spar = 0.5, r = r)
105105

106106
} else {
107107

108-
gest_result <- spatstat.core::Gest(pattern[[x]], correction = "han", r = r)
108+
gest_result <- spatstat.explore::Gest(pattern[[x]], correction = "han", r = r)
109109

110-
pcf_result <- spatstat.core::pcf(pattern[[x]], divisor = "d",
110+
pcf_result <- spatstat.explore::pcf(pattern[[x]], divisor = "d",
111111
correction = "best", r = r)
112112

113113
}

R/reconstruct_pattern_cluster.R

+17-17
Original file line numberDiff line numberDiff line change
@@ -121,21 +121,21 @@ reconstruct_pattern_cluster <- function(pattern,
121121

122122
# calculate r
123123
r <- seq(from = 0,
124-
to = spatstat.core::rmax.rule(W = pattern$window,
124+
to = spatstat.explore::rmax.rule(W = pattern$window,
125125
lambda = spatstat.geom::intensity.ppp(pattern)),
126126
length.out = r_length)
127127

128128
# start with fitted pattern
129129
# fit Thomas process
130-
fitted_process <- spatstat.core::kppm.ppp(pattern, cluster = "Thomas",
131-
statistic = "pcf",
132-
statargs = list(divisor = "d",
133-
correction = "best"),
134-
improve.type = "none")
130+
fitted_process <- spatstat.model::kppm.ppp(pattern, cluster = "Thomas",
131+
statistic = "pcf",
132+
statargs = list(divisor = "d",
133+
correction = "best"),
134+
improve.type = "none")
135135

136136
# simulte clustered pattern
137-
simulated <- spatstat.core::simulate.kppm(fitted_process, nsim = 1, drop = TRUE,
138-
window = pattern$window, verbose = FALSE)
137+
simulated <- spatstat.model::simulate.kppm(fitted_process, nsim = 1, drop = TRUE,
138+
window = pattern$window, verbose = FALSE)
139139

140140
# remove points because more points in simulated
141141
if (pattern$n < simulated$n) {
@@ -167,9 +167,9 @@ reconstruct_pattern_cluster <- function(pattern,
167167
# fast computation of summary functions
168168
if (comp_fast) {
169169

170-
gest_observed <- spatstat.core::Gest(pattern, correction = "none", r = r)
170+
gest_observed <- spatstat.explore::Gest(pattern, correction = "none", r = r)
171171

172-
gest_simulated <- spatstat.core::Gest(simulated, correction = "none", r = r)
172+
gest_simulated <- spatstat.explore::Gest(simulated, correction = "none", r = r)
173173

174174
pcf_observed <- estimate_pcf_fast(pattern, correction = "none",
175175
method = "c", spar = 0.5, r = r)
@@ -180,14 +180,14 @@ reconstruct_pattern_cluster <- function(pattern,
180180
# normal computation of summary functions
181181
} else {
182182

183-
gest_observed <- spatstat.core::Gest(X = pattern, correction = "han", r = r)
183+
gest_observed <- spatstat.explore::Gest(X = pattern, correction = "han", r = r)
184184

185-
gest_simulated <- spatstat.core::Gest(X = simulated, correction = "han", r = r)
185+
gest_simulated <- spatstat.explore::Gest(X = simulated, correction = "han", r = r)
186186

187-
pcf_observed <- spatstat.core::pcf.ppp(X = pattern, correction = "best",
187+
pcf_observed <- spatstat.explore::pcf.ppp(X = pattern, correction = "best",
188188
divisor = "d", r = r)
189189

190-
pcf_simulated <- spatstat.core::pcf.ppp(X = simulated, correction = "best",
190+
pcf_simulated <- spatstat.explore::pcf.ppp(X = simulated, correction = "best",
191191
divisor = "d", r = r)
192192

193193
}
@@ -247,16 +247,16 @@ reconstruct_pattern_cluster <- function(pattern,
247247
# calculate summary functions after relocation
248248
if (comp_fast) {
249249

250-
gest_relocated <- spatstat.core::Gest(relocated, correction = "none", r = r)
250+
gest_relocated <- spatstat.explore::Gest(relocated, correction = "none", r = r)
251251

252252
pcf_relocated <- estimate_pcf_fast(relocated, correction = "none",
253253
method = "c", spar = 0.5, r = r)
254254

255255
} else {
256256

257-
gest_relocated <- spatstat.core::Gest(X = relocated, correction = "han", r = r)
257+
gest_relocated <- spatstat.explore::Gest(X = relocated, correction = "han", r = r)
258258

259-
pcf_relocated <- spatstat.core::pcf.ppp(X = relocated, correction = "best",
259+
pcf_relocated <- spatstat.explore::pcf.ppp(X = relocated, correction = "best",
260260
divisor = "d", r = r)
261261

262262
}

0 commit comments

Comments
 (0)