Knowledge Base - Technical Articles
HowTo: Convert a file with coordinates in degrees, minutes, and seconds to a feature class or shapefile using ArcMap at version 10
| Article ID: | 37264 |
|---|---|
| Software: | ArcGIS - ArcEditor 10 ArcGIS - ArcInfo 10 ArcGIS - ArcView 10 |
| Platforms: | N/A |
Summary
| Summary |
Instructions provided describe the process for converting point data in degrees, minutes and seconds (DMS) to a shapefile using ArcMap. |
| Procedure |
Follow the steps below.
|
|
Procedure
- Format the coordinate values so ArcMap can correctly read the data.
A. Coordinates in DMS from a file need to be formatted with spaces separating the degree, minute, and second values as shown in the following example:-show me- 80 37 40.86,35 00 48.75
80 37 20.55,35 01 42.35
80 37 55.23,35 01 12.80
B. For data in North America, the Longitude values must be negative. Note the sample:-show me- -80 37 40.86,35 00 48.75
-80 37 20.55,35 01 42.35
-80 37 55.23,35 01 12.80
C. Each column in the table must have a heading that describes the data entered into that column of the table.-show me- LongDMS,LatDMS
-80 37 40.86,35 00 48.75
-80 37 20.55,35 01 42.35
-80 37 55.23,35 01 12.80
Any field name can be used, but the name must not be over ten characters long and must not contain spaces or special characters.
D. The table requires a field that contains a unique identifying number for each record in the table.-show me- ID,LongDMS,LatDMS
1,-80 37 40.86,35 00 48.75
2,-80 37 20.55,35 01 42.35
3,-80 37 55.23,35 01 12.80 - When the table is correctly formatted, start ArcMap with a new, empty map. Use the 'Add Data' button to add the table to ArcMap. To ensure that the table can be edited in ArcMap, do the following:
A. Right-click on the table name > Export to DBF. This creates a table that can be edited in ArcMap.
B. Add the new DBF table to ArcMap.
- Right-click on the new DBF table name and select Open.
In the Table dialog box, click on the Table Options button and select Add Field.
Add a new field named 'LongDD' to the table, defining the field as Type: Double. Accept the default values for Precision and Scale.
Add a second new field named 'LatDD' to the table, also defined as Type: Double.
These new fields contain the Longitude (X) and Latitude (Y) coordinates in decimal degrees. - Copy the following Python script into NotePad or another text editor. In the NotePad 'Save As' dialog box, change Encoding: value to 'Unicode'. Name the file "conv_DMS2DD.cal". Click 'Save'.
-show me- def Convert(sField):
sDMS = sField
if len(sDMS.strip())==0:
dDD=0
else:
iDec = 0
iNum= 0
sPre="+"
sDMSNum=""
for i in range(0,len(sDMS)):
sS=sDMS[i:i+1]
if not sS.isalnum():
if sS==".":
if not iDec==0:
bReplace=1
else:
bReplace=0
elif sS=="-":
sPre="-"
bReplace=1
else:
bReplace=1
if bReplace==1:
if iNum<=0:
sDMSNum=sDMS.replace(sDMS[i],"")
elif iNum>0 and sPre=="+":
sDMSNum=sDMS
else:
iNum=iNum+1
sList=sDMSNum.split(" ")
if len(sList)==0:
sDMSNum=sList[0]
iLen=len[sDMSNum]
if iLen>=4:
dS=float(sDMSNum[iLen-1,iLen+1])
dM=float(sDMSNum[iLen-3,iLen-1])
sDMSNum = sDMSNum[0,iLen - 4]
if (Len(sDMSNum) > 2):
dD = float(sDMSNum[-4, -1])
elif (Len(sDMSNum) == 0):
dD = 0
else:
dD = float(sDMSNum)
else:
dDD=0
dDD=dD+dM/60+dS/3600
else:
j=0
dD=0
dM=0
dS=0
for i in range (0, len(sList)):
if j==0:
dD=float(sList[i])
j=j+1
elif j==1:
dM=float(sList[i])
j=j+1
elif j==2:
dS=float(sList[i])
j=j+1
dDD=dD+dM/60+dS/3600
if dDD<-180 or dDD>180:
dDD=0
if sPre =="-":
dDD=dDD*-1
return dDD
__esri_field_calculator_splitter__
Convert ( "ChangeFieldNameHere" ) - In ArcMap, follow the steps below to execute the script and convert the DMS values to DD:
A. Start an Edit session.
B. Open the new DBF table, right-click on the field name LongDD and select Field Calculator.
C. At the top of the Field Calculator dialog box, select the Python radio button.
D. Click Load, navigate to the location where conv_DMS2DD.cal is saved on the computer, and click Open.
E. In the lower window, where the string appears that reads 'Convert("ChangeFieldNameHere")', double-click between the parentheses to select the string.
F. In the Fields box, double-click on the name of the field that contains the Longitude value in DMS. The field name is copied into the lower window between the parentheses.
G. Click OK. The decimal degree values for Longitude are calculated into the LongDD field.
Repeat Steps B through G, this time selecting the LatDD field and entering the original Latitude field name.
Save Edits and stop editing. - Right-click on the name of the DBF table and select Display XY Data.
- In the Display XY Data dialog box, select LongDD as the X field and LatDD as the Y field.
- Click on the Edit button and select the correct Geographic Coordinate System definition for the coordinates. For assistance in finding the correct definition, refer to Knowledge Base article 29280, entitled "What geographic coordinate system or datum should be used for my data?", from the link in the Related Information section below.
- Apply the projection definition to the data. An Events theme will be added to ArcMap that displays the points from the table.
- Right-click on the Events theme, select Data > Export data, and export the Events theme to a shapefile or geodatabase feature class.
After the data is exported to a shapefile or geodatabase feature class, there is an option to add the newly exported data to the map as a layer.
Related Information
- What geographic coordinate system or datum should be used for my data?
To determine which Geographic Coordinate System and datum to use for data, select one of the 'Geographic Coordinate Systems by Area of Use' links in the Related Information section below. The related documents lists Geographic Coordinate Syste... - Convert a file with coordinates in degrees, minutes and seconds to a shapefile using ArcMap
Instructions provided describe the process for converting point data in degrees, minutes and seconds (DMS) to a shapefile using ArcMap. - Import XY data tables to ArcMap and convert the data to a shapefile
Tables containing X coordinates (Longitude) and Y coordinates (Latitude) can be brought into ArcMap and converted to a shapefile or geodatabase feature class. Instructions provided outline one method to accomplish this task. {WARN}The instruct... - Convert degrees minutes seconds values to decimal degree values using the Field Calculator
{WARN}The procedure below is for ArcGIS 9.3.1 or earlier versions. Starting at ArcGIS 10.0, expressions in the Calculator are created using only VBScript or a standard Python format. {/WARN}Instructions provided describe how to use the Field Calc...
Created: 10/7/2009
Last Modified: 6/16/2011
Comments
By tianna.dulmage - 03/20/2012 5:01 PM
The article is incorrect or the solution didn’t work.
The python script "conv_DMs2DD.cal" didn't work. I get a python error running the field calculation:
000989 : Python syntax error:
Rating:
By bswindell - 03/02/2012 10:32 AM
The article is incorrect or the solution didn’t work.
Yep, either the code has a bug or the instructions are incomplete. Please fix.
Rating:
By msilin - 08/02/2011 8:14 AM
The article is incorrect or the solution didn’t work.
Followed the instructions, got error message:
Error 000539: Error running Expression
Convert ("-74 35 00")
Rating:
By msilin - 05/08/2012 2:59 PM
The article needs to be updated.
Had an issue with the original script provided. Asked my developers to review it. The following version worked like a charm: def Convert(sField): sDMS = sField if len(sDMS.strip())==0: dDD=0 else: iDec = 0 iNum= 0 sPre="+" sDMSNum="" for i in range(0,len(sDMS)): sS=sDMS[i:i+1] if not sS.isalnum(): if sS==".": if not iDec==0: bReplace=1 else: bReplace=0 elif sS=="-": sPre="-" bReplace=1 else: bReplace=1 if bReplace==1: if iNum<=0: sDMSNum=sDMS.replace(sDMS[i],"") elif iNum>0 and sPre=="+": sDMSNum=sDMS else: iNum=iNum+1 sList=sDMSNum.split(" ") if len(sList)==0: sDMSNum=sList[0] iLen=len[sDMSNum] if iLen>=4: dS=float(sDMSNum[iLen-1,iLen+1]) dM=float(sDMSNum[iLen-3,iLen-1]) sDMSNum = sDMSNum[0,iLen - 4] if (Len(sDMSNum) > 2): dD = float(sDMSNum[-4, -1]) elif (Len(sDMSNum) == 0): dD = 0 else: dD = float(sDMSNum) else: dDD=0 dDD=dD+dM/60+dS/3600 else: j=0 dD=0 dM=0 dS=0 for i in range (0, len(sList)): if j==0: dD=float(sList[i]) j=j+1 elif j==1: dM=float(sList[i]) j=j+1 elif j==2: dS=float(sList[i]) j=j+1 dDD=dD+dM/60+dS/3600 if dDD<-180 or dDD>180: dDD=0 if sPre =="-": dDD=dDD*-1 return dDD __esri_field_calculator_splitter__ Convert ( !LongDMS! )
Rating: