Hi all,<br>
<br>
I have trouble trying to reproject a point from greek grid to WGS84.<br>
<br>
I use as my starting coordinate system the standard greek grid
system (GGRS87). As found on the web page
<a href="http://cvs.gis.umn.edu/cgi-bin/viewcvs/mapserver_docs/proj.html?rev=1.2#GGRS87%20/%20Greek%20Grid" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://cvs.gis.umn.edu/cgi-bin/viewcvs/mapserver_docs/proj.html?rev=1.2#GGRS87%20/%20Greek%20Grid
</a><br>

the parameters of this system are:  <br>

    proj=tmerc <br>

    lat_0=0.000000000 <br>

    lon_0=24.000000000 <br>

    k=0.999600 <br>

    x_0=500000.000 <br>

    y_0=0.000 <br>

    ellps=GRS80 <br>

    towgs84=-199.87,74.79,246.62,0,0,0,0 <br>

    units=m <br>

    no_defs <br>

Here, I will inform that the greek system has its borders on <br>

Xmin = 80000<br>

Xmax = 1050000<br>

Ymin = 3760000<br>

Ymax = 4660000<br>

<br>

Supposing that these params are official and accepted enough, I step
over to the tranformation from this system (GGRS87) to WGS84. To do the tranformation I use phpMapscript and its projectionobj.<br>
<div id="mb_0"></div>

So we have the following code:<br>

<br>

[CODE]<br>

// Projections declaration<br>

$projInObj=ms_newprojectionobj
<div id="mb_0">("proj=tmerc,ellps=GRS80,towgs84=-199.87,74.79,246.62,0,0,0,0,units=m,lon_0=24,k=0.9996,x_0=500000,no_defs")<br>
$projOutObj=ms_newprojectionobj("proj=latlong,ellps=WGS84,DATUM=WGS84,no_defs");<br>
<br>
// Shape to be reprojected<br>
$myshape = ms_newpointobj();<br>
$myshape->setXY(552000, 4098077);  <br>
<br>
// Some code to confirm initial values<br>
print_r($myshape);<br>
echo "<p />";<br>
<br>
$myshape->project($projInObj, $projOutObj);<br>
<br>
// Code to get the final values<br>
print_r($myshape);<br>
[/CODE]<br>
<br>
The expected result (according to very reliable software like ArcGIS and others...) is:<br>
lon=24,351076881,lat=37,014812887<br>
Though! the result that I get from mapscript is:<br>
lon=24.585568772,lat=37.028433901<br>
<br>
Again it seems to a small difference but the truth is that we have to deal with a very large difference on the results!<br>
<br>
I did test the tranformation with different values. I provide some triads of input and output:<br>
<triad 1><br>
Input:                X=100000, Y=4000000<br>
Expected:         lon:19,334046546,lat:36,035407643<br>
mapscript gave: lon:19.560466687 lat:36.063361179<br>
</triad 1><br>
<br>
<triad 2><br>
Input:                X=400000, Y=4200000<br>
Expected:         lon:22,514890564,lat:37,564089629<br>
mapscript gave: lon:22.862809496,lat:37.943105553<br>
</triad 2> <br>
<br>
<triad 3><br>
Input:                X=700000, Y=4400000<br>
Expected:         lon:26,200754084,lat:39,434436875<br>
mapscript gave: lon:26.334654875,lat:39.727476986<br>
</triad 3> <br>
<br>
<triad 4><br>
Input:                X=1000000, Y=4600000<br>
Expected:         lon:29,585420281,lat:41,235432698<br>
mapscript gave: lon:29.980956617,lat:41.396983529<br>
</triad 4> <br>
<br>
I can't relize any systematic error. The only thing that can mention by
a first look is that I get bad results. So, I ask: Do I do
something wrong or are there any limitations on the PROJ or the
mapscript that I don't know?<br>
<br>
Thanks on advance<br>
<br>
Andreas Trantidis</div>