0.1.1 • Published 10 years ago

geojson2kml v0.1.1

Weekly downloads
14
License
-
Repository
github
Last release
10 years ago

geojson2kml

a node.js module for converting geojson to kml

npm install geojson2kml

This 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
})