Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v_flaechengeometrien funktioniert nicht, wenn ident_daten_stamm_abwasanlag_geome_geome_polygo_polygo_kante unvollständige Umrisse enthält #5

Open
beerockxs opened this issue May 4, 2022 · 0 comments

Comments

@beerockxs
Copy link

Bei einer real-life ISYBAU-XML Datei funktioniert bei mir der v_flaechengeometrien View nicht, da in ident_daten_stamm_abwasanlag_geome_geome_polygo_polygo_kante nicht komplette Umrisse als eine Kante gespeichert sind, sondern die Umrisse auf einzelne Kanten aufgesplittet sind. Ich habe das ganze mit folgendem SQL zum Funktionieren gebracht:

select ogr_pkid, st_makepolygon(st_linemerge(geom)) geom from ( select p.ogr_pkid, polygonart, st_setsrid(st_collect(st_makeline(st_makepoint(pk.start_rechtswert, pk.start_hochwert), st_makepoint(pk.ende_rechtswert, pk.ende_hochwert))),31468) as geom from isybau.ident_daten_stamm_abwasanlag_geome_geome_polygo_polygo_kante pk left join isybau.ident_daten_stammd_abwassanlage_geomet_geomet_polygo_polygon p on pk.parent_ogr_pkid = p.ogr_pkid where p.polygonart in (1, 2) group by p.ogr_pkid, p.polygonart) q1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant