Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Ironholds/geohash
Geohash generation, decoding and manipulation in R
https://github.com/Ironholds/geohash
Last synced: 16 days ago
JSON representation
Geohash generation, decoding and manipulation in R
- Host: GitHub
- URL: https://github.com/Ironholds/geohash
- Owner: Ironholds
- License: other
- Created: 2016-04-10T11:56:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-18T00:46:48.000Z (over 6 years ago)
- Last Synced: 2024-10-03T12:33:51.042Z (about 1 month ago)
- Language: C++
- Size: 32.2 KB
- Stars: 40
- Watchers: 7
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## geohash
A package for encoding, decoding and neighbouring geohashes__Author:__ Oliver Keyes
__License:__ [MIT](http://opensource.org/licenses/MIT)
__Status:__ Stable[![Travis-CI Build Status](https://travis-ci.org/Ironholds/geohash.svg?branch=master)](https://travis-ci.org/Ironholds/geohash) [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/geohash)](https://cran.r-project.org/package=geohash) ![downloads](http://cranlogs.r-pkg.org/badges/grand-total/geohash)
### Description
*geohashes* are a way of representing latitude/longitude pairs as individual,
short strings of numbers and letters. Thegeohash
package provides
tools for:* Encoding latitude/longitude pairs into geohashes;
* Decoding geohashes into latitude/longitude pairs;
* Identifying the neighbouring geohashes of a provided geohash (or vector of geohashes).For more information, see the [geohash vignette](https://github.com/Ironholds/geohash/blob/master/vignettes/geohash.Rmd).
Please note that this project is released with a [Contributor Code of Conduct](https://github.com/Ironholds/geohash/blob/master/CONDUCT.md).
By participating in this project you agree to abide by its terms.### Installation
To get the development version (currently recommended):devtools::install_github("ironholds/geohash")
The latest CRAN version can be obtained via:install.packages("geohash")