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" ```
To pull and install a newer version from crates.io, run:
cargo install geoq --force
Geoq will detect the following GIS input formats automatically:
34.0,-118.0
9q5
POINT (-118.0, 34.0)
{"type": "Point", "coordinates": [-118.0, 34.0]}
Geoq processes text inputs on a per-line basis, and it expects inputs not to stretch across multiple lines.
This sometimes causes problems, especially with GeoJSON, because many JSON processing tools like to output pretty-printed JSON in a multi-line format.
One way to fix this problem with pretty-printed GeoJSON is to use the jq tool:
echo '{
"type": "Point",
"coordinates": [30, 10]
}
' | jq -c . | geoq map
See the built-in command help using geoq --help
or geoq <subcommand> --help
for more detailed information on these:
gj
- GeoJSON subcommands
f
- Output geometry as GeoJSON featuregeom
- Output geometry as GeoJSON geometryfc
- Collect all input geometries into a GeoJSON Feature Collectioncentroid
- Cet the centroid of a geometryfilter
- Spatial predicate filtering
intersects
- Select features intersecting a given query geometrycontains
- Select features contained by a given query geometrygh
- Geohash subcommands
children
- Get children of a geohashcovering
- Output geohashes that "cover" a geometryneighbors
- Get neighbors of a Geohashpoint
- Output base 32 Geohash for a given Lat,Lonjson
- JSON -> GeoJSON coercion
point
- Attempt to convert arbitrary JSON to a GeoJSON Point.map
- Visualization with geojson.ioread
- Debugging / format validationwkt
- Output geometries as WKTwhereami
- Output IP geolocation-based current lat/lon as GeoJSONmeasure
- Measurement subcommands
distance
- Measure distances between featuresSee the Manual for more examples and available commands.