Hello all,<br>&nbsp; I need to project UTM coordinates into stateplane, but I have no need for drawing graphical maps.&nbsp; My output is to be a script that will be imported into another application.&nbsp; I have found the Geo::Proj4 for PERL, and I have a functioning skeleton program that is properly translating coordinates, but I&#39;m not that familar with PERL and I&#39;m spending 10x the time trying to do what I want as opposed to PHP which I know very well.&nbsp; I&#39;m looking for the same functionality in PHP, but having a hard time finding it.&nbsp; I just discovered PHP/MapScript, and I hope that it can do what I need, but so far I have not found any samples that I can learn from. I have PHP/MapScript installed and working, It&#39;s drawing maps and processing shp files.<br>
<br>Here&#39;s a sample of the PERL code that I am using:<br><br>====================================<br>#!/usr/bin/perl<br>use Geo::Proj4;<br>my $proj = Geo::Proj4-&gt;new(init =&gt; &quot;epsg:2269&quot;) or die;<br>my($lon, $lat) = (-122.667591,&nbsp; 45.522973);<br>
my @newLatLon = $proj-&gt;forward($lat, $lon);<br>print &quot;x:&quot;, $newLatLon[0],&quot; y:&quot;, $newLatLon[1],&quot;\n&quot;;<br>====================================<br><br>When run, it returns: x:7646617.87276814 y:684215.14079164<br>
<br>Is there a way to do this in PHP?&nbsp; Is MapScript the way to go, or is there another project that I have not yet found that could do it for me?&nbsp; Any assistance is much appreciated!<br><br>-Ray<br>