Is there a way to transform geographic data in SQL Server 2008 R2?
Specifically, I want to take Lat/Long data and convert it to a State Plane coordinate system.
|
Is there a way to transform geographic data in SQL Server 2008 R2? Specifically, I want to take Lat/Long data and convert it to a State Plane coordinate system. |
|||||
|
|
Here's some sample Sql that does projection if you have the Sql Server Tools installed:
|
|||||||||||
|
|
Have used this method
http://www.bostongis.com/PrinterFriendly.aspx?content_name=sql2008_tut01 |
|||
|
|
|
Have you considered SQLCLR? SQLCLR allows managed code to be hosted by, and run in the Microsoft SQL Server environment. In simplest terms, you can create your own user defined function, stored procedure...etc in .NET, register it with the database, and call like any other SQL function. http://msdn.microsoft.com/en-us/library/w2kae45k%28v=vs.80%29.aspx |
|||
|
|