Hello,I'm currently working on creating a feature class for bus stops in my city. The transportation manager gave me a spreadsheet with lat long on it which I converted to decimal degrees so I could use the Display XY data tool when you right click on the spreadsheet. Once I display the data I export it with the data frames cordinate system so that it will be in VA state plane south but once I add it back to the map its not showing up near all of my other data. The bus stops are showing up at 38822226.125, 34219046.878While my roads/other data that are right are showing up at 10880205.128, 3573999.38Any know what I'm doing wrong?!Thanks!
Function Convert_Decimal(Degree_Deg As String) As Double ' Declare the variables to be double precision floating-point. Dim degrees As Double Dim minutes As Double Dim seconds As Double ' Set degree to value before "°" of Argument Passed. degrees = Val(Left(Degree_Deg, InStr(1, Degree_Deg, "°") - 1)) ' Set minutes to the value between the "°" and the "'" ' of the text string for the variable Degree_Deg divided by ' 60. The Val function converts the text string to a number. minutes = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "°") + 2, _ InStr(1, Degree_Deg, "'") - InStr(1, Degree_Deg, _ "°") - 2)) / 60 ' Set seconds to the number to the right of "'" that is ' converted to a value and then divided by 3600. seconds = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "'") + _ 2, Len(Degree_Deg) - InStr(1, Degree_Deg, "'") - 2)) _ / 3600 Convert_Decimal = degrees + minutes + secondsEnd Function
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.