-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
81 lines (63 loc) · 2.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
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/figs/README-",
out.width = "100%",
warning = FALSE,
message = FALSE
)
```
# geosimilarity
<!-- badges: start -->
[![CRAN](https://www.r-pkg.org/badges/version/geosimilarity)](https://CRAN.R-project.org/package=geosimilarity)
[![Downloads_All](https://badgen.net/cran/dt/geosimilarity?color=orange)](https://CRAN.R-project.org/package=geosimilarity)
[![Downloads](https://cranlogs.r-pkg.org/badges/geosimilarity)](https://CRAN.R-project.org/package=geosimilarity)
[![DOI](https://ausgis.github.io/badges/gos_paper.svg)](https://doi.org/10.1007/s11004-022-10036-8)
[![R-universe](https://ausgis.r-universe.dev/badges/geosimilarity)](https://ausgis.r-universe.dev/geosimilarity)
<!-- badges: end -->
**Geographically Optimal Similarity**
Please cite **geosimilarity** as:
> Song, Y. (2022). Geographically Optimal Similarity.
> *Mathematical Geosciences*,*55*(3), 295–320.
> <https://doi.org/10.1007/s11004-022-10036-8>.
A BibTeX entry for LaTeX users is:
``` bib
@Article{song2022gos,
title = {Geographically Optimal Similarity},
author = {Song Yongze},
year = {2022},
month = {nov},
volume = {55},
number = {3},
pages = {295–320},
journal = {Mathematical Geosciences},
issn = {1874-8953},
publisher = {Springer Science and Business Media LLC},
doi = {10.1007/s11004-022-10036-8},
url = {https://doi.org/10.1007/s11004-022-10036-8},
}
```
## Installation
- Install from [CRAN](https://CRAN.R-project.org/package=geosimilarity) with:
``` r
install.packages("geosimilarity", dep = TRUE)
```
- Install development binary version from [R-universe](https://ausgis.r-universe.dev/geosimilarity) with:
``` r
install.packages("geosimilarity",
repos = c("https://ausgis.r-universe.dev",
"https://cloud.r-project.org"),
dep = TRUE)
```
- Install development source version from [GitHub](https://github.com/ausgis/geosimilarity) with:
``` r
# install.packages("devtools")
devtools::install_github("ausgis/geosimilarity",
build_vignettes = TRUE,
dep = TRUE)
```