Module 5: Adding XY Data and Geocoding Addresses
This week's module was focused on the process of geocoding and adding point feature data from a data table with a spatial component (i.e. coordinates or street address). Part 1: Adding XY data Part one included adding coordinate data from a table. The following coordinates were taken from available Bald Eagle nest location data for Santa Rosa county: LATITUDE LONGITUDE 30°33’50”N 87°08’33”W 30°31’43”N 87°06’59”W 30°31’02”N 87°05’54”W These coordinates are written in Degrees, Minutes, Seconds format. In order to plot these points with ArcGIS, the coordinates were converted to Decimal Degrees format with the following formulas: ycoord = (latDD + (latMM/60) + (latSS/3600)) xcoord = - (longDD + (longMM/60) + (longSS/3600)) (Note the negative) The conversion was completed using Microsoft Excel, saved as a .csv file, and then added to ArcGIS Pro. Finally, the "Add XY Point Data" tool was used to create points based on the tables x (longitude) and y (latitude) coordinates. See...