Fail to implement this function.
`function pot2wgs(lp, bp)
{
/* Copyright (c) 2006, HELMUT H. HEIMEIER
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the âSoftwareâ),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.*/
/* Die Funktion verschiebt das Kartenbezugssystem (map datum) vom in
Deutschland gebrÀuchlichen Potsdam-Datum zum WGS84 (World Geodetic
System 84) Datum. Geographische LĂ€nge lp und Breite bp gemessen in
grad auf dem Bessel-Ellipsoid mĂŒssen gegeben sein.
Ausgegeben werden geographische LĂ€nge lw und
Breite bw (in grad) auf dem WGS84-Ellipsoid.
Bei der Transformation werden die Ellipsoidachsen parallel
verschoben um dx = 587 m, dy = 16 m und dz = 393 m.*/
// Geographische LĂ€nge lp und Breite bp im Potsdam Datum
if (lp == ââ || bp == ââ)
{
lw = ââ;
bw = ââ;
return;
}
lp = parseFloat(lp);
bp = parseFloat(bp);
// Quellsystem Potsdam Datum
// GroĂe Halbachse a und Abplattung fq
a = 6378137.000 - 739.845;
fq = 3.35281066e-3 - 1.003748e-05;
// Zielsystem WGS84 Datum
// Abplattung f
f = 3.35281066e-3;
// Parameter fĂŒr datum shift
dx = 587;
dy = 16;
dz = 393;
// Quadrat der ersten numerischen ExzentrizitÀt in Quell- und Zielsystem
e2q = (2fq-fqfq);
e2 = (2f-ff);
// Breite und LĂ€nge in Radianten
pi = Math.PI;
b1 = bp * (pi/180);
l1 = lp * (pi/180);
// QuerkrĂŒmmungshalbmesser nd
nd = a/Math.sqrt(1 - e2q*Math.sin(b1)*Math.sin(b1));
// Kartesische Koordinaten des Quellsystems Potsdam
xp = nd*Math.cos(b1)Math.cos(l1);
yp = ndMath.cos(b1)*Math.sin(l1);
zp = (1 - e2q)ndMath.sin(b1);
// Kartesische Koordinaten des Zielsystems (datum shift) WGS84
x = xp + dx;
y = yp + dy;
z = zp + dz;
// Berechnung von Breite und LĂ€nge im Zielsystem
rb = Math.sqrt(xx + yy);
b2 = (180/pi) * Math.atan((z/rb)/(1-e2));
if (x > 0)
l2 = (180/pi) * Math.atan(y/x);
if (x < 0 && y > 0)
l2 = (180/pi) * Math.atan(y/x) + 180;
if (x < 0 && y < 0)
l2 = (180/pi) * Math.atan(y/x) - 180;
lw = l2;
bw = b2;
return;
}`