I am a newby too so I will share what I have learned lately. You can convert from one srs to the other using the cs2cs tool from proj.4 which is probably already installed if you have gdal. <br><br>To test it I typed this lengthy command all <br>
<br>cs2cs +proj=lcc +lat_1=44.33333333333334 +lat_2=46 +lat_0=43.66666666666666 \<br>+lon_0=-120.5 +x_0=2500000 +y_0=0 +ellps=GRS80 +units=m +to +proj=latlong \<br>+datum=WGS84<br><br>The program starts listening on stdin and I can feed it coordinate pairs in meters for my neighborhood by typing this on a line and hitting &quot;Enter&quot;.<br>
2280696 101184<br><br>It responds on stdout with the pair converted to latlong as I have requested..<br>123d15&#39;36.84&quot;W  44d32&#39;36.644&quot;N 0.000<br><br>Next I use control-D to exit. Then I can go the other direction by adding the -&#39;I&#39; option to the cs2cs command and I feed it the latlong pair. (&#39;-I&#39; just saves me some typing.)  It responded with<br>
2280696.01      101184.01 0.00<br><br>This is reasonably close to what I started with. (What&#39;s 1 cm among friends?)<br><br>To make it work, you would have to know the projection that your FAA chart is in (UTM zone something right?), convert it into the funny format that proj.4 understands, and build a command line. Then you could put your latlong corners into a file, feed them into cs2cs, get the corners back in the FAA space and feed them to the gdal command. Taking a stab at it, for zone 10N where I live I would try this<br>
<br>+proj=utm +zone=10 +north +ellps=GRS80 +units=m<br><br>I looked up the projection stuff with grep because I happen to know the EPSG code for it is 102326. Then I cut and pasted. The latlong part came from google and the cs2cs manpage.<br>
<br>grep 102326 /usr/local/share/proj/esri<br>&lt;102326&gt; +proj=lcc +lat_1=44.33333333333334 +lat_2=46 +lat_0=43.66666666666666 +lon_0=-120.5 +x_0=2500000 +y_0=0 +ellps=GRS80 +units=m  no_defs &lt;&gt;<br><div class="gmail_quote">
<br>Anyway - if I needed to do this TODAY that&#39;s what I would do because it&#39;s now in my meager skill set. Someone inspired by my clumsiness might be inspired now to chime in with a more elegant way to do this.<br>
<br>Hope this helps<br><br>Brian<br></div>