geoq 0.0.1

Geospatial utility CLI
geoq-0.0.1 is not a library.

geoq

Build Status

Geoq is a command-line tool for working with geospatial data.

It unifies a few common GIS serialization formats with come utilities for manipulating and visualizing data on a map.

As a brief taste, the command:

echo '{"type":"Polygon","coordinates":[[[30,10],[40,40],[20,40],[10,20],[30,10]]]}' | geoq map

will open a browser window to render the desired polygon on a map.

See the Manual for more examples and available commands.

Install

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:

# e.g. in your ~/.bash_profile or other shell profile
export PATH="$HOME/.cargo/bin:$PATH"