Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradoyler/point2place
CLI/Libray for reverse geocoding w/o a need for http
https://github.com/bradoyler/point2place
cli geocoding
Last synced: 17 days ago
JSON representation
CLI/Libray for reverse geocoding w/o a need for http
- Host: GitHub
- URL: https://github.com/bradoyler/point2place
- Owner: bradoyler
- Created: 2017-11-14T14:37:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T03:07:38.000Z (almost 7 years ago)
- Last Synced: 2024-10-11T01:14:18.880Z (about 1 month ago)
- Topics: cli, geocoding
- Language: JavaScript
- Homepage:
- Size: 781 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
__Point2Place__
Library & CLI for converting longlat coordinates to a place (reverse geocoding without an api)
[![npm](https://img.shields.io/npm/v/point2place.svg)]()
[![npm](https://img.shields.io/npm/dw/point2place.svg)]()
[![GitHub last commit](https://img.shields.io/github/last-commit/bradoyler/point2place.svg)]()
[![npm](https://img.shields.io/npm/l/point2place.svg)]()
[![GitHub repo size in bytes](https://img.shields.io/github/repo-size/bradoyler/point2place.svg)]()### CLI
```sh
$ npx point2place --longlat 30,30
```### Data files used:
- [Geo-Maps countries-maritime 10km](https://www.npmjs.com/package/@geo-maps/countries-maritime-10km)
- [AtlasMake: world-countries](https://github.com/bradoyler/atlas-make/tree/master/world-countries)
- [AltasMake: world-places](https://github.com/bradoyler/atlas-make/tree/master/world-places)### Run tests:
```
$ npm test
```#### Ways get your Long-Lat coordinates
- [CoreLocationCLI]() Mac OSX
```
$ brew cask install corelocationcli
$ CoreLocationCLI -format "%longitude,%latitude"
```