# geojson-join **Repository Path**: mirrors_tmcw/geojson-join ## Basic Information - **Project Name**: geojson-join - **Description**: Join a stream of GeoJSON against a dataset. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-27 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ```