Coordinate (X,Y) from RT90 to SWERF99 or WGS84 system. [message #647722] |
Sat, 06 February 2016 05:56 |
s4.ora
Messages: 71 Registered: March 2010
|
Member |
|
|
Hi All,
I am looking for some Oracle utility / function that can be used to convert a Coordinate (X,Y) from RT90 to corresponding SWERF99 or WGS84 system.
There are plenty of Java functions for this, but we specifically require Oracle based functions / utilities for this.
If anyone is aware of the same, kindly share the same with me.
Thank you
|
|
|
|
Re: Coordinate (X,Y) from RT90 to SWERF99 or WGS84 system. [message #647788 is a reply to message #647722] |
Mon, 08 February 2016 02:03 |
_jum
Messages: 577 Registered: February 2008
|
Senior Member |
|
|
@Barbara is right.
This query transforms the center coordinates of Sweden from RT90 (3021) to WGS84 (4326).
--https://epsg.io/3021
SELECT
sdo_cs.transform(
sdo_geometry(2001, 3021, sdo_point_type(1567816.58, 6878649.00,0), NULL, NULL),
4326) trc
FROM dual;
TRC
--------------------------------------------------
(2001,4326,(17.1034248136736,62.016329035878,0),,)
1 row selected.
|
|
|