Postgis Abfragen

Daniel_Ibetsberger

Neuer Benutzer
Beiträge
4
Hallo,

ich soll für die Universität folgende zwei Beispiele lösen, komme dabei aber leider einfach nicht weiter und bitte das Forum deswegen um Hilfe.

Beispiel 1:

The current table setup (DLL) allows to insert any points.
Find a solution that allows only points between the latitudes -30, +30 and
between the longitudes 0, 50 (both including).

Hint: Extend the CONSTRAINT location_check below the table DDL.

DROP TABLE IF EXISTS super_secure ;
CREATE TABLE super_secure (
id SERIAL PRIMARY KEY,
name CHARACTER VARYING,
year INTEGER
);
SELECT AddGeometryColumn ('public','super_secure','geom',4326,'GEOMETRY',2);

ALTER TABLE super_secure ADD CONSTRAINT location_check CHECK ();


Beispiel 2:

The current table setup (DLL) allows to enter points with any coordinates.
Find a solution so that only points are allowed, which are within this polygon:

SELECT ST_ST_GeomFromText('''MULTIPOLYGON(((-71.1031880899493 42.3152774590236,
-71.1031627617667 42.3152960829043,-71.102923838298 42.3149156848307,
-71.1023097974109 42.3151969047397,-71.1019285062273 42.3147384934248,
-71.102505233663 42.3144722937587,-71.10277487471 42.3141658254797,
-71.103113945163 42.3142739188902,-71.10324876416 42.31402489987,
-71.1033002961013 42.3140393340215,-71.1033488797549 42.3139495090772,
-71.103396240451 42.3138632439557,-71.1041521907712 42.3141153348029,
-71.1041411411543 42.3141545014533,-71.1041287795912 42.3142114839058,
-71.1041188134329 42.3142693656241,-71.1041112482575 42.3143272556118,
-71.1041072845732 42.3143851580048,-71.1041057218871 42.3144430686681,
-71.1041065602059 42.3145009876017,-71.1041097995362 42.3145589148055,
-71.1041166403905 42.3146168544148,-71.1041258822717 42.3146748022936,
-71.1041375307579 42.3147318674446,-71.1041492906949 42.3147711126569,
-71.1041598612795 42.314808571739,-71.1042515013869 42.3151287620809,
-71.1041173835118 42.3150739481917,-71.1040809891419 42.3151344119048,
-71.1040438678912 42.3151191367447,-71.1040194562988 42.3151832057859,
-71.1038734225584 42.3151140942995,-71.1038446938243 42.3151006300338,
-71.1038315271889 42.315094347535,-71.1037393329282 42.315054824985,
-71.1035447555574 42.3152608696313,-71.1033436658644 42.3151648370544,
-71.1032580383161 42.3152269126061,-71.103223066939 42.3152517403219,
-71.1031880899493 42.3152774590236)),
((-71.1043632495873 42.315113108546,-71.1043583974082 42.3151211109857,
-71.1043443253471 42.3150676015829,-71.1043850704575 42.3150793250568,-71.1043632495873 42.315113108546)))''')


Hint: Extend the CONSTRAINT location_check below the table DDL.

DROP TABLE IF EXISTS super_secure ;
CREATE TABLE super_secure (
id SERIAL PRIMARY KEY,
name CHARACTER VARYING,
year INTEGER
);
SELECT AddGeometryColumn ('public','super_secure','geom',4326,'GEOMETRY',2);

ALTER TABLE super_secure ADD CONSTRAINT location_check CHECK ();

viele Dank für Eure Hilfe
Daniel
 
Werbung:
was ist denn Dein Ansatz? Ich bin mit PostGIS jetzt nicht sooo vertraut, aber im Prinzip ist das ja nur ein Check-Constraint. Die CHECK() - Funktion muß halt prüfen, ob der Punkt die geforderten Dinge einhält.
 
Code:
alter table super_secure add constraint location_check check (st_x(geom) between -30 and +30);

Achtung: ich bin mir jetzt nicht sicher, ob das so einfach geht, ob X = Lat ist, ob man noch mit der SRID arbeiten muß etc. @Gisman weiß da mehr ...
 
Code:
test=*# alter table super_secure add constraint check_location check(st_contains(geom, ST_GeomFromText('MULTIPOLYGON(((-71.1031880899493 42.3152774590236,
-71.1031627617667 42.3152960829043,-71.102923838298 42.3149156848307,
-71.1023097974109 42.3151969047397,-71.1019285062273 42.3147384934248,
-71.102505233663 42.3144722937587,-71.10277487471 42.3141658254797,
-71.103113945163 42.3142739188902,-71.10324876416 42.31402489987,
-71.1033002961013 42.3140393340215,-71.1033488797549 42.3139495090772,
-71.103396240451 42.3138632439557,-71.1041521907712 42.3141153348029,
-71.1041411411543 42.3141545014533,-71.1041287795912 42.3142114839058,
-71.1041188134329 42.3142693656241,-71.1041112482575 42.3143272556118,
-71.1041072845732 42.3143851580048,-71.1041057218871 42.3144430686681,
-71.1041065602059 42.3145009876017,-71.1041097995362 42.3145589148055,
-71.1041166403905 42.3146168544148,-71.1041258822717 42.3146748022936,
-71.1041375307579 42.3147318674446,-71.1041492906949 42.3147711126569,
-71.1041598612795 42.314808571739,-71.1042515013869 42.3151287620809,
-71.1041173835118 42.3150739481917,-71.1040809891419 42.3151344119048,
-71.1040438678912 42.3151191367447,-71.1040194562988 42.3151832057859,
-71.1038734225584 42.3151140942995,-71.1038446938243 42.3151006300338,
-71.1038315271889 42.315094347535,-71.1037393329282 42.315054824985,
-71.1035447555574 42.3152608696313,-71.1033436658644 42.3151648370544,
-71.1032580383161 42.3152269126061,-71.103223066939 42.3152517403219,
-71.1031880899493 42.3152774590236)),
((-71.1043632495873 42.315113108546,-71.1043583974082 42.3151211109857,
-71.1043443253471 42.3150676015829,-71.1043850704575 42.3150793250568,-71.1043632495873 42.315113108546)))')));
ALTER TABLE

Aber ich bin mir nicht sicher, ob das mit der SRID etc. alles korrekt ist, ich bin kein PostGIS-Mensch.
 
Werbung:
vielleicht so?

Code:
alter table super_secure add constraint check_location check(st_contains(geom, st_setsrid(ST_GeomFromText('MULTIPOLYGON(((-71.1031880899493 42.3152774590236,
-71.1031627617667 42.3152960829043,-71.102923838298 42.3149156848307,
-71.1023097974109 42.3151969047397,-71.1019285062273 42.3147384934248,
-71.102505233663 42.3144722937587,-71.10277487471 42.3141658254797,
-71.103113945163 42.3142739188902,-71.10324876416 42.31402489987,
-71.1033002961013 42.3140393340215,-71.1033488797549 42.3139495090772,
-71.103396240451 42.3138632439557,-71.1041521907712 42.3141153348029,
-71.1041411411543 42.3141545014533,-71.1041287795912 42.3142114839058,
-71.1041188134329 42.3142693656241,-71.1041112482575 42.3143272556118,
-71.1041072845732 42.3143851580048,-71.1041057218871 42.3144430686681,
-71.1041065602059 42.3145009876017,-71.1041097995362 42.3145589148055,
-71.1041166403905 42.3146168544148,-71.1041258822717 42.3146748022936,
-71.1041375307579 42.3147318674446,-71.1041492906949 42.3147711126569,
-71.1041598612795 42.314808571739,-71.1042515013869 42.3151287620809,
-71.1041173835118 42.3150739481917,-71.1040809891419 42.3151344119048,
-71.1040438678912 42.3151191367447,-71.1040194562988 42.3151832057859,
-71.1038734225584 42.3151140942995,-71.1038446938243 42.3151006300338,
-71.1038315271889 42.315094347535,-71.1037393329282 42.315054824985,
-71.1035447555574 42.3152608696313,-71.1033436658644 42.3151648370544,
-71.1032580383161 42.3152269126061,-71.103223066939 42.3152517403219,
-71.1031880899493 42.3152774590236)),
((-71.1043632495873 42.315113108546,-71.1043583974082 42.3151211109857,
-71.1043443253471 42.3150676015829,-71.1043850704575 42.3150793250568,-71.1043632495873 42.315113108546)))'),4326)));

wie schon gesagt, ich bin mit dem PostGIS-Zeugs jetzt so der Experte ...
 
Zurück
Oben