Hi Ahmet,<br><br>My quick Googling hasn't come up with a widely used pre-defined projection for Turkey that is non zonal (either UTM or <font face="Arial" size="2">Gauss-Kruger), at least not in the EPSG database.  Apparently, MapInfo ships with a Turkish Lambert projection in its <a href="http://testdrive.mapinfo.com/techsupp/miprod.nsf/8248bf2b72f6949585257125006b035a/215efdb0c93153be85256a410055416a?OpenDocument">mapinfow.prj</a></font> file, which is widely available on the web.  I took the parameters from that projection and created an <a href="http://spatialreference.org/ref/sr-org/7006/">entry on spatialreference.org</a> as SR-ORG:7006.  This can be inserted into PostGIS as a new SRS as:<br>

<br><pre>INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 97006, 'sr-org', 7006, '', 'PROJCS["Turkish Lambert Conformal (K.Eren - ED50)",GEOGCS["GCS_European_1950",DATUM["D_European_1950",SPHEROID["International_1924",6378388.0,297.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",1003827.0],PARAMETER["False_Northing",-1183453.0],PARAMETER["Central_Meridian",36.0],PARAMETER["Standard_Parallel_1",37.5],PARAMETER["Standard_Parallel_2",40.5],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",25.0],UNIT["Meter",1.0]]');</pre>

This can then be used as SRS number 97006.<br><br>Note that this projection uses the ED50 datum.  If your coordinates are in WGS84 (the standard for GPS) or some other datum, it might be convenient to create a new SRS using the above parameters but based on another datum.<br>

<br>Furthermore, If you are happy to keep your data in geographic coordinates (lat/lon) you may wish to investigate the Geography type as Emily suggested.  Be aware, however, that this has some cost in terms of speed for some operations, and not all operations defined in PostGIS for Geometry are currently available for Geography types.<br>

<br>Good luck,<br><br>Francis Markham<br><br><div class="gmail_quote">2010/11/5 ahmet temiz <span dir="ltr"><<a href="mailto:ahmettemiz88@gmail.com">ahmettemiz88@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

hello<br>
<br>
I was wondering if you could tell me which projection in metric system<br>
is  suitable for whole country (TURKEY) ?<br>
I thought to use UTM, but it has three different zones.<br>
<br>
If you answer me, I will appreciate<br>
<br>
regards<br>
<br>
<br>
--<br>
Ahmet Temiz<br>
Jeoloji Müh.<br>
Planlama ve Zarar Azaltma Dairesi Başkanlığı<br>
Bilgi ve CBS grubu<br>
Eskişehir Yolu 10. km.<br>
Lodumlu / Ankara<br>
Tel : 0 312 2872680 / 1535<br>
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
</blockquote></div><br>