Online UTM to Latitude Longitude converter
- Coordinate Converter Degrees To Decimal
- Excel Convert Coordinates To Decimal
- Decimal Degree To Utm Converter In Excel File
- Decimal Degree To Utm Converter In Excel Spreadsheet
Convert from UTM - Universal Transverse Mercator - coordinates to latitude and longitude coordinates.
Just change the text in brackets (Lat/Long Cell) to point to the DD cell you want to convert to DMS. If you want a different number of decimal places for the seconds add the desired number of 0's after the decimal point in the '00.00' part and also set the '2' to the number of places. Converting Degrees/Minutes/Seconds to Decimal Degrees The following Microsoft Visual Basic for Applications custom function accepts a text string of degrees, minutes, and seconds formatted in the exact same format that the ConvertDegree function returns (for example, 10° 27' 36') and converts it to an angle formatted as a decimal value. The input of the latitude is a decimal number between -89.999999 and 89.999999. If the degree of latitude is given in S as south, the number should be preceded by a minus sign. The input of the longitude is a decimal number between -179.999999 and 1. If the longitude is given in W as west, the number should be preceded by a minus sign. The UTM conversion formulas are not presented here, but the source code in the following section provides some light. Converting coordinates with Java code. This section introduces the source code of a library class that performs coordinate conversion between decimal degrees and UTM. You can press ENTER to calculate UTM in the lat long input box. If you click on the UTM easting and UTM northing input box, it will auto select the value. You can also get the lat long and the UTM values by clicking on the map. World Geodetic System WGS84 standard.
*) Based on the WGS84 Datum - the calculator is valid for the northern hemisphere.
In the UTM coordinate system a grid is used to specify locations on the surface of the Earth. The UTM system is not a single map projection but instead a series of sixty zones. Each zone is based on a specifically defined secant Transverse Mercator projection. The units for both east and north coordinates are meters.
The UTM north coordinate is the projected distance from equator for all zones. The east coordinate is the distance from the central median.
European Reference System - ETRS89
Note that the World Geodetic System WGS84 and the European Reference System ETRS89 are virtually identical and that coordinate transformation between the two systems in practical navigation is unnecessary. However, for high-precision surveying work - be aware that the two systems deviates more than half a meter.
Convert a List of UTM Coordinates
You can use the tool below to convert a list of many UTM coordinate points to their latitude and longitude values.
Replace the coordinates below with a comma separated (CSV) list with one UTM point on every line. Click 'Convert!' to add latitude and longitude to the coordinates.

Note! - keep the first line in the text box untouched. if the converter outputs strange coordinates - check the sequence of input values (north first).
Copy the list with the latitude and longitude values and paste it into a spreadsheet, a text editor - or whatever you prefer - for further processing.
Tip! - If you have a csv list (or file) where the sequence of the input coordinates are in wrong order - open the csv list (or file) in a spreadsheet - move the columns with the coordinates to the right position according the required sequence - save the spreadsheet as a new csv file - open the csv file in a simple text editor - copy and paste the list into the input field above - Convert! The converter is valid for the northern hemisphere.
Related Topics

- Miscellaneous - Engineering related topics like Beaufort Wind Scale, CE-marking, drawing standards and more
Related Documents
- Acceleration of Gravity vs Latitude and Elevation - Variation of acceleration of gravity due to latitude and elevation above sea level
- Builder's to Surveyor's Measurements - Convert builder's measurements to surveyor's measurements
- Convert between Polar and Cartesian Coordinates - Cartesian and Polar coordinate converting
- Distance between Two 3D Points - Distance between two points in a three dimension coordinate system - online calculator
- Latitude and Longitude Converter - Convert between Degrees, Minutes and Seconds and Decimal Units (or vice versa)
- Minutes to Decimal Hours - Converting minutes to descimal hours
- Minutes to Degrees - Converting Chart - Convert from minutes to degrees
- Solar Radiation - Daily Surface Energy - Daily surface energy from solar radiation

Tag Search
- en: utm coordinates latitude longitude
- es: coordenadas UTM latitud y longitud
- de: UTM-Koordinaten Breite Länge
How to convert decimal degrees to degrees minutes seconds in Excel?
Sometimes, you may have a list of data shown as decimal degrees in a worksheet, and now you need to convert the decimal degrees to degrees, minutes and seconds formatting as shown as following screenshots, how can you get the conversation quickly in Excel?
- Reuse Anything: Add the most used or complex formulas, charts and anything else to your favorites, and quickly reuse them in the future.
- More than 20 text features: Extract Number from Text String; Extract or Remove Part of Texts; Convert Numbers and Currencies to English Words.
- Merge Tools: Multiple Workbooks and Sheets into One; Merge Multiple Cells/Rows/Columns Without Losing Data; Merge Duplicate Rows and Sum.
- Split Tools: Split Data into Multiple Sheets Based on Value; One Workbook to Multiple Excel, PDF or CSV Files; One Column to Multiple Columns.
- Paste Skipping Hidden/Filtered Rows; Count And Sum by Background Color; Send Personalized Emails to Multiple Recipients in Bulk.
- Super Filter: Create advanced filter schemes and apply to any sheets; Sort by week, day, frequency and more; Filter by bold, formulas, comment...
- More than 300 powerful features; Works with Office 2007-2019 and 365; Supports all languages; Easy deploying in your enterprise or organization.
Convert decimal degrees to degrees, minutes, seconds with VBA
Amazing! Using Efficient Tabs in Excel Like Chrome, Firefox and Safari!
Save 50% of your time, and reduce thousands of mouse clicks for you every day!
Please follow the steps below to convert decimal degrees to degrees, minutes, and seconds with VBA code.
Coordinate Converter Degrees To Decimal
1. Hold ALT button and press F11 on the keyboard to open a Microsoft Visual Basic for Application window.
2. Click Insert > Module, and copy the VBA into the module.
VBA: Convert decimal degree to degree, minutes and seconds
3. Click Run button or press F5 to run the VBA.
4. A dialog displayed on the screen, and you can select the cells you want to the convert. See screenshot:
5. Click OK, then the selected data is converted to degree, minutes and seconds. See screenshot:
Tip: Using the above VBA code will lost your original data, so you’d better copy the data before running the code.
Convert degrees, minutes, seconds to decimal degrees with VBA
Sometimes, you may want to convert the data in degrees/minutes/seconds formatting to decimal degrees, the following VBA code can help you quickly get it done.
1. Hold ALT button and press F11 on the keyboard to open a Microsoft Visual Basic for Application window.
2. Click Insert > Module, and copy the VBA into the module.
Excel Convert Coordinates To Decimal
VBA: Convert degree, minutes and seconds to decimal degree
3. Save the code and close the window, select a blank cell, for instance, the Cell A1, enter this formula =ConvertDecimal('10° 27' 36'') ('10° 27' 36'' stands the degree you want to convert to decimal degree, you can change it as you need), then click Enter button. See screenshots:
Relative articles
or post as a guest, but your post won't be published automatically.
Decimal Degree To Utm Converter In Excel File
Decimal Degree To Utm Converter In Excel Spreadsheet
- To post as a guest, your comment is unpublished.WRONG calculation results... 29°30'13' 34°55'4' ---> 29.00083333 34.08333333
- To post as a guest, your comment is unpublished.The code has a assumes there is a space after ° and '. Change the 2's to 1's in the code to solve it.
Function ConvertDecimal(pInput As String) As Double
'Updateby20140227
Dim xDeg As Double
Dim xMin As Double
Dim xSec As Double
xDeg = Val(Left(pInput, InStr(1, pInput, '°') - 1))
xMin = Val(Mid(pInput, InStr(1, pInput, '°') + 1, _
InStr(1, pInput, '') - InStr(1, pInput, _
'°') - 1)) / 60
xSec = Val(Mid(pInput, InStr(1, pInput, '') + _
1, Len(pInput) - InStr(1, pInput, '') - 1)) _
/ 3600
ConvertDecimal = xDeg + xMin + xSec
End Function - To post as a guest, your comment is unpublished.Works like a champ! Thanks for sharing!!!
- To post as a guest, your comment is unpublished.Check your results. this code is wrong.
- To post as a guest, your comment is unpublished.please
i want you help and write a computer program on paper to convert decimal of degree to degree minute and second.
317.5986740026
from ahans.- To post as a guest, your comment is unpublished.step 1, Multiply numbers after decimal with 60 (0.5986740026*60)minutes=35.92044015 mean 35 mints
spet 2, multiply the decimal after minute ie 0.9204401*60=55.2264
so 317 degree 35 minuts 55 sec
- To post as a guest, your comment is unpublished.Not sure whats wrong with the code in the post from Ernie, but this is what I use to convert decimal degrees to DMS degrees in the spread sheet without using VB. The reference to the cell E33 is the cell containing the decimal degrees value.
=CONCAT(FIXED(INT(B32), 0) , '°', FIXED(((B32 - INT(B32)) * 60), 0), '', FIXED(((B32 - INT(B32) - INT(B32 - INT(B32))) * 3600), 0 ,TRUE), '')
Good luck.- To post as a guest, your comment is unpublished.HI CORNY, NOT WORK FOR ME, EXCEL DO NOT ACCEPT THE FUNCTION..... WHATS WRONG? CAN YOU HELP ME?
- To post as a guest, your comment is unpublished.Hello,
I used the scrip to convert decimal to DMS however the code is wrong somewhere as it turned out 37.856908,-120.912469 to 37D 51M 25S, -121D 5M 15S
This is way off....
Anyone have a fix for this? - To post as a guest, your comment is unpublished.works great but how would i adapt the code to get more numbers for seconds?
- To post as a guest, your comment is unpublished.I want to plot the positions on a map and we not worry about N, S, E or W. I'm sure these could be added in with 'if' statements.
I have just used a very simple line of functions within the Excel spreadsheet.
I want to go from Degrees (Decimal) to Degrees, Seconds (Decimal) Changing the negative values to positives as I know which hemispheres I am in. For me, cell E4 contained the target Lat or Long (Decimal).
This is a bit easier than putting in some VBA code and can be enlarged to do DD,MM,SS
=CONCATENATE(TRUNC(ABS(E4)),'°',FIXED((ABS(E4)-TRUNC(ABS(E4)))*60,2),'') - To post as a guest, your comment is unpublished.Found this code very helpful. Great stuff!
- To post as a guest, your comment is unpublished.The most important thing to realize is that you cannot simply use superscript and small letter o for the degree symbol - this may be obvious to some, but not to me. I tried the superscript letter o and it did not work, I deleted the superscript letter o, and used Alt 0176 for the actual degree symbol and it worked!! I am confused as to why after the seconds there are extra sets of double quotes?
36'') whereas in the subsequent comment if one simply uses =ConvertDecimal(A1) only a single set of quotes are used for seconds. Odd we can use single and double quotes and the thing works for minutes and seconds but superscript letter o does not?
To check 27/60 = .45 smf 36/3600 = .01 add the two = .46 and add that to the degrees = 10.46 degrees. Hope this helps others? Mort - To post as a guest, your comment is unpublished.Really helpful.
Thank you. - To post as a guest, your comment is unpublished.there is some error in code i tried to convert 26°10'55.416' using this code which results as 26.00139 which should be 26.18206 (Calculated & Verified.. please let me know if anyone knows the reason.
- To post as a guest, your comment is unpublished.[quote name='Rajansinh Zala']there is some error in code i tried to convert 26°10'55.416' using this code which results as 26.00139 which should be 26.18206 (Calculated & Verified.. please let me know if anyone knows the reason.[/quote]
It seems the code expects a space after the ° and ' symbols.
26° 10' 55.416' gives the correct answer.
You can enter your input in a cell (eg A1) and get the result in another cell by using the formula =ConvertDecimal(A1). This is convenient if you have a many numbers to be converted.
