操作方法
Note: Python scripts are specific to the version of Python that was shipped with the version of ArcMap in use. Therefore, this script may not work with your version of ArcMap. However, this script may serve as a template for modification, if desired. Refer to FAQ: What version of Python is used in ArcGIS? for more information. To perform coordinate conversion, Esri recommends using the Convert Coordinate Notation tool in ArcToolbox > Projections and Transformations toolset.
Instructions provided describe how to use the Field Calculator to convert Decimal Degrees stored in a numeric field to Degrees Minutes Seconds stored in a text field. The output by default is in the following format:
DD°MM'SS.SS"N
Follow the steps below:
def decimalDegrees2DMS(value,type): """ Converts a Decimal Degree Value into Degrees Minute Seconds Notation. Pass value as double type = {Latitude or Longitude} as string returns a string as D:M:S:Direction created by: anothergisblog.blogspot.com """ degrees = int(value) submin = abs( (value - int(value) ) * 60) minutes = int(submin) subseconds = abs((submin-int(submin)) * 60) direction = "" if type == "Longitude": if degrees < 0: direction = "W" elif degrees > 0: direction = "E" else: direction = "" elif type == "Latitude": if degrees < 0: direction = "S" elif degrees > 0: direction = "N" else: direction = "" notation = str(degrees) + u"\u00b0" + str(minutes) + "\'" +\ str(subseconds)[0:5] + "\"" + direction return notation
decimalDegrees2DMS( !Latitude_Field_Name! ,"Latitude")
decimalDegrees2DMS( !<Longitude_Field_Name! ,"Longitude")
文章 ID: 000008758
获取来自 ArcGIS 专家的帮助
下载 Esri 支持应用程序
You can also download the app to access the chatbot anytime! Download it now.