0% found this document useful (0 votes)
83 views17 pages

LatLon-UTM Conversions

This document provides formulas and programs to convert between latitude/longitude (Lat/Lon) and Universal Transverse Mercator (UTM) coordinate systems. It uses constants for the WGS 84 ellipsoid and a truncated version of Krüger's 1912 formulas. The document defines UTM constants, provides a Lat/Lon to UTM conversion program in 3 lines of code, and a UTM to Lat/Lon conversion program in 4 lines of code. It also notes limitations in the programs and encourages users to check data inputs and outputs.

Uploaded by

love4geology
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
83 views17 pages

LatLon-UTM Conversions

This document provides formulas and programs to convert between latitude/longitude (Lat/Lon) and Universal Transverse Mercator (UTM) coordinate systems. It uses constants for the WGS 84 ellipsoid and a truncated version of Krüger's 1912 formulas. The document defines UTM constants, provides a Lat/Lon to UTM conversion program in 3 lines of code, and a UTM to Lat/Lon conversion program in 4 lines of code. It also notes limitations in the programs and encourages users to check data inputs and outputs.

Uploaded by

love4geology
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

Page 1 of 17

LAT/LON–UTM COORDINATE CONVERSIONS


Based on a truncated version of J.H.L. Krüger's 1912 formulas and WGS 84
FRED LUSK, P.E.

0. ABSTRACT
The purpose of this worksheet is to convert geographic coordinates between latitude/
longitude (Lat/Lon) and Universal Transverse Mercator (UTM). This worksheet provides
separate program functions to convert Lat/Lon coordinates to UTM and UTM coordinates to
Lat/Lon. These two programs and the preliminary calculations for them use a truncated
version of the Transverse Mercator flattening series derived by Johann Heinrich Louis Krüger
in 1912. [1] Results are accurate to about one millimeter within 3,000 km of a UTM Zone's
central meridian. The ellipsoid data in this worksheet is for
(WGS 84), which is very close to (NAD 83). [2,3] This
worksheet provides two data entry methods: internal tables and external Excel spreadsheets.

1. INTRODUCTION
In my work as a civil engineer, I usually control a design with an arbitrary, project-specific
horizontal coordinate system that is tied to section corners, property corners, and/or street
centerlines, but is otherwise independent of a larger, external coordinate system. {1} I have
used the State Plane Coordinate System a few times and sometimes I need to provide a
project's approximate latitude and longitude on some regulatory paperwork. {2} However,
until recently, I had never used UTM coordinates, either professionally or personally, or even
given them much thought. {3}

That changed not long ago when I wanted to plot a set of UTM coordinates in Google Earth.
Although Google Earth can use either Lat/Lon or UTM, Lat/Lon (especially in decimal degrees)
is faster to enter because it only requires two pieces of data, while UTM requires four.
Besides, I find it easier to think in terms of Lat/Lon when working with a globe. So, I began
searching for ways to convert UTM to Lat/Lon. {4} In my search, I found several online
calculators that can handle one coordinate point at a time, a downloadable Excel Spreadsheet
that can handle bulk data, and a nifty little freeware program called that can
handle both individual and bulk data for coordinate conversions in both directions. {5}

But, where is the fun in that? This task cried out for a Mathcad worksheet. As part of my
research into this subject, I learned that several mathematical methods have been published
over the years for converting between Lat/Lon and UTM. All of these methods provide
millimeter or greater accuracy, which is far better than I need for Google Earth and is even
sufficient for most field surveying. I chose the truncated Krüger series primarily because the
presentation of it in Wikipedia [1] made for the easiest translation into a Mathcad worksheet.
I found one slightly simpler mathematical method, but the only source I found for it neglected
to define one of the variables. I found more accurate methods (a moot point for my
purposes), but the sources were mostly academic papers, which required plowing through
page after page of text and intermediate derivations to extract the relevant formulas. Kudos
to the author of [1] for a clean and concise presentation and a good list of references.

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 2 of 17

2. UTM CONSTANTS (WGS 84) [1]


Equatorial radius: a ≔ 6378137

1
Flattening: r ≔ 298.257223563 f ≔ ―= 0.0033528
r
Central meridian scale factor: k0 ≔ 0.9996

False Easting: E0 ≔ 500000

False Northing: 7
[ N0 = 0 m or N0 = 10 m , see programs below ]

Calculated Constants
The results for these formulas are diplayed for information only. These results were useful for debugging the
worksheet, but can otherwise be ignored.

f a ⎛ 1 2 1 4⎞
n ≔ ―― A ≔ ――⋅ ⎜1 + ―⋅ n + ― ⋅ n ⎟
2−f 1+n ⎝ 4 64 ⎠
−3
n = 1.67922039 ⋅ 10 A = 6367449.146

1 2 2 5 3 13 2 3 3 61 3
α ≔ ―⋅ n − ―⋅ n + ― ⋅ n α ≔ ― ⋅ n − ―⋅ n α ≔ ―― ⋅n
1 2 3 16 2 48 5 3 240
−4 −7 −9
α = 8.37731819 ⋅ 10 α = 7.60849696 ⋅ 10 α = 1.20348779 ⋅ 10
1 2 3

1 2 2 37 3 1 2 1 3 17 3
β ≔ ―⋅ n − ―⋅ n + ― ⋅ n β ≔ ―⋅ n + ―⋅ n β ≔ ―― ⋅n
1 2 3 96 2 48 15 3 480
−4 −8 −10
β = 8.37732164 ⋅ 10 β = 5.90611086 ⋅ 10 β = 1.67699118 ⋅ 10
1 2 3

2 2 3 7 2 8 3 56 3
δ ≔ 2 ⋅ n − ―⋅ n − 2 ⋅ n δ ≔ ―⋅ n − ―⋅ n δ ≔ ―⋅ n
1 3 2 3 5 3 15
−3 −6 −8
δ = 3.35655145 ⋅ 10 δ = 6.57191319 ⋅ 10 δ = 1.76774600 ⋅ 10
1 2 3

Please note that the following two program functions for converting between Lat/Long and UTM do not check for
erroneous data. In some cases, erroneous data will return an error, but in other cases it won't. Remember the
GiGo principle and double-check your data entries. For example, latitudes must be between 84°N and 80°S, zones
are numbered 1–60, etc. In addition, a bug in Mathcad Prime 3.0 ( asin ( ) = 0 instead of ) means that
a missing UTM coordinate defined as [ ] produces a latitude of zero (incorrect) and a longitude of
(correct). My sample waterfall data includes such a condition. I chose to not error-trap for erroneous data
and so as to keep the program functions as short and simple as possible.

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 3 of 17

3. LAT/LON to UTM CONVERSION PROGRAM [1]


Provide latitude (+84° to –80°) and longitude (+180° to –180°) in decimal degrees with the
unit attached (otherwise, Mathcad assumes radians). Longitudes east of Greenwich and
latitudes north of the equator are positive and longitudes west of Greenwich and latitudes
south of the equator are negative. For data in degrees–arcminutes–arcseconds format, use
Mathcad's DMS function to convert the data into decimals as shown later in this worksheet.

‖ ⎛ Lon_λ + 180 ⎞ |
LL2UTM (Lat_ϕ , Lon_λ)) ≔ ‖ Zone ← 1 + floor ⎜―――――― ⎟⎠ |
‖ ⎝ 6 |
‖ Hemi ← if Lat_ϕ ≥ 0 | |
‖ ‖ Hemi ← 1 | |
‖ |
‖ else |
‖ | |
‖ Hemi ← −1
‖ ‖ | |
‖ N0 ← if Lat_ϕ ≥ 0 | |
‖ ‖N ←0 | |
‖ ‖ 0 | |
‖ else | |
‖ ‖ 7 |
‖ ‖ N0 ← 10 | |
‖ λ0 ← Zone ⋅ 6 − 183 |
‖ ⎛ ⎛ ⎞⎞ |
‖ t ← sinh ⎜atanh (sin (Lat_ϕ))) − ――― 2 ⋅ ‾‾n 2 ⋅ ‾‾
n
⋅ atanh ⎜――― ⋅ sin (Lat_ϕ))⎟⎟ |
‖ ⎝ 1+n ⎝ 1+n ⎠⎠ |
‖ ⎛ t ⎞ |
‖ ξ' ← atan ⎜―――――― ⎛ ⎞ ⎟ |
⎝ cos ⎝Lon_λ − λ0⎠ ⎠
‖ |
sin ⎛⎝Lon_λ − λ0⎞⎠ ⎞
‖ η' ← atanh ⎛―――――― |
‖ ⎜ ⎟
‾‾‾‾‾2 |
‖ ⎜⎝ 1+t ⎟⎠
3
|
‖ |
σ ← 1 + ∑ ⎛2 ⋅ j ⋅ α ⋅ cos (2 ⋅ j ⋅ ξ')) ⋅ cosh (2 ⋅ j ⋅ η'))⎞
‖ j= 1 ⎝ j ⎠ |
‖ 3 |
‖ τ ← ∑ ⎛2 ⋅ j ⋅ α ⋅ sin (2 ⋅ j ⋅ ξ')) ⋅ sinh (2 ⋅ j ⋅ η'))⎞ |
j=1 ⎝ ⎠
j
‖ |
⎛ 3 ⎞
‖ |
‖ E ← E0 + k0 ⋅ A ⋅ ⎜η' + ∑ ⎛⎝αj ⋅ cos (2 ⋅ j ⋅ ξ')) ⋅ sinh (2 ⋅ j ⋅ η'))⎞⎠⎟ |
⎝ j= 1 ⎠
‖ 3 |
⎛ ⎞
‖ N ← N + k ⋅ A ⋅ ξ' + ∑ ⎛α ⋅ sin (2 ⋅ j ⋅ ξ')) ⋅ cosh (2 ⋅ j ⋅ η'))⎞ |
0 0 ⎜ ⎟
j=1 ⎝ ⎠⎠
‖ ⎝ j
|
‖ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
⎛ 2⎞ 2 2 |
k0 ⋅ A
‖ k ← ―― ⎛1−n ⎞ σ +τ
⋅ ⎜1 + ――⋅ tan (Lat_ϕ)) ⎟ ⋅ ――――――――|
‖ a ⎝ ⎜⎝ 1 + n ⎟⎠ ⎠ 2 2 |
‖ t + ⎝⎛cos ⎝⎛Lon_λ − λ0⎠⎞⎠⎞
|
‖ ⎛ ‾‾‾‾‾ 2 ⎞ |
τ ⋅ 1 + t + σ ⋅ t ⋅ tan ⎛⎝Lon_λ − λ0⎞⎠ ⎟
‖ γ ← atan ⎜――――――――――― |
‖ ⎜ ‾‾‾‾‾ 2 ⎟ |
‖ ⎝ σ ⋅ 1 + t + τ ⋅ t ⋅ tan ⎝⎛Lon_λ − λ0⎠⎞ ⎠
|
‖ [ Zone Hemi E N ] |

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 4 of 17

4. UTM to LAT/LON CONVERSION PROGRAM [1]


UTM coordinates are specified by Zone, Hemisphere, Easting, and Northing. Consult a UTM
grid map for the correct Zone (1–60). Use 1 for the Northern Hemisphere and anything else
(preferably –1) for the Southern Hemisphere. Eastings and Northings are usually in meters.
This program returns the Latitude and Longitude in decimal degrees. With modest effort,
decimal degrees can be converted to degrees–arcminutes–arcseconds if needed, but that
functionality is not included in this worksheet.

UTM2LL (Zone , Hemi , E , N)) ≔ ‖ N0 ← if Hemi = 1 | |


‖ ‖N ←0 | |
‖ ‖ 0 | |
‖ else | |
‖ ‖ 7 |
‖ ‖ N0 ← 10 | |
‖ N − N0 |
‖ ξ ← ――― |
‖ k0 ⋅ A |
‖ E − E0 |
η ← ―――
‖ k0 ⋅ A |
‖ 3 |
‖ ξ' ← ξ − ∑ ⎛β ⋅ sin (2 ⋅ j ⋅ ξ)) ⋅ cosh (2 ⋅ j ⋅ η))⎞ |
‖ j= 1 ⎝ ⎠
j |
‖ 3 |
‖ η' ← η − ∑ ⎛βj ⋅ cos (2 ⋅ j ⋅ ξ)) ⋅ sinh (2 ⋅ j ⋅ η))⎞ |
j=1 ⎝ ⎠
‖ |
3
‖ |
σ' ← 1 − ∑ ⎛2 ⋅ j ⋅ β ⋅ cos (2 ⋅ j ⋅ ξ)) ⋅ cosh (2 ⋅ j ⋅ η))⎞
‖ j=1 ⎝ j ⎠ |
‖ 3 |
‖ τ' ← ∑ ⎛2 ⋅ j ⋅ β ⋅ sin (2 ⋅ j ⋅ ξ)) ⋅ sinh (2 ⋅ j ⋅ η))⎞ |
j= 1 ⎝ ⎠
j
‖ |
‖ χ ← asin ⎛ sin (ξ')) ⎞ |
‖ ⎜⎝―――
cosh (η')) ⎟⎠ |
‖ 3 |
‖ Lat_ϕ ← χ + ∑ ⎛δ ⋅ sin (2 ⋅ j ⋅ χ))⎞ |
j=1 ⎝ ⎠
j
‖ |
‖ λ0 ← Zone ⋅ 6 − 183 |
‖ ⎛ sinh (η')) ⎞ |
‖ Lon_λ ← λ0 + atan ⎜―――⎟ |
⎝ cos (ξ')) ⎠
‖ |
‖ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
⎛ 2⎞ 2 2
k0 ⋅ A ⎛1−n ⎞ (cos (ξ'))) + (sinh (η'))) |
‖ k ← ――⋅ ⎜1 + ⎜――⋅ tan (Lat_ϕ))⎟ ⎟ ⋅ ―――――――― 2 2 |
‖ a ⎝ ⎝1+n ⎠ ⎠ (σ')) + (τ')) |
‖ ⎛ τ' + σ' ⋅ tan (ξ')) ⋅ tanh (η')) ⎞ |
γ ← Hemi ⋅ atan ⎜――――――――
‖ ⎝ σ' − τ' ⋅ tan (ξ')) ⋅ tanh (η')) ⎟⎠ |
‖ [ Lat_ϕ Lon_λ ]
‖ |

NOTE: In both preceding program functions, the Point Scale Factor ( k ) and the Meridian Convergence ( γ ) are
calculated, but are not included in the output. This is because [ Lat_ϕ Lon_λ ] and [ Zone Hemi E N ] are all
I need. The calculations for k and γ are provided for those who may want them. To include these two additional
results in the output, simply insert their variables into the arrays in the last line of each program function. Also,
some of the following procedures would need to be modified if k and γ are included in the ouput array.

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 5 of 17

5. VERIFY PROGRAMS USING THE SAMPLE DATA FROM WIKIPEDIA [1]


Wikipedia lists the following geographic coordinates for Toronto's CN Tower. Use these
coordinates to verify that the above program functions work properly by doing double-
conversions with each type of coordinate. The two coordinates sets are not an exact match
for each other, so I won't compare them directly. The results are displayed to 10 to 15
decimal places for visual comparisons. (The number of decimal places is determined partly by
how soon trailing zeros begin to show up and partly due to available page width.)
T
Lat/Lon: LatCN ≔ [ 43 38 33.24 ] LatCNd ≔ ⎛⎝LatCN⎞⎠ = 43.642566666666700
T
LonCN ≔ −[ 79 23 13.7 ] LonCNd ≔ ⎛⎝LonCN⎞⎠ = −79.387138888888900

UTM: ZoneCN ≔ 17 HemiCN ≔ 1


ECN ≔ 630084 NCN ≔ 4833438 BTW, Google Earth uses 2 decimal places.

Lat/Lon to UTM to Lat/Lon (double conversion error, step by step)


UTMCN1 ≔ LL2UTM ⎛⎝LatCNd , LonCNd⎞⎠
UTMCN1ZH ≔ ⎡ UTMCN1 UTMCN1 ⎤ = [ 17 1 ]
1,1 1,2
⎣ ⎦
UTMCN1EN ≔ ⎡ UTMCN1 UTMCN1 ⎤ = [ 630084.3105136420 4833438.5487802200 ]
1,3 1,4
⎣ ⎦
Note: the Wikipedia author should have rounded up his Northing by 1 meter.

LLCN1 ≔ UTM2LL ⎛UTMCN1 , UTMCN1 , UTMCN1 , UTMCN1 ⎞


1,1 1,2 1,3 1,4
⎝ ⎠
LLCN1 = [ 43.642566664214200 −79.387138888901900 ]

LL_ErrCN1 ≔ LLCN1 − ⎡⎣ LatCNd LonCNd ⎤⎦ = [ −0.000000002452494 −0.000000000013002 ]


Compare with T⎞
Excellent results, with
⎛ double conversion
0.01 arcsec: ⎝[ 0 0 0.01 ] ⎠ = 0.000002777777778
errors that are several
LL_ErrCN1 orders of magnitude
Percent difference: ――――――= [ −0.000000005619% 0.000000000016% ] smaller than one arcsec.
⎡⎣ LatCNd LonCNd ⎤⎦

Lat/Lon to UTM to Lat/Lon (double conversion error by program function)


LL_Err (Lat_ϕ , Lon_λ) ≔ ‖ U ← LL2UTM (Lat_ϕ , Lon_λ)
‖ L ← UTM2LL ⎛U , U , U , U ⎞
‖ ⎝ 1 , 1 1 , 2 1 , 3 1 , 4⎠
‖ Err ← ⎡ L L ⎤ − [ Lat_ϕ Lon_λ ]
‖ ⎣ 1,1 1,2⎦ |

LL_Err ⎛⎝LatCNd , LonCNd⎞⎠ = [ −0.000000002452494 −0.000000000013002 ]

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 6 of 17

UTM to Lat/Lon to UTM (double conversion error, step by step)


LLCN2 ≔ UTM2LL ⎛⎝ZoneCN , HemiCN , ECN , NCN⎞⎠
LLCN2 = [ 43.642561779227700 −79.387142869499400 ]

UTMCN2 ≔ LL2UTM ⎛LLCN2 , LLCN2 ⎞


1,1 1,2
⎝ ⎠
UTMCN2ZH ≔ ⎡ UTMCN2 UTMCN2 ⎤ = [ 17 1 ]
1,1 1,2
⎣ ⎦

UTMCN2EN ≔ ⎡ UTMCN2 UTMCN2 ⎤ = [ 630084.0000042450 4833437.9997276000 ]


1,3 1,4
⎣ ⎦

UTM_ErrCN2 ≔ UTMCN2EN − ⎡⎣ ECN NCN ⎤⎦ = [ 0.004244502633810 −0.272401608526707 ]

UTM_ErrCN2Hyp ≔ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
2 2
⎛UTM_ErrCN2 ⎞ + ⎛UTM_ErrCN2 ⎞ = 0.2724
1,1 1,2
⎝ ⎠ ⎝ ⎠
Excellent results that are almost 4x
better than the promised 1 mm.
UTM to Lat/Lon to UTM (double conversion error by program function)
UTM_Err (Z , H , E , N) ≔ ‖ L ← UTM2LL (Z , H , E , N)
‖ U ← LL2UTM ⎛L , L ⎞
‖ ⎝ 1 , 1 1 , 2⎠
‖ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
2 2
‖ Err ← ⎛U1 , 3 − E⎞ + ⎛U1 , 4 − N⎞
‖ ⎝ ⎠ ⎝ ⎠

UTM_Err ⎛⎝ZoneCN , HemiCN , ECN , NCN⎞⎠ = 0.2724

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 7 of 17

6. APPLY PROGRAMS TO MISCELLANEOUS POINTS FROM GOOGLE EARTH


For each point, the same placemark was used to read both Lat/Lon and UTM. Results are
formatted to match the number of decimal places provided by Google Earth (GE).
Data Points
"MI" = Midway Islands (center of three tanks just north of runway on Sand Island)
"DH" = Deadhorse, Alaska (intersection of Deadhorse Way & Airport Drive)
"CV" = Curry Village in Yosemite National Park (NE'ly corner of swimming pool)
"GL" = Gatun Locks on the Panama Canal (north end of lock divider)
"ST" = Stanley, Falkland Islands (NW'ly corner of jetty at base of Philomel St.)
"G1" = Greenwich, England (center of Royal Observatory)
"G2" = Greenwich, England (center of Pavilion Tea House, ~84 m E of "G1" but in a different zone)
"KR" = Kigali, Rwanda (monument in center of KN1 Roundabout)
"RE" = St. Denis, Reunion Island (east end of main runway, SE'ly corner of pavement)
"SP" = Singapore (Sentosa Island, center of Cove Way cul-de-sac)
"MC" = McMurdo Station, Antarctica (intersection of Sea View Ave. & Willy Field Rd.)
"KF" = Kioa Island, Fiji (SW'ly corner of Kioa Community Hall)
PGE LatGE LonGE ZGE HGE EGE NGE
( ) ( ) ( ) ( )
“MI” 28.203416 −177.385098 1 1 462207.38 3119796.16 These points have been
“DH” 70.199839 −148.462073 6 1 444730.16 7788822.48 selected randomly, but
randomly with a plan.
“CV” 37.737175 −119.570822 11 1 273466.28 4179766.39 These points are a
“GL” 9.282083 −79.921734 17 1 618429.95 1026218.49 representative sampling
of UTM zones from 1 to
“ST” −51.691434 −57.856565 21 −1 440793.41 4272933.19 60 and of locations
ranging from the middle
“G1” 51.476847 −0.000515 30 1 708286.68 5707121.39
of the zones to the
“G2” 51.476757 0.000679 31 1 291724.30 5707110.92 extreme limits. These
coordinates were plotted
“KR” −1.944056 30.061922 36 −1 173108.47 9784838.06
December 11, 2014.
“RE” −20.892562 55.534760 40 −1 347598.17 7689047.70 Future image updates in
Google Earth could shift
“SP” 1.240091 103.837210 48 1 370631.76 137095.94
the described locations.
“MC” −77.844335 166.664215 58 −1 539114.53 1358447.25
“KF” −16.669050 179.902187 60 −1 809566.59 8154805.42 i≔ ‥ last ⎛⎝PGE⎞⎠

84 −180 180
90

60

30

0
-180 -150 -120 -90 -60 -30 0 30 60 90 120 150 180 LatGE ( )
-30

−80 -60

-90

LonGE ( )

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 8 of 17

Calculations
――――――――――→
Lat/Lon from GE placemark UTM: LLGE ≔ UTM2LL ⎛⎝ZGE , HGE , EGE , NGE⎞⎠

Google Earth LL conversion "error": LL_ErrGE1 ≔ ⎡ LatGE LonGE ⎤ − LLGE


i i i i
⎣ ⎦

――――――――→
UTM from GE placemark Lat/Lon: UTMGE ≔ LL2UTM ⎛⎝LatGE , LonGE⎞⎠

⟨3⟩⟩ ⟨4⟩⟩
Google Earth UTM conversion "error": UTM_ErrGE1 ≔ ⎡ EGE NGE ⎤ − ⎡ ⎛UTMGE ⎞ ⎛UTMGE ⎞ ⎤
i
⎣ i i
⎦ ⎢ ⎜⎝ i ⎟⎠1 ⎜⎝ i ⎟⎠1 ⎥
⎣ ⎦

―――――――→
Lat/Lon double conversion error: LL_ErrGE2 ≔ LL_Err ⎛⎝LatGE , LonGE⎞⎠

――――――――――→
UTM double conversion error: UTM_ErrGE2 ≔ UTM_Err ⎛⎝ZGE , HGE , EGE , NGE⎞⎠

Results
GE placemark Lat/Lon Lat/Lon from GE placemark UTM

⎡ “MI” ⎤ ⎡ ⎡ 28.203416 ⎤ ⎡ −177.385098 ⎤ ⎤ ⎡ ⎡⎣ 28.203416 −177.385098 ⎤⎦ ⎤


⎢ “DH” ⎥ ⎢ ⎢ 70.199839 ⎥ ⎢ −148.462073 ⎥ ⎥ ⎢ ⎡⎣ 70.199839 −148.462073 ⎤⎦ ⎥
⎢ “CV” ⎥ ⎢ ⎢ 37.737175 ⎥ ⎢ −119.570822 ⎥ ⎥ ⎢ ⎡⎣ 37.737175 −119.570822 ⎤⎦ ⎥
⎢ “GL” ⎥ ⎢ ⎢ 9.282083 ⎥ ⎢ −79.921734 ⎥ ⎥ ⎢ ⎡⎣ 9.282083 −79.921734 ⎤⎦ ⎥
⎢ “ST” ⎥ ⎢ ⎢ −51.691434 ⎥ ⎢ −57.856565 ⎥ ⎥ ⎢ ⎡⎣ −51.691434 −57.856565 ⎤⎦ ⎥
⎢ “G1” ⎥ ⎢ ⎢ 51.476847 ⎥ ⎢ −0.000515 ⎥ ⎥ ⎢ ⎡⎣ 51.476847 −0.000515 ⎤⎦ ⎥
PGE = ⎢ ⎡⎣ LatGE LonGE ⎤⎦ = ⎢ ⎢ LLGE = ⎢
“G2” ⎥ 51.476757 ⎥ ⎢ 0.000679 ⎥ ⎥ [ 51.476757 0.000679 ]

⎢ ⎥ ⎢⎢ ⎥ ⎢ ⎥⎥ ⎢ ⎥
“KR” −1.944056 30.061922 ⎡⎣ −1.944056 30.061922 ⎤⎦
⎢ ⎥ ⎢⎢ ⎥ ⎢ ⎥⎥ ⎢ ⎥
“RE” −20.892562 55.534760 ⎡⎣ −20.892562 55.534760 ⎤⎦
⎢ ⎥ ⎢⎢ ⎥ ⎢ ⎥⎥ ⎢ ⎥
[ ]
⎢ “SP” ⎥ ⎢ ⎢ 1.240091 ⎥ ⎢ 103.837210 ⎥ ⎥ ⎢ 1.240091 103.837210 ⎥
⎢ “MC” ⎥ ⎢ ⎢ −77.844335 ⎥ ⎢ 166.664215 ⎥ ⎥ ⎢ ⎡⎣ −77.844335 166.664215 ⎤⎦ ⎥
⎣ “KF” ⎦ ⎣ ⎣ −16.669050 ⎦ ⎣ 179.902187 ⎦ ⎦ ⎣ ⎡⎣ −16.669050 179.902187 ⎤⎦ ⎦

GE Lat/Lon conversion "error"

⎡ “MI” ⎤ ⎡ ⎡⎣ 0.000000008508432 −0.000000048830115 ⎤⎦ ⎤


⎢ “DH” ⎥ ⎢ ⎡⎣ −0.000000232156968 0.000000378108361 ⎤⎦ ⎥
⎢ “CV” ⎥ ⎢ [ 0.000000018573263 0.000000048585136 ] ⎥
⎢ “GL” ⎥ ⎢ ⎡⎣ −0.000000009708661 −0.000000021328863 ⎤⎦ ⎥
⎢ “ST” ⎥ ⎢ ⎡⎣ −0.000000044565264 −0.000000001553027 ⎤⎦ ⎥
⎢ “G1” ⎥ ⎢ ⎡⎣ 0.000000025986239 −0.000000028508032 ⎤⎦ ⎥
PGE = ⎢ LL_ErrGE1 = ⎢
“G2” ⎥ ⎡⎣ −0.000000001067547 −0.000000030363110 ⎤⎦ ⎥
⎢ ⎥ ⎢ ⎥
“KR” ⎡⎣ −0.000000031261980 −0.000000027895506 ⎤⎦
⎢ ⎥ ⎢ ⎥
“RE” ⎡⎣ −0.000000014415947 −0.000000005604360 ⎤⎦
⎢ ⎥ ⎢ ⎥
⎡⎣ ⎤⎦
⎢ “SP” ⎥ ⎢ 0.000000031105896 −0.000000038513197 ⎥
⎢ “MC” ⎥ ⎢ ⎡⎣ −0.000000031248097 0.000000109330066 ⎤⎦ ⎥
⎣ “KF” ⎦ ⎣ ⎡⎣ 0.000000041897316 −0.000000007894315 ⎤⎦ ⎦

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 9 of 17

GE placemark UTM UTM from GE placemark Lat/Lon

⎡ “MI” ⎤ ⎡ ⎡ 462207.38 ⎤ ⎡ 3119796.16 ⎤ ⎤ ⎡ [ 1.00 1.00 462207.38 3119796.16 ] ⎤


⎢ “DH” ⎥ ⎢ ⎢ 444730.16 ⎥ ⎢ 7788822.48 ⎥ ⎥ ⎢ [ 6.00 1.00 444730.17 7788822.45 ] ⎥
⎢ “CV” ⎥ ⎢ ⎢ 273466.28 ⎥ ⎢ 4179766.39 ⎥ ⎥ ⎢ [ 11.00 1.00 273466.28 4179766.39 ] ⎥
⎢ “GL” ⎥ ⎢ ⎢ 618429.95 ⎥ ⎢ 1026218.49 ⎥ ⎥ ⎢ [ 17.00 1.00 618429.95 1026218.49 ] ⎥
⎢ “ST” ⎥ ⎢ ⎢ 440793.41 ⎥ ⎢ 4272933.19 ⎥ ⎥ ⎢ ⎡⎣ 21.00 −1.00 440793.41 4272933.19 ⎤⎦ ⎥
⎢ “G1” ⎥ ⎢ ⎢ 708286.68 ⎥ ⎢ 5707121.39 ⎥ ⎥ ⎢ [ 30.00 1.00 708286.68 5707121.39 ] ⎥
PGE = ⎢ ⎡⎣ EGE NGE ⎤⎦ = ⎢ ⎢ UTMGE = ⎢
“G2” ⎥ 291724.30 ⎥ ⎢ 5707110.92 ⎥ ⎥
[ 31.00 1.00 291724.30 5707110.92 ] ⎥
⎢ ⎥ ⎢⎢ ⎥ ⎢ ⎥⎥ ⎢ ⎥
“KR” 173108.47 9784838.06 ⎡⎣ 36.00 −1.00 173108.47 9784838.06 ⎤⎦
⎢ ⎥ ⎢⎢ ⎥ ⎢ ⎥⎥ ⎢ ⎥
“RE” 347598.17 7689047.70 ⎡⎣ 40.00 −1.00 347598.17 7689047.70 ⎤⎦
⎢ ⎥ ⎢⎢ ⎥ ⎢ ⎥⎥ ⎢ ⎥
[ ]
⎢ “SP” ⎥ ⎢ ⎢ 370631.76 ⎥ ⎢ 137095.94 ⎥ ⎥ ⎢ 48.00 1.00 370631.76 137095.94 ⎥
⎢ “MC” ⎥ ⎢ ⎢ 539114.53 ⎥ ⎢ 1358447.25 ⎥ ⎥ ⎢ ⎡
⎣ 58.00 −1.00 539114.53 1358447.25 ⎤⎦ ⎥
⎣ “KF” ⎦ ⎣ ⎣ 809566.59 ⎦ ⎣ 8154805.42 ⎦ ⎦ ⎣ ⎡⎣ 60.00 −1.00 809566.59 8154805.42 ⎤⎦ ⎦

GE UTM conversion "error"

⎡ “MI” ⎤ ⎡ ⎡⎣ 4.7873 −1.3401 ⎤⎦ ⎤ Google Earth's conversions between Lat/Lon and UTM
⎢ “DH” ⎥ ⎢ ⎡⎣ −13.6667 26.2056 ⎤⎦ ⎥ are very close to my own calculations using the
⎢ “CV” ⎥ ⎢ ⎡⎣ −4.3460 −2.0571 ⎤⎦ ⎥ truncated Krüger series. The "error" between the two
⎢ “GL” ⎥ ⎢ [ 2.3403 1.1463 ] ⎥ isn't really an error, just a difference between my
⎢ “ST” ⎥ ⎢ [ 0.0588 4.2593 ] ⎥
method and Google Earth's method, and is measured
⎢ “G1” ⎥ ⎢ ⎡⎣ 2.0645 −2.1155 ⎤⎦ ⎥
PGE = ⎢ UTM_ErrGE1 = ⎢ in tiny fractions of a degree and in millimeters. Part of
“G2” ⎥ [ 2.1460 0.7248 ]

this "error" is no doubt due to Google Earth's rounded
⎢ ⎥ ⎢ ⎥

“KR”
⎥ ⎢
[ 3.0970 3.4366 ]
⎥ off values for Lat/Lon and UTM. BTW, I used the word
“RE” [ 0.5652 1.8305 ] "error" (in quotes) because it's shorter than
⎢ ⎥ ⎢ ⎥
⎡⎣ ⎤⎦
⎢ “SP” ⎥ ⎢ 4.2826 −3.4221 ⎥ "difference" and thus fit better where I needed to use
⎢ “MC” ⎥ ⎢ ⎡⎣ −2.4612 3.9112 ⎤⎦ ⎥ it in this worksheet.
⎣ “KF” ⎦ ⎣ ⎡⎣ 0.7783 −4.5629 ⎤⎦ ⎦

Lat/Lon double conversion error UTM double conversion error

⎡ “MI” ⎤ ⎡ [ 0.0000000034511 0.0000000000059 ] ⎤ ⎡ 0.3823 ⎤


⎢ “DH” ⎥ ⎢ ⎡⎣ 0.0000000001896 −0.0000000000859 ⎤⎦ ⎥ ⎢ 0.0214 ⎥
⎢ “CV” ⎥ ⎢ [ 0.0000000010243 0.0000000000495 ] ⎥ ⎢ 0.1138 ⎥
⎢ “GL” ⎥ ⎢ ⎡⎣ −0.0000000005931 −0.0000000000081 ⎤⎦ ⎥ ⎢ 0.0656 ⎥
⎢ “ST” ⎥ ⎢ ⎡⎣ 0.0000000062787 −0.0000000000203 ⎤⎦ ⎥ ⎢ 0.6983 ⎥
⎢ “G1” ⎥ ⎢ ⎡⎣ −0.0000000062305 0.0000000000681 ⎤⎦ ⎥ ⎢ 0.6933 ⎥
PGE = ⎢ LL_ErrGE2 = ⎢ UTM_ErrGE2 = ⎢
“G2” ⎥ ⎡⎣ −0.0000000062304 −0.0000000000681 ⎤⎦ ⎥ 0.6933 ⎥
⎢ ⎥ ⎢ ⎥ ⎢ ⎥
“KR” [ 0.0000000002603 0.0000000000305 ] 0.0290
⎢ ⎥ ⎢ ⎥ ⎢ ⎥
“RE” ⎡⎣ −0.0000000020717 0.0000000000114 ⎤⎦ 0.2294
⎢ ⎥ ⎢ ⎥ ⎢ ⎥
⎡⎣ ⎤⎦
⎢ “SP” ⎥ ⎢ −0.0000000001683 0.0000000000121 ⎥ ⎢ 0.0186 ⎥
⎢ “MC” ⎥ ⎢ ⎡⎣ −0.0000000031579 0.0000000000531 ⎤⎦ ⎥ ⎢ 0.3524 ⎥
⎣ “KF” ⎦ ⎣ ⎡⎣ −0.0000000008045 −0.0000000000167 ⎤⎦ ⎦ ⎣ 0.0891 ⎦

The double conversion errors from these somewhat randomly selected points are nearly as
good as to better than those produced with Wikipedia's single data point. At this point, I can
confidently state the obvious: the truncated Krüger series handles Lat/Lon to UTM and UTM
to Lat/Long conversions extremely well and with much more accuracy than I need for use
with Google Earth. Now on to the waterfall data.

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 10 of 17

7. YELLOWSTONE WATERFALLS – UTM DATA IN MATHCAD TABLES [12]


Waterfall numbering and groupings follow exactly the organization in [12]. Since it is easier
to handle large amounts of data with an Excel spreadsheet, I am limiting direct entry using
Mathcad tables to the first 21 waterfalls in the book (The Frontcountry, Lower Loop). These
waterfalls are split into five tables based on the book's third outline level. {6}

Data
Table 1-01-01 (Falls 01-05)
The Frontcountry, Lower Loop, West Thumb to Madison Junction
No10101 Name10101 Zone10101 Hemi10101 East10101 North10101
( ) ( )
1 “Kepler Cascades” 12 1 515460 4921222
2 “Cascade Falls” 12 1 512470 4924431
3 “Unfaithfull Falls” 12 1 510320 4924426
4 “Cascades of the Firehole” 12 1 511515 4940171
5 “Firehole Falls” 12 1 510858 4941739

Table 1-01-02 (Falls 06-10)


The Frontcountry, Lower Loop, Madison Junction to Canyon
No10102 Name10102 Zone10102 Hemi10102 East10102 North10102
( ) ( )
6 “Gibbon Falls” 12 1 518230 4944351
7 “[ UN – DS of # 6]” 12 1 NaN NaN
8 “Lower Gibbon River Rapids” 12 1 520795 4950755
9 “Upper Gibbon River Rapids” 12 1 521017 4950872
10 “Virginia Cascade” 12 1 527914 4950947

Table 1-01-03 (Falls 11-14)


The Frontcountry, Lower Loop, Canyon to Lake
No10103 Name10103 Zone10103 Hemi10103 East10103 North10103
( ) ( )
10 “Virginia Cascade” 12 1 527914 4950947
11 “Lower Falls of the Yellowstone” 12 1 539977 4951546
12 “Upper Falls of the Yellowstone” 12 1 539696 4950973
13 “Crystal Falls” 12 1 539547 4951380
14 “Red Rock Cascade” 12 1 540617 4951729

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 11 of 17

Table 1-01-04 (Falls 15-17)


The Frontcountry, Lower Loop, East Entrance

No10104 Name10104 Zone10104 Hemi10104 East10104 North10104


( ) ( )
15 “Crecelius Cascade” 12 1 568538 4924028
16 “Talus Falls” 12 1 539366 4923474
17 “Sylvan Falls” 12 1 574131 4924179

Table 1-01-05 (Falls 18-21)


The Frontcountry, Lower Loop, South Entrance

No10105 Name10105 Zone10105 Hemi10105 East10105 North10105


( ) ( )
18 “Lewis Canyon” 12 1 529012 4901443
19 “Lewis Canyon Falls (Upper)” 12 1 527758 4896913
20 “Lewis Canyon Falls (Lower)” 12 1 527688 4896094
21 “Moose Falls” 12 1 526237 4888580

Convert Lat/Lon to UTM


――――――――――――――――→
N10101 ≔ ⎡⎣ No10101 Name10101 ⎤⎦ LL10101 ≔ UTM2LL ⎛⎝Zone10101 , Hemi10101 , East10101 , North10101⎞⎠

――――――――――――――――→
N10102 ≔ ⎡⎣ No10102 Name10102 ⎤⎦ LL10102 ≔ UTM2LL ⎛⎝Zone10102 , Hemi10102 , East10102 , North10102⎞⎠

――――――――――――――――→
N10103 ≔ ⎡⎣ No10103 Name10103 ⎤⎦ LL10103 ≔ UTM2LL ⎛⎝Zone10103 , Hemi10103 , East10103 , North10103⎞⎠

――――――――――――――――→
N10104 ≔ ⎡⎣ No10104 Name10104 ⎤⎦ LL10104 ≔ UTM2LL ⎛⎝Zone10104 , Hemi10104 , East10104 , North10104⎞⎠

――――――――――――――――→
N10105 ≔ ⎡⎣ No10105 Name10105 ⎤⎦ LL10105 ≔ UTM2LL ⎛⎝Zone10105 , Hemi10105 , East10105 , North10105⎞⎠

Results

⎡⎡1⎤ ⎡ “Kepler Cascades” ⎤⎤ ⎡ [ 44.444133 −110.805715 ] ⎤


⎢⎢2⎥ ⎢ “Cascade Falls” ⎥⎥ ⎢ [ 44.473081 −110.843212 ] ⎥
N10101 = ⎢ ⎢ 3 ⎥ ⎢ “Unfaithfull Falls” ⎥⎥ LL10101 = ⎢ [ 44.473070 −110.870245 ] ⎥
⎢⎢4⎥ ⎢ “Cascades of the Firehole” ⎥ ⎥ ⎢ [ 44.614798 −110.854868 ] ⎥
⎢⎣ ⎢⎣ 5 ⎥⎦ ⎢⎣ “Firehole Falls” ⎥⎦ ⎥⎦ ⎢⎣ [ 44.628924 −110.863116 ] ⎥⎦

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 12 of 17

⎡⎡ 6⎤ ⎡ “Gibbon Falls” ⎤⎤ ⎡ [ 44.652289 −110.770086 ] ⎤


⎢⎢ 7⎥ ⎢ “[ UN – DS of # 6]” ⎥⎥ ⎢ [ 0.000000 ] ⎥
N10102 = ⎢ ⎢ 8 ⎥ ⎢ “Lower Gibbon River Rapids” ⎥ ⎥ ⎢
LL10102 = [ 44.709870 −110.737477 ] ⎥
⎢⎢ 9⎥ ⎢ “Upper Gibbon River Rapids” ⎥ ⎥ ⎢ [ 44.710917 −110.734669 ] ⎥
⎢⎣ ⎢⎣ 10 ⎥⎦ ⎢⎣ “Virginia Cascade” ⎥⎦ ⎥⎦ ⎢⎣ [ 44.711357 −110.647595 ] ⎥⎦

⎡ ⎡ 10 ⎤ ⎡ “Virginia Cascade” ⎤⎤ ⎡ [ 44.711357 −110.647595 ] ⎤


⎢ ⎢ 11 ⎥ ⎢ “Lower Falls of the Yellowstone” ⎥ ⎥ ⎢ [ 44.716178 −110.495262 ] ⎥
N10103 = ⎢ ⎢ 12 ⎥ ⎢ “Upper Falls of the Yellowstone” ⎥ ⎥ LL10103 = ⎢ [ 44.711035 −110.498854 ] ⎥
⎢ ⎢ 13 ⎥ ⎢ “Crystal Falls” ⎥⎥ ⎢ [ 44.714707 −110.500704 ] ⎥
⎢⎣ ⎢⎣ 14 ⎥⎦ ⎢⎣ “Red Rock Cascade” ⎥⎦ ⎥⎦ ⎢⎣ [ 44.717789 −110.487167 ] ⎥⎦

⎡ ⎡ 15 ⎤ ⎡ “Crecelius Cascade” ⎤ ⎤ ⎡ [ 44.466310 −110.138359 ] ⎤


N10104 = ⎢ ⎢ 16 ⎥ ⎢ “Talus Falls” ⎥⎥ LL10104 = ⎢ [ 44.463500 −110.505125 ] ⎥
⎢⎣ ⎢⎣ 17 ⎥⎦ ⎢⎣ “Sylvan Falls” ⎥⎦ ⎥⎦ ⎢⎣ [ 44.467117 −110.068033 ] ⎦⎥

⎡ ⎡ 18 ⎤ ⎡ “Lewis Canyon” ⎤⎤ ⎡ [ 44.265651 −110.636512 ] ⎤


⎢ ⎢ 19 ⎥ ⎢ “Lewis Canyon Falls (Upper)” ⎥ ⎥ ⎢ [ 44.224916 −110.652463 ] ⎥
N10105 = ⎢ ⎢ ⎥ ⎢ “Lewis Canyon Falls (Lower)” ⎥ ⎥ LL10105 = ⎢
20 [ 44.217545 −110.653383 ] ⎥
⎢⎣ ⎢⎣ 21 ⎥⎦ ⎢⎣ “Moose Falls” ⎥⎦ ⎥⎦ ⎢⎣ [ 44.149950 −110.671922 ] ⎥⎦

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 13 of 17

8. YELLOWSTONE WATERFALLS (YW) – UTM DATA FROM EXCEL [12]


The attached Excel spreadsheet lists all 291 waterfalls in [12]. {7} Unfortunately, the authors
did not provide UTM coordinates for #251–#291, which include minor waterfalls (some of
which the authors did not visit, but relied on accounts of others) as well as rumored
waterfalls, plus a few others. To keep this worksheet from growing even bigger, I will extract
only the first 21 waterfalls (to match §7), but I will work with them in one array. However,
since the Excel spreadsheet is complete, it would be trivial to extract them all. After I have
located and placemarked as many of these waterfalls as possible, I plan to use Google Earth's
Lat/Lon coordinates (for the crests) and Mathcad to update the waterfalls' UTM coordinates.
These further steps will not be included in this worksheet.

Raw Data from Excel Spreadsheet


YW ≔ READEXCEL (“.\Yellowstone Waterfalls.xlsx” , “UTM Coords!D4:J24”)

⎡ “1-01-01-01” 1.00 “Kepler Cascades” 12.00 1.00 515460.00 4921222.00 ⎤


⎢ “1-01-01-02” 2.00 “Cascade Falls” 12.00 1.00 512470.00 4924431.00 ⎥
⎢ “1-01-01-03” 3.00 “Unfaithful Falls” 12.00 1.00 510320.00 4924426.00 ⎥
⎢ “1-01-01-04” 4.00 “Cascades of the Firehole” 12.00 1.00 511515.00 4940171.00 ⎥
⎢ “1-01-01-05” 5.00 “Firehole Falls” 12.00 1.00 510858.00 4941739.00 ⎥
⎢ ⎥
“1-01-02-01” 6.00 “Gibbon Falls” 12.00 1.00 518230.00 4944351.00
⎢ ⎥
“1-01-02-02” 7.00 “[ UN – DS of #6 ]” 12.00 1.00
⎢ ⎥
⎢ “1-01-02-03” 8.00 “Gibbon River Rapids (Lower)” 12.00 1.00 520795.00 4950755.00 ⎥
⎢ “1-01-02-04” 9.00 “Gibbon River Rapids (Upper)” 12.00 1.00 521017.00 4950872.00 ⎥
⎢ “1-01-02-05” 10.00 “Virginia Cascade” 12.00 1.00 527914.00 4950947.00 ⎥
YW = ⎢ “1-01-03-01” 11.00 “Lower Falls (Yellowstone)” 12.00 1.00 539977.00 4951546.00 ⎥
⎢ “1-01-03-02” 12.00 “Upper Falls (Yellowstone)” 12.00 1.00 539696.00 4950973.00 ⎥
⎢ “1-01-03-03” 13.00 “Crystal Falls” 12.00 1.00 539547.00 4951380.00 ⎥
⎢ “1-01-03-04” 14.00 “Red Rock Cascade” 12.00 1.00 540617.00 4951729.00 ⎥
⎢ “1-01-04-01” 15.00 “Crecelius Cascade” 12.00 1.00 568538.00 4924028.00 ⎥
⎢ “1-01-04-02” 16.00 “Talus Falls” 12.00 1.00 569366.00 4923474.00 ⎥
⎢ “1-01-04-03” 17.00 “Sylvan Falls” 12.00 1.00 574131.00 4924179.00 ⎥
⎢ “1-01-05-01” 18.00 “Lewis Falls” 12.00 1.00 529012.00 4901443.00 ⎥
⎢ ⎥
“1-01-05-02” 19.00 “Lewis Canyon Falls (Upper)” 12.00 1.00 527758.00 4896913.00
⎢ ⎥
⎢ “1-01-05-03” 20.00 “Lewis Canyon Falls (Lower)” 12.00 1.00 527688.00 4896094.00 ⎥
⎣ “1-01-05-04” 21.00 “Moose Falls” 12.00 1.00 526237.00 4888580.00 ⎦

Extract Data for Calculations


YWname ≔ submatrix (YW , 1 , 21 , 2 , 3))

YWZ ≔ submatrix (YW , 1 , 21 , 4 , 4)) YWH ≔ submatrix (YW , 1 , 21 , 5 , 5))

YWE ≔ submatrix (YW , 1 , 21 , 6 , 6)) YWN ≔ submatrix (YW , 1 , 21 , 7 , 7))

Convert Lat/Lon to UTM


―――――――――――→
LLYW ≔ UTM2LL (YWZ , YWH , YWE , YWN))

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 14 of 17

Results

⎡ 1 “Kepler Cascades” ⎤ ⎡ [ 44.444133 −110.805715 ] ⎤


⎢ 2 “Cascade Falls” ⎥ ⎢ [ 44.473081 −110.843212 ] ⎥
⎢ 3 “Unfaithful Falls” ⎥ ⎢ [ 44.473070 −110.870245 ] ⎥
⎢ 4 “Cascades of the Firehole” ⎥ ⎢ [ 44.614798 −110.854868 ] ⎥
⎢ 5 “Firehole Falls” ⎥ ⎢ [ 44.628924 −110.863116 ] ⎥
⎢ ⎥ ⎢[ ⎥
6 “Gibbon Falls” 44.652289 −110.770086 ]
⎢ ⎥ ⎢ ⎥
7 “[ UN – DS of #6 ]” [ 0.000000 ]
⎢ ⎥ ⎢ ⎥
[ ]
⎢ 8 “Gibbon River Rapids (Lower)” ⎥ ⎢ 44.709870 −110.737477 ⎥
⎢ 9 “Gibbon River Rapids (Upper)” ⎥ ⎢ [ 44.710917 −110.734669 ] ⎥
⎢ 10 “Virginia Cascade” ⎥ ⎢ [ 44.711357 −110.647595 ] ⎥
YWname = ⎢ 11 “Lower Falls (Yellowstone)” ⎥ LLYW = ⎢ [ 44.716178 −110.495262 ] ⎥
⎢ 12 “Upper Falls (Yellowstone)” ⎥ ⎢ [ 44.711035 −110.498854 ] ⎥
⎢ 13 “Crystal Falls” ⎥ ⎢ [ 44.714707 −110.500704 ] ⎥
⎢ 14 “Red Rock Cascade” ⎥ ⎢ [ 44.717789 −110.487167 ] ⎥
⎢ 15 “Crecelius Cascade” ⎥ ⎢ [ 44.466310 −110.138359 ] ⎥
⎢ 16 “Talus Falls” ⎥ ⎢ [ 44.461244 −110.128025 ] ⎥
⎢ 17 “Sylvan Falls” ⎥ ⎢ [ 44.467117 −110.068033 ] ⎥
⎢ 18 “Lewis Falls” ⎥ ⎢ 44.265651 −110.636512 ⎥
[ ]
⎢ ⎥ ⎢ ⎥
19 “Lewis Canyon Falls (Upper)” [ 44.224916 −110.652463 ]
⎢ ⎥ ⎢ ⎥
[ ]
⎢ 20 “Lewis Canyon Falls (Lower)” ⎥ ⎢ 44.217545 −110.653383 ⎥
⎣ 21 “Moose Falls” ⎦ ⎣ [ 44.149950 −110.671922 ] ⎦

This horse has now been slowly beaten to demise. For those of you who need to perform
Lat/Lon–UTM coordinate conversions, I hope you find this worksheet useful.

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 15 of 17

NOTES
{1} Project elevations, conversely, are almost always based on an established external
vertical datum using official benchmarks or at worst a good estimate based on a USGS
1:24,000 quad sheet. This is necessary for evaluation of flood plain issues and to properly
control the site grading and storm drainage designs so that adjoining properties are not
adversely affected.

{2} Lat/Lon is easily estimated using either a USGS 1:24,000 quad sheet or Google Earth.
The USGS quad sheets published after about 1992 also include a UTM grid.

{3} Even though USGS quad sheets have a UTM grid and my Garmin Oregon 450T GPS has
the ability to work in UTM, I have always used Lat/Lon with my GPS. My recent researches
indicate that most emergency services use UTM, so it appears that using UTM with my GPS
makes more sense from here on out.

{4} For years, I have been able to ignore the UTM system and its coordinates, but then a
book about waterfalls forced my hand. You see, one of hobbies is waterfalls. Waterfalls are
my favorite destination for a hike and one of my favorite subjects to photograph. As a life-
long geography buff and a practicing civil engineer specializing in hydraulics, my attraction to
waterfalls is natural.

When I was in college in the late 1970s, I decided to begin a list of waterfalls in California,
augmented by major waterfalls elsewhere. I started in the map library at Fresno State, where
I quickly learned how daunting a task this would be. It takes approximately 2,700 USGS quad
sheets (1:24,000, 7.5x7.5 arcmin) to cover the entire state and the printed USGS gazatteer
for California is inches thick. For the time being, I decided to limit myself to the maps and
atlases in my modest, but growing collection (by 1980, I had about 1,000 printed maps in my
collection, but relatively few topographic maps; today, I estimate my collection at about
3,000 printed maps).

By the late 1980s, I had a personal computer (which made list keeping much easier) and the
Internet was gaining traction. Eventually, the quad sheets and state gazatteers were made
available online, but free time for this project was at a premium due to family and work.
However, I plugged away at it as time permitted and my waterfall tally grew into the
hundreds.

Then came Google Earth, which afforded me the opportunity to make placemarkers for the
waterfalls in my list as well as to cruise around and find waterfalls all over the Earth (often
using Panaramio images as locators). I now have several thousand waterfalls located in
Google Earth. However, my here-and-there project to tally waterfalls pales in comparison to
the World Waterfall Database (http://www.worldwaterfalldatabase.com/), which is the most
extensive waterfall database on the planet (although I have a few waterfalls they don't have).

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 16 of 17

{4, cont.} So, what does this have to with UTM to Lat/Lon conversions? Well, about six
years ago, while on a trip to Yellowstone National Park, I purchased a most excellent book
titled, "The Guide to Yellowstone Waterfalls and Their Discovery," by Paul Rubenstein, Lee H.
Whittlesey, and Mike Stevens [12]. This book begged to have all 291 waterfalls placemarked
in Google Earth. Unfortunately, the authors used UTM and I prefer to use Lat/Lon in Google
Earth. By the time I purchased the book, I had already placemarked more than half of these
waterfalls based on my own knowledge of Yellowstone and by just poking around in Google
Earth. Thus the real purpose for creating this worksheet: to convert waterfall UTMs to Lat/
Lon so I can find the rest of them and placemark them in Google Earth. Those of you with
more important reasons to make Lat/Lon–UTM conversions will also benefit.

{5} can be found on the SurveyDrawing website:


http://www.surveydrawing.net/latitude-longitude-conversion.html

{6} The list of Backcountry waterfalls is so long that splitting the list at the third outline level
would be necessary to keep the tables from being too long to fit on a single page. So, for
consistency, I am using the third outline level here, even though the Frontcountry waterfalls
could just as easily be grouped at the second outline level (21 waterfalls, followed by 11
waterfalls). Another reason to break up the data into smaller chunks is that short tables are
easier than long tables to work with when it comes to page breaks . Here and in my Excel
spreadsheet, I have labeled the tables (and ultimately the waterfalls) using a four-part
numeric system based on the three outline levels in [12], plus the waterfalls. I did not use a
potentially shorter alphanumeric code because I wanted to avoid certain mid-alphabet letters.

{7} The first column read in from the Excel spreadsheet is my four-part code of identifying
the waterfalls in accordance with the organization of [12].

REFERENCES
[1] Universal Transverse Mercator Coordinate System:
http://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system

[2] World Geodetic System:


http://en.wikipedia.org/wiki/World_Geodetic_System

[3] North American Datum:


http://en.wikipedia.org/wiki/North_American_Datum#North_American_Datum_of_1983

[4] United States Geological Survey, Professional Paper 1395, "Map Projections, A Working
Manual," 1987.

[5] Defense Mapping Agency (United States), DMATM 8358.2, DMA Technical Manual, "The
Universal Grids: Universal Transverse Mercator (UTM) and Universal Polar Stereographic
(UPS)," September 1989.

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014


Page 17 of 17

[6] Ordinance Survey (United Kingdom), "The ellipsoid and the Transverse Mercator
projection," Geodetic information paper No. 1, Version 2.2, February 1998.

[7] Kawase, Kazushige, "Consise Derivation of Extensive Coordinate Conversion Formulae in


the Gauss-Krüger Projection," 2012 (?).

[8] Kawase, Kazushige, "A General Formula for Calculating Meridian Arc Length and its
Application to Coordinate Conversion in the Gauss-Krüger Projection," 2012 (?).

[9] Karney, Charles F.F., "Transverse Mercator with an accuracy of a few nanometer," SRI
International, February 3, 2011.

[10] European Petroleum Survey Group, "Guidance Note Number 7, Coordinate Conversions
and Transformations including Formulas," 2003.

[11] Osborne, Peter, "The Mercator Projections, The Normal and Transverse Mercator
Projections on the Sphere and the Ellipsoid with Full Derivation of all Formulae," 2013.

[12] Rubenstein, Paul, Whittlesey, Lee H., and Stevens, Mike, "The Guide to Yellowstone
Waterfalls and Their Discovery," Westcliffe Publishers, Englewood, CO, 2000.

GLOBAL DEFINITIONS
Note: the angular definitions are not used in the worksheet, but are provided in case the user
needs to convert from decimal degrees to degrees–arcminutes–arcseconds.
1 1
≡1 ≡ ≡― ≡―
60 60

Mathcad Prime 3.0 File: LatLon-UTM Conversions.mcdx Saved: 12/16/2014

You might also like