4a5c9b0eed
The toOGR and toOGR_SingleFile function now take an "options" object rather than a long list of arguments. This allows for easier extension toward per-user database host and password (see tickets #120 and #121)
25 lines
644 B
JavaScript
25 lines
644 B
JavaScript
var ogr = require('./ogr');
|
|
|
|
function kml() {}
|
|
|
|
kml.prototype = new ogr('kml');
|
|
|
|
var p = kml.prototype;
|
|
|
|
p._contentType = "application/kml; charset=utf-8";
|
|
p._fileExtension = "kml";
|
|
// As of GDAL 1.10.1 SRID detection is bogus, so we use
|
|
// our own method. See:
|
|
// http://trac.osgeo.org/gdal/ticket/5131
|
|
// http://trac.osgeo.org/gdal/ticket/5287
|
|
// http://github.com/CartoDB/CartoDB-SQL-API/issues/110
|
|
// http://github.com/CartoDB/CartoDB-SQL-API/issues/116
|
|
// Bug was fixed in GDAL 1.10.2
|
|
p._needSRS = true;
|
|
|
|
p.generate = function(options, callback) {
|
|
this.toOGR_SingleFile(options, 'KML', callback);
|
|
};
|
|
|
|
module.exports = kml;
|