Sunday 29 September 2019

spatial join - Seeking PostGIS equivalent to GeoPandas union overlay?


What is the PostGIS / PostgreSQL equivalent of the GeoPandas Overlay Union operation?


res_union = geopandas.overlay(df1, df2, how='union')

Say I have two tables, 1 green, 1 red with each with two rows with geometry (polygons):


enter image description here


Then, the objective is to get:



enter image description here


which is a table with 7 rows/ features. See the GeoPandas docs for more info.


I've tried spatial joins and using the ST_Union and ST_Intersection to no avail. I managed to reproduce the equivalent of


res_intersection = geopandas.overlay(df1, df2, how='intersection')

Which is the equivalent of:


enter image description here


using the following SQL command:


SELECT
table1.letter,

table2.number,
ST_Intersection(table1.geom,table2.geom)
FROM
table1,
table2
WHERE
ST_Intersects(table1.geom,table2.geom)

One solution is to create a table for the intersections and one for the symmetrical differences and than outer join. However I don't know how to create the Symmetrical Difference:


SELECT

test.hybas_nld.pfaf_id,
test.gadm_nld.gid_1,
ST_SymDifference(test.hybas_nld.geom,test.gadm_nld.geom)
FROM
test.hybas_nld,
test.gadm_nld
WHERE
ST_????(test.hybas_nld.geom,test.gadm_nld.geom)

with the result of: enter image description here



Possible duplicate with the exception that I would like to keep the polygons where only geometry of table 1 or 2 exists (symmetrical difference).


What would be the simplest and fastest way to get to the final result (Union)?




No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...