Commit dcaf131c authored by Calvin Metcalf's avatar Calvin Metcalf
Browse files

linting

parent 837169a1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -7,8 +7,6 @@ define(function(require) {
  var projections = require('proj4/projections');
  var wkt = require('proj4/wkt');
  var projStr = require('proj4/projString');
  proj.projections = projections;
  proj.projections.start();
  function proj(srsCode) {
    if (!(this instanceof proj)) {
      return new proj(srsCode);
@@ -36,7 +34,9 @@ define(function(require) {
    }

    this.initTransforms(this.projName);
  };
  }
  proj.projections = projections;
  proj.projections.start();
  proj.prototype = {
    /**
     * Function: initTransforms
+111 −115
Original line number Diff line number Diff line
@@ -117,9 +117,5 @@ define(function(require, exports) {
    //proj4.reportError("aea:phi1z:Convergence error");
    return null;
  };
exports.names = [
        "Albers_Conic_Equal_Area",
        "Albers",
        "aea"
    ];
  exports.names = ["Albers_Conic_Equal_Area", "Albers", "aea"];
});
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ define(function(require, exports) {
   *     1 -> m accuracy -- suitable for most mapping applications
   *     2 -> mm accuracy
   */
  exports.iterations = 1,
  exports.iterations = 1;

  exports.init = function() {
    this.A = [];
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ define(function(require, exports) {
      p.y = this.y0 + us * Math.cos(this.alpha) - vs * Math.sin(this.alpha);
    }
    return p;
  },
  };

  exports.inverse = function(p) {
    var us, vs;
+0 −1
Original line number Diff line number Diff line
define(function(require) {
  var common = require('proj4/common');
  var constants = require('proj4/constants');
  var extend = require('proj4/extend');
  function mapit(obj, key, v) {
    obj[key] = v.map(function(aa) {
+82 −82

File changed.

Contains only whitespace changes.

+69 −69

File changed.

Contains only whitespace changes.

+60 −60

File changed.

Contains only whitespace changes.

+129 −129

File changed.

Contains only whitespace changes.

Loading