https://github.com/alrico88/geohash-minify
Compress a list of geohashes using the best combination across various precisions
https://github.com/alrico88/geohash-minify
compress geohash minify
Last synced: 18 days ago
JSON representation
Compress a list of geohashes using the best combination across various precisions
- Host: GitHub
- URL: https://github.com/alrico88/geohash-minify
- Owner: alrico88
- License: mit
- Created: 2023-12-25T22:39:41.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-25T23:59:53.000Z (almost 2 years ago)
- Last Synced: 2025-09-12T00:37:46.742Z (28 days ago)
- Topics: compress, geohash, minify
- Language: TypeScript
- Homepage:
- Size: 38.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# geohash-minify
Compress a list of geohashes using the best combination across various precisions
## Installation
Using npm `npm i geohash-minify`
Using yarn `yarn add geohash-minify`
Using pnpm `pnpm i geohash-minify`
## Usage
In CommonJS env
```javascript
const { compressGeohashes } = require('geohash-minify');
```Using imports
```javascript
import { compressGeohashes } from 'geohash-minify';
```## Documentation
See [DOCS](./docs/modules.md)