[EMAIL PROTECTED] a écrit :
I am attempting to convert a GPS co-ordinate (WGS84) to an OSGB Easting and Northing (or UTM easting and northing)

The result I am getting : 1.4560519391270995E8, -2.111675354068688E7 does not seem to reflect any of the expected results

You have setup an UTM projection for zone 14, which is valid only for 102°W to 96°W (central meridian = 99°W). Yours WKT seems correct:

... PROJCS["UTM Zone 14N", ... PARAMETER["central_meridian", -99.0],

But in yours code, you try to project a point around 1°W, which is very far from UTM zone 14! This point actually live in zone 30 (central meridian = 3°W).

Try to setup a projection with

... PARAMETER["central_meridian", -3.0]


        Martin.


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Geotools-gt2-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users

Reply via email to