<div class="gmail_quote">On Thu, Dec 29, 2011 at 12:42 PM, Adam Stylinski <span dir="ltr">&lt;<a href="mailto:stylinae@mail.uc.edu">stylinae@mail.uc.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello,
<div><br></div><div>I&#39;m having issues with LADAR files which do not use the WGS84 coordinate system.  I am translating coordinates into longitude and latitude and testing with google earth.  Whenever a LAS file has NAD83 coordinate it seems to have a tendency to be completely wrong (most of which end up being somewhere in the ocean).  Is there something I&#39;m doing that doesn&#39;t work?</div>

<div><br></div><div>I use the GetProj4() to get the proj4 string.  I then do a pj_init_plus(proj4str) to get the represented coordinate system, and then do a pj_latlong_from_proj() on that coordinate system to get the lat/long coordinate system.  Then to translate to lat/long I do a pj_transform with the src being the original coordinate system, the destination being the lat/long coordinate system, the next two parameters being 1,1, and the x and y being from a point pulled from GetX(), GetY().  Am I doing this wrong?   </div>

</blockquote></div><br><div>I should probably mention that I&#39;m failing on this one (though any NAD83 coordinate seems to fail):</div><div><a href="http://liblas.org/samples/IowaDNR-CloudPeakSoft-1.0-UTM15N.las">http://liblas.org/samples/IowaDNR-CloudPeakSoft-1.0-UTM15N.las</a></div>
<div>The GetProj4() returns this: </div><div><div>GetProj4() = +proj=tmerc +lat_0=0 +lon_0=0 +k=1 +x_0=0 +y_0=0 +datum=NAD83 +units=m +geoidgrids=g2003conus.gtx,g2003alaska.gtx,g2003h01.gtx,g2003p01.gtx +no_defs</div></div>
<div>And GetWKT():</div><div><div>GetWKT() = COMPD_CS[&quot;unknown&quot;,</div><div>    PROJCS[&quot;NAD83 / UTM zone 15N&quot;,</div><div>        GEOGCS[&quot;NAD83&quot;,</div><div>            DATUM[&quot;North_American_Datum_1983&quot;,</div>
<div>                SPHEROID[&quot;GRS 1980&quot;,6378137,298.2572221010002,</div><div>                    AUTHORITY[&quot;EPSG&quot;,&quot;7019&quot;]],</div><div>                AUTHORITY[&quot;EPSG&quot;,&quot;6269&quot;]],</div>
<div>            PRIMEM[&quot;Greenwich&quot;,0],</div><div>            UNIT[&quot;degree&quot;,0.0174532925199433],</div><div>            AUTHORITY[&quot;EPSG&quot;,&quot;4269&quot;]],</div><div>        PROJECTION[&quot;Transverse_Mercator&quot;],</div>
<div>        PARAMETER[&quot;latitude_of_origin&quot;,0],</div><div>        PARAMETER[&quot;central_meridian&quot;,0],</div><div>        PARAMETER[&quot;scale_factor&quot;,1],</div><div>        PARAMETER[&quot;false_easting&quot;,0],</div>
<div>        PARAMETER[&quot;false_northing&quot;,0],</div><div>        UNIT[&quot;metre&quot;,1,</div><div>            AUTHORITY[&quot;EPSG&quot;,&quot;9001&quot;]],</div><div>        AUTHORITY[&quot;EPSG&quot;,&quot;26915&quot;]],</div>
<div>    VERT_CS[&quot;NAVD88 height&quot;,</div><div>        VERT_DATUM[&quot;North American Vertical Datum 1988&quot;,2005,</div><div>            AUTHORITY[&quot;EPSG&quot;,&quot;5103&quot;],</div><div>            EXTENSION[&quot;PROJ4_GRIDS&quot;,&quot;g2003conus.gtx,g2003alaska.gtx,g2003h01.gtx,g2003p01.gtx&quot;]],</div>
<div>        UNIT[&quot;metre&quot;,1,</div><div>            AUTHORITY[&quot;EPSG&quot;,&quot;9001&quot;]],</div><div>        AXIS[&quot;Up&quot;,UP],</div><div>        AUTHORITY[&quot;EPSG&quot;,&quot;5703&quot;]]]</div>
</div>