geojson-numeric
v0.2.1
Published
Makes properties of geojson features numeric.
Downloads
23,982
Readme
geojson-numeric
Makes properties of geojson features numeric
… "properties": { "population": "265778" } …
↓ ↓ ↓ ↓ ↓ ↓ ↓
… "properties": { "population": 265778 } …
Usage
as a command line tool:
$ npm install -g geojson-numeric $ geojson-numeric file.geojson > file_numeric.geojson
as a nodejs library:
$ npm install geojson-numeric var numerify = require('geojson-numeric'); numerify(geojson_data);