<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head>
<body bgcolor="#FFFFFF"><div>I think you must add a final slash after 4326 to make that link work.</div><div><br></div><div>Another site you could look at is <a href="http://www.epsg-registry.org"><a href="http://www.epsg-registry.org">http://www.epsg-registry.org</a></a></div><div><br></div><div>The &#43;init usually works, but when the underlying datum isn't</div><div>WGS84, you<span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); ">&nbsp;will not always get the best possible accuracy.&nbsp;</span></div><div>I believe the default implementation of OSGB36 isn't</div><div>very good, for example (it may have improved since</div><div>the last time I looked, though).</div><div><br></div><div>For ED50, I don't know any implementation that is good in</div><div>all of Europe/Middle East. The default has about 10 - 15 m</div><div>accuracy. If one needs higher accuracy, one must</div><div>choose an implementation that is tailor-made for a</div><div>smaller area, say Spain or some part of the North Sea.&nbsp;</div><div><br></div><div>Regards,</div><div><br></div><div>Mikael Rittri</div><div>Carmenta</div><div>Sweden</div><div><a href="http://www.carmenta.com">http://www.carmenta.com</a><br></div><div><br>4 okt 2012 kl. 19:07 skrev &quot;Doanh Hoang&quot; &lt;<a href="mailto:doanh.hoang@mud-maps.com">doanh.hoang@mud-maps.com</a>&gt;:<br><br></div><div></div><blockquote type="cite"><div>Hi David. <br><br>Thank you for quick support !<br><br>Is it right that for another datums (for example : NAD27, NAD83, <span>OSGB, ED 50, etc,...) we can do transformation with only just simple initialization <br>like projPJ src= pj_init_plus( &quot;&#43;init=epsg:4326&quot;); (I mean that we use only &#43;init parameter)<br>
<br></span>Clicking on <a href="http://spatialreference.org/ref/epsg/4326"><a href="http://spatialreference.org/ref/epsg/4326">http://spatialreference.org/ref/epsg/4326</a></a> I get :&nbsp; &quot; Not found, /ref/epsg/4326. 
&quot;<span><br><br>Doanh<br></span><br><div class="gmail_quote">On 4 October 2012 23:48, nicolas david <span dir="ltr">&lt;<a href="mailto:ericnico.david@gmail.com" target="_blank"><a href="mailto:ericnico.david@gmail.com">ericnico.david@gmail.com</a></a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi<br><br>On our proj4 installation you should have a directory call &quot;nad&quot;. This directory have some dictionnary of projection that could be used to define projection parameters. For exemple with the lat/long wgs84 projection you could use <br>

<br> projPJ src= pj_init_plus( &quot;&#43;init=epsg:4326&quot;); <br><br>see <a href="http://spatialreference.org/ref/epsg/4326" target="_blank"><a href="http://spatialreference.org/ref/epsg/4326">http://spatialreference.org/ref/epsg/4326</a></a> for searching your projection code.<br>
Take care of setting the PROJ_LIB environnement variable to the correct path for your projection directory.<br>
<br>Nicolas<br><br><br><div class="gmail_quote">2012/10/4 Doanh Hoang <span dir="ltr">&lt;<a href="mailto:doanh.hoang@mud-maps.com" target="_blank"><a href="mailto:doanh.hoang@mud-maps.com">doanh.hoang@mud-maps.com</a></a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><div class="h5">
Hi all <br><br>Im developer and this is the first time I touch PROJ.4 . And I have following problem , please anyone can give me an advice:<br><br>In my project I need to do <b>transformation from datums&nbsp; (US, North America, UK, South Africa, New Zealand) to WGS84. </b><br>


<br>After having a look at defintion of pj_transform&nbsp; (function to do datums transformation on PROJ.4). I have seen that there are so many input parameters.<br>&nbsp;<br>For example : following code that I found in internet : <br>


------------------------------------------------------------------------------------------------------<br>&nbsp;&nbsp;&nbsp; projPJ src= pj_init_plus(&quot;&#43;proj=tmerc &#43;lat_0=38N &#43;lon_0=128E &#43;ellps=bessel &#43;x_0=400000 &#43;y_0=600000 &#43;k=0.9999 &#43;towgs84=-146.43,507.89,681.46&quot;);<br>


&nbsp;&nbsp;&nbsp; projPJ dst= pj_init_plus(&quot;&#43;proj=latlong &#43;datum=WGS84 &#43;ellps=WGS84&quot;);<br>&nbsp;&nbsp;&nbsp; double x,y,z;<br>&nbsp;&nbsp;&nbsp; x=100;<br>&nbsp;&nbsp;&nbsp; y=100;<br>&nbsp;&nbsp;&nbsp; z=100;<br>&nbsp;&nbsp;&nbsp; pj_transform(src,dst,1,1,&amp;x,&amp;y,NULL);<br>------------------------------------------------------------------------------------------------------<br>















<table style="border-collapse:collapse;width:640pt" border="0" cellpadding="0" cellspacing="0" width="640">

 <colgroup><col style="width:640pt" width="640">
 </colgroup><tbody><tr style="min-height:15.0pt" height="15">
  <td style="min-height:15.0pt;width:640pt" height="15" width="640">params for initionlization of datums<br>&#43;proj=merc
  &#43;ellps=clrk66 &#43;lat_ts=33</td>
 </tr>
 <tr style="min-height:15.0pt" height="15">
  <td style="min-height:15.0pt" height="15">&#43;proj=latlong &#43;ellps=clrk66</td>
 </tr>

</tbody></table>




------------------------------------------------------------------------------------------------------<br>There are so many geospatial knowledge neccessary to understand these parameter. <br>Im developer and I know just only the simple name of datums(WGS84, NAD27, NAD83, etc,..) and coordinates of points, <br>


<br>With them how I can make transformation between different datums ? <b>Where I can get input parameters and define correct geospatial input parameters.</b><br><br>I very need your help. Thanks a lot. <br><span><font color="#888888"><br>

Hoang Doanh<br>
<br>
</font></span><br></div></div>_______________________________________________<br>
Proj mailing list<br>
<a href="mailto:Proj@lists.maptools.org" target="_blank"><a href="mailto:Proj@lists.maptools.org">Proj@lists.maptools.org</a></a><br>
<a href="http://lists.maptools.org/mailman/listinfo/proj" target="_blank"><a href="http://lists.maptools.org/mailman/listinfo/proj">http://lists.maptools.org/mailman/listinfo/proj</a></a><br></blockquote></div><br>
<br>_______________________________________________<br>
Proj mailing list<br>
<a href="mailto:Proj@lists.maptools.org"><a href="mailto:Proj@lists.maptools.org">Proj@lists.maptools.org</a></a><br>
<a href="http://lists.maptools.org/mailman/listinfo/proj" target="_blank"><a href="http://lists.maptools.org/mailman/listinfo/proj">http://lists.maptools.org/mailman/listinfo/proj</a></a><br></blockquote></div><br>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>Proj mailing list</span><br><span><a href="mailto:Proj@lists.maptools.org">Proj@lists.maptools.org</a></span><br><span><a href="http://lists.maptools.org/mailman/listinfo/proj">http://lists.maptools.org/mailman/listinfo/proj</a></span></div></blockquote></body></html>