CartoDB-SQL-API/app/models/formats/ogr/spatialite.js

24 lines
819 B
JavaScript
Raw Normal View History

2015-05-29 21:24:50 +08:00
var ogr = require('./../ogr');
function SpatiaLiteFormat() {}
SpatiaLiteFormat.prototype = new ogr('spatialite');
SpatiaLiteFormat.prototype._contentType = "application/x-sqlite3; charset=utf-8";
SpatiaLiteFormat.prototype._fileExtension = "sqlite";
// 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
SpatiaLiteFormat.prototype._needSRS = true;
SpatiaLiteFormat.prototype.generate = function(options, callback) {
var ogrFormat = 'SQLite SPATIALITE=yes';
2015-06-01 22:48:27 +08:00
this.toOGR_SingleFile(options, ogrFormat, callback);
2015-05-29 21:24:50 +08:00
};
module.exports = SpatiaLiteFormat;