Scilab Function
Last update : 31/10/2005
gkn2geo - national GK coordinates -> geograph.
coordinates
Calling Sequence
-
[w1,w2] = gkn2geo(z,NR)
Parameters
-
z
: complex vector with Gauss-Krüger coordinates. Real part=Right
value, Imag. part =height value
-
NR
: number of meridional stripe
-
w1
: Vector with longitude values (DEG)
-
w2
: Vector with lattitude values (DEG)
Description
-
national Gauss-Krüger coordinates can be converted back to
geographical coordinates. This function is the inverse of geo2gkn.
Examples
w1a=8; w2a=49;
[Z,NR]=geo2gkn(w1a,w2a);
[w1b,w2b]=gkn2geo(Z,NR);
disp(w1b-w1a);
disp(w2b-w2a);
See Also
geo2gkn
,
gkk2geo
,
Authors
-
Dr. Andreas Geissler geisslea@web.de
Used Function
gkk2geo