0.2.5 • Published 2 years ago

nexusbr-proj-geojson v0.2.5

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

proj-geojson

Reproject a geojson with proj4js

NPM

    npm install proj-geojson

Example

    const projgeojson = require('proj-geojson');
    const fs = require('fs');

    let geojson = JSON.parse(fs.readFileSync('my-file.geojson'));
    const geojson2154 = projgeojson(geojson, 'EPSG:4326', 'EPSG:2154');
    console.log(geojson2154);