[GIS] Conversion of X, Y values to different coordinate system

coordinate systemsql-server-spatial

Is there a way to convert coordinate X, Y values in SQL Server from one type of coordinate system to another using SQL Transaction? Like NAD83 State Planes to WGS 1984. My objective is to use a single ArcGIS web map to analyze and show X, Y values that has different type of coordinate system. I plan to convert or transform first the coordinate values to a common type of coordinate system like WGS 1984 before saving them to geodatabase.

Best Answer

It would be easier to add lat/long fields to sql, then bring them into ArcMap as an X,Y Event projecting them as the state plane they are. Then Calculate Geometry as Decimal Degrees for the new Lat/Long fields.

Another option is just bring in ID, X, Y fields, as an X,Y, define as STateplane, then set Dataframe to 4326 (WGS-84) export the points out using dataframe projection, then bring them back into arcmap, use add X,Y tool, then bring into sql, join, and update.

Related Question