How I can transform GEOGRAPHY exemplar from one coordinate system to another in MS SQL Server?

1.4k Views Asked by At

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?

0

There are 0 best solutions below