<div>Hi, Sorry if this has been addressed before, I couldn't see any way to search the archive.</div>
<div> </div>
<div>I want to build the correct paramater list for proj based on this data:</div>
<div>PROJCS["NAD_1983_UTM_Zone_12N",GEOGCS["GCS_North_American_1983",</div>
<div>DATUM["D_North_American_1983",</div>
<div>SPHEROID["GRS_1980",6378137.0,298.257222101]],</div>
<div>PRIMEM["Greenwich",0.0],</div>
<div>UNIT["Degree",0.0174532925199433]],</div>
<div> </div>
<div>PROJECTION["Transverse_Mercator"],</div>
<div>PARAMETER["False_Easting",500000.0],</div>
<div>PARAMETER["False_Northing",0.0],</div>
<div>PARAMETER["Central_Meridian",-111.0],</div>
<div>PARAMETER["Scale_Factor",0.9996],</div>
<div>PARAMETER["Latitude_Of_Origin",0.0],</div>
<div>UNIT["Meter",1.0]]</div>
<div> </div>
<div>I've read the documentation, and since I'm just a newbie to cartography it is all still a little unclear and I need to learn by example.</div>
<div> </div>
<div>Is there any code out there (any language) I could see that takes this kind of input and builds out the paramaters for prj_init()?</div>
<div> </div>
<div>My guess is that it is something like this:</div>
<div>static char *params_in[] = { </div>
<div> "proj=tmerc", </div>
<div> "lat_0=0", </div>
<div> "lon_0=500000", </div>
<div> "units=m" </div>
<div>};</div>
<div>prj_init(4, params_in);</div>
<div> </div>
<div>But that doesn't work :) And I'm sure it is pretty far off.</div>
<div> </div>
<div>Thanks.</div>