https://github.com/ausgis/geosimilarity
Geographically Optimal Similarity
https://github.com/ausgis/geosimilarity
geoinformatics geospatial-analytics r spatial-predictions spatial-statistics
Last synced: 3 months ago
JSON representation
Geographically Optimal Similarity
- Host: GitHub
- URL: https://github.com/ausgis/geosimilarity
- Owner: ausgis
- Created: 2024-08-20T09:25:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-03-27T04:48:42.000Z (3 months ago)
- Last Synced: 2026-03-27T16:55:18.138Z (3 months ago)
- Topics: geoinformatics, geospatial-analytics, r, spatial-predictions, spatial-statistics
- Language: R
- Homepage: https://ausgis.github.io/geosimilarity/
- Size: 8.49 MB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "##",
fig.path = "man/figs/README-",
out.width = "100%",
warning = FALSE,
message = FALSE
)
```
# geosimilarity
[](https://CRAN.R-project.org/package=geosimilarity)
[](https://CRAN.R-project.org/package=geosimilarity)
[](https://CRAN.R-project.org/package=geosimilarity)
[](https://doi.org/10.1007/s11004-022-10036-8)
[](https://ausgis.r-universe.dev/geosimilarity)
[](https://github.com/ausgis/geosimilarity/actions/workflows/R-CMD-check.yaml)
**Geographically Optimal Similarity**
Please cite **geosimilarity** as:
> Song, Y. (2022). Geographically Optimal Similarity.
> *Mathematical Geosciences*,*55*(3), 295–320.
> .
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},
publisher = {Springer Science and Business Media LLC},
doi = {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)
```