Reputation: 197
How I can transform GEOGRAPHY exemplar from one coordinate system to another in MS SQL Server?
For example, I have:
DECLARE @g geography;
SET @g = geography::STGeomFromText('POINT(3 3)', 4326)
How I can transform this GEOGRAPHY to coordinate system with SRID = 4120?
Upvotes: 3
Views: 1583