Changes between Version 6 and Version 7 of UsersWikiExamplesOverlayTables


Ignore:
Timestamp:
Jun 11, 2021, 12:33:12 PM (3 years ago)
Author:
mdavis
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiExamplesOverlayTables

    v6 v7  
    106106[[Image(overlay2.png)]]
    107107
     108== Overlay Function ==
     109
    108110'''Chris Hodgson adds:'''
    109111
     
    141143
    142144The function takes the name of two tables, and the names of a column from each of them (the id/primary key is the expected use) and the new table name to be created. I believe this approach will be memory limited because all of the linework, and the resulting polygons, are in memory at once and stored in a single (potentially very large) multi-geometry.
     145
     146Note that the result set will include resultants for areas which are in holes but which do not overlap any parent polygon. 
     147If not desired these can be filtered out by keeping only records for which at least one id is non-NULL.
     148
     149== Worked Example ==
     150
     151This is the SQL from the above function, with example data:
     152
     153{{{
     154WITH poly_a(id, geom) AS (VALUES
     155    ( 'a1', 'POLYGON ((10 40, 30 40, 30 10, 10 10, 10 40))'::geometry ),
     156    ( 'a2', 'POLYGON ((70 10, 30 10, 30 90, 70 90, 70 10), (40 40, 60 40, 60 20, 40 20, 40 40), (40 80, 60 80, 60 60, 40 60, 40 80))'::geometry ),
     157    ( 'a3', 'POLYGON ((40 40, 60 40, 60 20, 40 20, 40 40))'::geometry )
     158)
     159,poly_b(id, geom) AS (VALUES
     160    ( 'b1', 'POLYGON ((90 70, 90 50, 50 50, 50 70, 90 70))'::geometry ),
     161    ( 'b2', 'POLYGON ((90 30, 50 30, 50 50, 90 50, 90 30))'::geometry ),
     162    ( 'b2', 'POLYGON ((90 10, 70 10, 70 30, 90 30, 90 10))'::geometry )
     163)
     164,lines AS (
     165  SELECT ST_Boundary(geom) AS geom FROM poly_a
     166  UNION ALL
     167  SELECT ST_Boundary(geom) AS geom FROM poly_b
     168)
     169,noded_lines AS ( SELECT St_Union(geom) AS geom FROM lines )
     170,resultants AS ( 
     171  SELECT geom, ST_PointOnSurface(geom) AS pip
     172    FROM St_Dump(
     173           ( SELECT ST_Polygonize(geom) AS geom FROM noded_lines ))   
     174)
     175SELECT a.id AS ida, b.id AS idb, r.geom
     176  FROM resultants r
     177  LEFT JOIN poly_a a ON St_Within(r.pip, a.geom)
     178  LEFT JOIN poly_b b ON St_Within(r.pip, b.geom)
     179  WHERE a.id IS NOT NULL OR b.id IS NOT NULL;
     180}}}