-2

Does anyone have a formula or conversion that will switch my UTM coordinates from Meters to Feet? I found Javascript code that will convert UTM coords in meters to Lat/Long but I will need my UTM in feet before I convert it to Lat/Long.

Kara
  • 6,115
  • 16
  • 50
  • 57
Josh
  • 1,813
  • 4
  • 26
  • 33
  • 4
    You are just looking for a formula for converting metres to feet? 1 metre = 3.280839895 feet. Just curious, if you have UTM in metres and a routine to convert that to lat/lon, why do you need UTM in feet? (I'm pretty sure UTM is defined as being in metres not feet, so in feet it's not really UTM) – Lazarus Apr 21 '10 at 14:58
  • Good God.. I can't believe I missed that. Thanks Lazarus. Can you post that response to the answers so I can give you credit? thanks – Josh Apr 21 '10 at 15:01
  • 1
    I've added it but just glad to help. I've spent many, many hours staring at problem only to have someone else point to the issue without really even reading the code. Some times we can be just too close to the problem space :) – Lazarus Apr 22 '10 at 12:09
  • Sounds like there's something unorthodox with your UTM conversion code if it needs feet (UTM by definition uses metres). An alternative for the transform is to simply use the Proj4JS JavaScript library. Open Source + supports a number of different projections,etc. – winwaed Dec 03 '10 at 13:56

3 Answers3

2

You are just looking for a formula for converting metres to feet? 1 metre = 3.280839895 feet.

Lazarus
  • 41,906
  • 4
  • 43
  • 54
2

Actually, 1 inch is defined to be 25.4 mm, and 1 foot is exactly 12 inches, so 1 foot is exactly 0.3048 m.

Hence 1 m is 1/0.3048 feet, or 3.280839895013123359580052493438320209973753... feet.

kennytm
  • 510,854
  • 105
  • 1,084
  • 1,005
0

Use google to compute these things quickly.

bobobobo
  • 64,917
  • 62
  • 258
  • 363