In this example we will change the well-known text (WKT) string of a coordinate reference system (CRS) from meters to U.S. feet.
Copy the WKT string of the CRS you would like to modify. The following example uses Maine West, NAD83, meters.
Code: |
PROJCS[“NAD83 / Maine West”, |
First, remove the last two AUTHORITY[] tags that are a part of the UNIT[] parameter; they will no longer apply to the new WKT in US Feet. The end of the WKT should now look like this:
Code: |
PARAMETER["false_northing",0], |
Next, identify the conversion factor and unit name of your preferred unit (US FEET). In this case, the unit name is “Foot_US” and the conversion factor is 0.304800609601219241. Enter these values in the UNIT parameter:
Code: |
UNIT["Foot_US",0.304800609601219241]] |
Divide the values for “false_easting” and “false_northing” by the conversion factor:
900000/0.304800609601219241 = 2952750 (rounded up)
0/0.304800609601219241 = 0
Enter these new values for false easting and northing in the WKT:
Code: |
PARAMETER["false_easting",2952750], |
The new WKT can now be used as a custom WKT in GeoExpress. Here is the completely modified WKT:
Code: |
PROJCS[“NAD83 / Maine West”, |