https://github.com/tyrasd/geojson-numeric
Makes properties of geojson features numeric.
https://github.com/tyrasd/geojson-numeric
geojson javascript
Last synced: 4 months ago
JSON representation
Makes properties of geojson features numeric.
- Host: GitHub
- URL: https://github.com/tyrasd/geojson-numeric
- Owner: tyrasd
- License: mit
- Created: 2014-04-14T18:29:44.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-11-27T10:32:40.000Z (over 6 years ago)
- Last Synced: 2025-10-19T08:50:54.600Z (9 months ago)
- Topics: geojson, javascript
- Language: JavaScript
- Homepage: https://www.npmjs.org/package/geojson-numeric
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
geojson-numeric
===============
Makes properties of geojson features numeric
… "properties": { "population": "265778" } …
↓ ↓ ↓ ↓ ↓ ↓ ↓
… "properties": { "population": 265778 } …
[](https://travis-ci.org/tyrasd/geojson-numeric)
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);