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

make abs

parent d2dc8023
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
define(['./mgrs'],function(mgrs) {
define(['proj4/mgrs'],function(mgrs) {
  function Point(x, y, z) {
    if (!(this instanceof Point)) {
      return new Point(x, y, z);
+1 −1
Original line number Diff line number Diff line
define(['./extend','./common','./defs','./constants','./datum','./projections','./wkt','./projString'],function(extend, common, defs,constants,datum,projections,wkt,projStr) {
define(['proj4/extend','proj4/common','proj4/defs','proj4/constants','proj4/datum','proj4/projections','proj4/wkt','proj4/projString'],function(extend, common, defs,constants,datum,projections,wkt,projStr) {
  
  var proj = function proj(srsCode) {
    if (!(this instanceof proj)) {
+1 −1
Original line number Diff line number Diff line
define(['../common'],function(common) {
define(['proj4/common'],function(common) {
  return function(srs, inverse, point) {
    var i, l, gi, ct, epsilon;
    if (srs.grids === null || srs.grids.length === 0) {
+1 −1
Original line number Diff line number Diff line
define(['./Point','./Proj','./transform'],function(point,proj,transform) {
define(['proj4/Point','proj4/Proj','proj4/transform'],function(point,proj,transform) {
  var wgs84 = proj('WGS84');
  return function(fromProj, toProj, coord) {
    var transformer = function(f, t, c) {
+1 −1
Original line number Diff line number Diff line
define(['./common'],function(common) {
define(['proj4/common'],function(common) {
  var datum = function(proj) {
    if (!(this instanceof datum)) {
      return new datum(proj);
Loading