Overlay analysis in Oracle SQL -
i have 2 spatial tables in oracle.
table contains line or point features , has columns:
id geom serial number of map list
table b contains polygons of map list:
id serial number of map list
i need produce spatial analysis features table take serial number of map list table b on basement of result of spatial analysis.
for example, line feature in polygon abc213, have fill serial number of map list
attribute serial number of map list
attribute value table b.
how can that?
it in oracle spatial (i'm using 12c)
select * tablea a, tableb b sdo_relate(a.geomcolumn,b.geomcolumn,'mask=anyinteract')='true';
there different types of masks, take here https://docs.oracle.com/database/121/spatl/guid-97c17c18-f05e-49b4-be11-e89b972e2a02.htm#spatl1039
Comments
Post a Comment