geojson2kml
v0.1.1
Published
a module for converting a geojson file to a kml file
Readme
geojson2kml
a node.js module for converting geojson to kml
npm install geojson2kmlThis module is a simple wrapper around ogr2ogr that takes a geojson file and outputs a kml file. ogr2ogr must be installed to use this module.
var geojson2kml = require('geojson2kml')
geojson2kml('./polygons.geojson', './polygons.kml', function(err){
if(err) throw err
})