Returns the geometry corresponding to the topological intersection of the two geometries (operation AND).
1 geo.intersection
<geo.intersection ora_tol='ora_tol'>
<geom1> *
<geom1 /> *
</geom1>
<geom2> *
<geom2 /> *
</geom2>
</geo.intersection>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Aora_tol | decimal | 0.05 | Tolerance. It is only used in oracle. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Egeom1 | |||||
Egeom1 | geometry | ||||
Egeom2 | |||||
Egeom2 | geometry |
Example
Copy
<select> <columns> <geo.intersection> <geom1>geometry_col_1</geom1> <geom2>geometry_col_2</geom2> </geo.intersection> </columns> <from table='buildings' alias='a' > </from> <where> a.name = 'MACBA' </where> </select>