valencia-datos-abiertos
Version:
Command-line client for the Valencia public API: [Valencia datos abiertos](http://www.valencia.es/ayuntamiento/datosabiertos.nsf/vDocumentosTituloAux/Datos abiertos).
23 lines (15 loc) • 371 B
JavaScript
// Generated by CoffeeScript 1.8.0
(function() {
var Util;
Util = (function() {
function Util() {}
Util.prototype.convertToCoordinate = function(value) {
return value / 1e6;
};
Util.prototype.convertFromCoordinate = function(value) {
return value * 1e6;
};
return Util;
})();
module.exports = new Util();
}).call(this);