Hi All,<br><br>I am using Postgres Plus 8.4 and the PostGIS 1.4 along with it. The problem is that I get different results on Windows XP & Linux-32 (Red Hat 5) from the same query.<br><br>The SQL script is a bit lengthy so I have attached it with this email. Please run that SQL script file on psql terminal so that all of the pre-requisite Tables and Functions are created. At the end of this script there are two queries. I have pasted below the two queries and there results with respect to the two OS'.<br>

<br><br>QUERY 1: SELECT area(the_geom) FROM buildings;<br>-- Result on Windows XP<br>       area<br>------------------<br> 205.548500000002<br>(1 row)<br><br>-- Result on Linux32 (Red Hat 5)<br>       area<br>
------------------<br> 205.5485 <br>
(1 row)<br><br><br>QUERY 2: SELECT length(geom) FROM roads;<br>-- Result on Windows XP<br>     length<br>-----------------<br> 14.142135623731<br>(1 row)<br><br>-- Result on Linux32 (Red Hat 5)<br>     length<br>
-----------------<br>
 14.1421356237309<br>
(1 row)<br><br><br>The output from Query 1 is a bit bizarre. Instead of rounding and truncating it on Windows, '00000002' is appended to it. Is this normal? Or is it a bug. And also the output from Query 2 is different as well.<br>

<br>Thanking in advance for any assistance.<br><br><br>Regards,<br>Ahmed<br><br><br>