Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/node-geojson/geojson-join

Join a stream of GeoJSON against a dataset.
https://github.com/node-geojson/geojson-join

Last synced: 5 days ago
JSON representation

Join a stream of GeoJSON against a dataset.

Awesome Lists containing this project

README

        

# geojson-join

Join a stream of GeoJSON against a dataset.

## install

npm install -g geojson-join

## usage

* againstField: the field in the dataset to join against geojson
* geojsonField: the field in the geojson feature properties
* `format`: format of the dataset. can be json, csv, dbf. Default json.

Accepts GeoJSON on stdin and the joined-against file as an argument

```sh
$ geojson-join test/against.json \
--againstField=id \
--geojsonField=id < test/random.geojson
```

```sh
$ geojson-join --format=dbf \
test/against.dbf \
--againstField=id \
--geojsonField=id < test/random.geojson
```