如何从oracle中的sdo_geometry获取纬度和经度

How to get lat and long from sdo_geometry in oracle

如何从 oracle 中的点获取纬度和经度?

像这样:

MDSYS.SDO_GEOMETRY(2001,4326,NULL,
  MDSYS.SDO_ELEM_INFO_ARRAY(1,1,1),
  MDSYS.SDO_ORDINATE_ARRAY(51.702814,32.624736))

您可以使用 sdo_util.getvertices。来自 documentation

的例子
SELECT c.mkt_id, c.name, t.X, t.Y, t.id
   FROM cola_markets c,
   TABLE(SDO_UTIL.GETVERTICES(c.shape)) t
   ORDER BY c.mkt_id, t.id;

您显示的符号不是表示单个 2D 或 3D 点的最佳符号。对这些点进行编码的常见且最有效的方法是:

SDO_GEOMETRY(2001,4326,SDO_POINT_TYPE(51.702814,32.624736,NULL),NULL,NULL)

我见过的所有 GIS 工具都使用这种表示法。你展示的那个也是有效的——它只是使用了更多的存储空间。但是这两种表示法在功能上是完全等价的。

使用紧凑的表示法,获取单个坐标是微不足道的。例如,考虑到 US_CITIES 在上面的紧凑符号中包含点:

select c.city, c.location.sdo_point.x longitude, c.location.sdo_point.y latitude 
from us_cities c where state_abrv='CO';

CITY                                        LONGITUDE   LATITUDE
------------------------------------------ ---------- ----------
Aurora                                     -104.72977  39.712267
Lakewood                                   -105.11356    39.6952
Denver                                     -104.87266  39.768035
Colorado Springs                            -104.7599    38.8632

4 rows selected.

从您使用的更复杂的基于数组的符号中获得相同的结果更加复杂。您可以使用 SDO_UTIL.GETVERTICES 方法。例如,假设 US_CITIES_A 包含相同的点,但在基于数组的表示法中:

select city, t.x longitude, t.y latitude
from us_cities_a, table (sdo_util.getvertices(location)) t
where state_abrv = 'CO';

CITY                                        LONGITUDE   LATITUDE
------------------------------------------ ---------- ----------
Aurora                                     -104.72977  39.712267
Lakewood                                   -105.11356    39.6952
Denver                                     -104.87266  39.768035
Colorado Springs                            -104.7599    38.8632

4 rows selected.

另一种我发现更简单的方法是只定义几个简单的函数来从数组中提取值:

create or replace function get_x (g sdo_geometry) return number is
begin
  return g.sdo_ordinates(1);
end;
/

create or replace function get_y (g sdo_geometry) return number is
begin
  return g.sdo_ordinates(2);
end;
/

然后使用函数使语法更简单:

select city, get_x(location) longitude, get_y(location) latitude
from us_cities_a
where state_abrv = 'CO';

CITY                                        LONGITUDE   LATITUDE
------------------------------------------ ---------- ----------
Aurora                                     -104.72977  39.712267
Lakewood                                   -105.11356    39.6952
Denver                                     -104.87266  39.768035
Colorado Springs                            -104.7599    38.8632

4 rows selected.

select a.id, t.x, t.y 来自 geometry_table a,table(sdo_util.getvertices(a.geometry_column)) t 其中 a.id = 1;

如果您不使用别名,这将不起作用。