Geoq is a command-line tool for working with geospatial data.
It combines common GIS serialization formats with utilities for manipulating and visualizing data on a map.
For example:
```sh
$ echo '{"type":"Polygon","coordinates":[[[-34,38],[-37,32],[-23,33],[-34,38]]]}' | geoq gh covering 2 -o {"type":"Polygon","coordinates":[[[30,10],[40,40],[20,40],[10,20],[30,10]]]} eq en em ej
$ echo '{"type":"Polygon","coordinates":[[[-34,38],[-37,32],[-23,33],[-34,38]]]}' | geoq gh covering 2 -o | geoq map ```
See the Manual for more examples and available commands.
Currently installation is done through crates.io, the Rust package repository.
If you have Rust installed, simply:
cargo install geoq
To install Rust and the Cargo toolchain:
curl https://sh.rustup.rs -sSf | sh
You'll also need to add Cargo's bin
directory to your path:
```
export PATH="$HOME/.cargo/bin:$PATH" ```
This library is still in its infancy and there are probably a lot of rough edges.
What Works
What Doesnt