[mapguide-commits] r5454 - trunk/MgDev/Common/CoordinateSystem

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Thu Dec 9 13:27:15 EST 2010


Author: NormOlsen
Date: 2010-12-09 10:27:15 -0800 (Thu, 09 Dec 2010)
New Revision: 5454

Modified:
   trunk/MgDev/Common/CoordinateSystem/CoordSys.cpp
Log:
Trac #1555 -- Somehow, working on two different computers with three different repositories, I ended up with a conflict on this module (CoordSys.cpp) and in resolving the conflict, blew away a previous change.  This submission corrects is problem.

Modified: trunk/MgDev/Common/CoordinateSystem/CoordSys.cpp
===================================================================
--- trunk/MgDev/Common/CoordinateSystem/CoordSys.cpp	2010-12-09 10:57:00 UTC (rev 5453)
+++ trunk/MgDev/Common/CoordinateSystem/CoordSys.cpp	2010-12-09 18:27:15 UTC (rev 5454)
@@ -1330,7 +1330,7 @@
     else if (sEpsg < 0)
     {
         sEpsg = -sEpsg;
-        iEpsg = 32768 + sEpsg;
+        iEpsg = 65536 - sEpsg;
     }
     else
     {
@@ -1355,7 +1355,7 @@
     else if (sSrid < 0)
     {
         sSrid = -sSrid;
-        iSrid = 32768 + sSrid;
+        iSrid = 65536 - sSrid;
     }
     else
     {



More information about the mapguide-commits mailing list