GOV/Qualitätskontrolle: Unterschied zwischen den Versionen
(aktuelle Tabellennamen) |
|||
Zeile 1: | Zeile 1: | ||
[[GOV|GOV-Hauptseite]] > [[GOV/Projekt]] > '''GOV/Qualitätskontrolle mit Taxo2Map''' | [[GOV|GOV-Hauptseite]] > [[GOV/Projekt]] > '''GOV/Qualitätskontrolle mit Taxo2Map''' | ||
Zeile 7: | Zeile 8: | ||
=== Objekte ohne Namen === | === Objekte ohne Namen === | ||
Vielfach werden in GOV Kindobjekte aufgelistet, die keinen Namen haben und die damit auch nicht als Objekt editierbar oder löschbar sind. Diese Objekte sollten über einen Suchmechanismus gefunden werden können und dann gelöscht werden. | Vielfach werden in GOV Kindobjekte aufgelistet, die keinen Namen haben und die damit auch nicht als Objekt editierbar oder löschbar sind. Diese Objekte sollten über einen Suchmechanismus gefunden werden können und dann gelöscht werden. | ||
<source lang="sql">SELECT o. | <source lang="sql">SELECT o.textual_id FROM gov_item o | ||
LEFT JOIN | LEFT JOIN property n ON n.gov_object=o.id AND n.type=1 | ||
WHERE o.deleted=0 AND o. | WHERE o.deleted=0 AND o.item_class='o' AND n.id IS NULL;</source> | ||
2009-01-30 keine Einträge | 2009-01-30 keine Einträge | ||
=== Objekte ohne Typ === | === Objekte ohne Typ === | ||
<source lang="sql">SELECT o. | <source lang="sql">SELECT o.textual_id FROM gov_item o | ||
LEFT JOIN | LEFT JOIN property t ON t.gov_object=o.id AND t.type=2 | ||
WHERE o.deleted=0 AND o. | WHERE o.deleted=0 AND o.item_class='o' AND t.id IS NULL;</source> | ||
2009-01-30 keine Einträge - abgesichert durch Programmlogik | 2009-01-30 keine Einträge - abgesichert durch Programmlogik | ||
=== Kirchen ohne Standort === | === Kirchen ohne Standort === | ||
<source lang="sql">SELECT o. | <source lang="sql">SELECT o.textual_id FROM gov_item o, property t | ||
LEFT JOIN | LEFT JOIN relation r ON r.child=t.gov_object AND r.type=2 | ||
WHERE t.type=2 AND t. | WHERE t.type=2 AND t.type_object=26 | ||
AND o.id=t.gov_object AND r.parent IS NULL;</source> | AND o.id=t.gov_object AND r.parent IS NULL;</source> | ||
2009-01-30 15.402 Einträge | 2009-01-30 15.402 Einträge | ||
Eingeschränkt auf eine Landeskirche oder einen Kirchenkreis (hier 172369=Oppeln): | Eingeschränkt auf eine Landeskirche oder einen Kirchenkreis (hier 172369=Oppeln): | ||
<source lang="sql">SELECT church. | <source lang="sql">SELECT church.textual_id | ||
FROM relation_index, | FROM relation_index, gov_item church, property t | ||
LEFT JOIN | LEFT JOIN relation r ON r.child=t.gov_object AND r.type=2 | ||
WHERE relation_index.parent =172369 | WHERE relation_index.parent =172369 | ||
AND church.id=relation_index.child | AND church.id=relation_index.child | ||
AND t.gov_object=relation_index.child | AND t.gov_object=relation_index.child | ||
AND t.type=2 AND | AND t.type=2 AND type_object=26 | ||
AND r.parent IS NULL;</source> | AND r.parent IS NULL;</source> | ||
Zeile 42: | Zeile 43: | ||
* 92 (Kirchengemeinde) | * 92 (Kirchengemeinde) | ||
<source lang="sql">SELECT o. | <source lang="sql">SELECT o.textual_id FROM gov_item o, property t | ||
LEFT JOIN | LEFT JOIN relation r ON r.parent=t.gov_object AND r.type=3 | ||
WHERE t.type=2 and t. | WHERE t.type=2 and t.type_object IN (29,92,42,81) | ||
AND o.id=t.gov_object and r.child IS NULL;</source> | AND o.id=t.gov_object and r.child IS NULL;</source> | ||
Zeile 55: | Zeile 56: | ||
* 92 (Kirchengemeinde) | * 92 (Kirchengemeinde) | ||
<source lang="sql">SELECT o. | <source lang="sql">SELECT o.textual_id FROM gov_item o, property t | ||
LEFT JOIN | LEFT JOIN property k ON k.gov_object=t.gov_object AND k.type=7 | ||
WHERE t.type=2 and t. | WHERE t.type=2 and t.type_object IN (26,29,92,42,81) | ||
AND o.id=t.gov_object AND k.id IS NULL;</source> | AND o.id=t.gov_object AND k.id IS NULL;</source> | ||
2009-01-30 388 Einträge | 2009-01-30 388 Einträge | ||
Zeile 69: | Zeile 70: | ||
=== Orte und Koordinaten im übergeordneten Objekt === | === Orte und Koordinaten im übergeordneten Objekt === | ||
* Orte in einem Bundesland/Regierungsbezirk, die keine Koordinaten haben | * Orte in einem Bundesland/Regierungsbezirk, die keine Koordinaten haben | ||
<source lang="sql">SELECT c. | <source lang="sql">SELECT c.textual_id, p.textual_id | ||
FROM | FROM property, Type, gov_item p, gov_item c, relation_index | ||
WHERE parent = p.id AND child=c.id | WHERE parent = p.id AND child=c.id | ||
AND p. | AND p.textual_id='adm_369130' # Kennung des übergeordneten Objekts | ||
AND | AND property.gov_object=c.id | ||
AND | AND property.type=2 | ||
AND Type.id= | AND Type.id=type_object | ||
AND Type.has_position=1 # Typ muß eine Position erlauben | AND Type.has_position=1 # Typ muß eine Position erlauben | ||
AND c.deleted=0 # nicht gelöscht | AND c.deleted=0 # nicht gelöscht | ||
AND | AND type_object<>18 # keine Gemeinde | ||
AND (c.latitude is null OR c.latitude=0); # keine Position angegeben</source> | AND (c.latitude is null OR c.latitude=0); # keine Position angegeben</source> | ||
* Orte die identische Koordinaten in einem Bundesland/Regierungsbezirk haben | * Orte die identische Koordinaten in einem Bundesland/Regierungsbezirk haben | ||
Zeile 84: | Zeile 85: | ||
=== Orte ohne Koordinate === | === Orte ohne Koordinate === | ||
Gelöschte Objekte und solche mit einem Typ, der keine Position zuläßt, dürfen nicht mitgezählt werden. | Gelöschte Objekte und solche mit einem Typ, der keine Position zuläßt, dürfen nicht mitgezählt werden. | ||
<source lang="sql">SELECT count(distinct | <source lang="sql">SELECT count(distinct textual_id) FROM gov_item i | ||
JOIN | JOIN property p ON i.id=p.gov_object AND p.type=2 | ||
JOIN Type t ON t.id= | JOIN Type t ON t.id=type_object | ||
WHERE | WHERE item_class='o' AND deleted=0 and latitude is null or latitude=0 and has_position=1;</source> | ||
Die Zahl stimmt nicht ganz, da derzeit Gemeinden noch eine Position haben dürfen, eigentlich aber nicht haben sollten. | Die Zahl stimmt nicht ganz, da derzeit Gemeinden noch eine Position haben dürfen, eigentlich aber nicht haben sollten. | ||
=== Gelöschte Objekte mit Kindern === | === Gelöschte Objekte mit Kindern === | ||
Ein gelöschtes Objekt darf nie als Elternobjekt eingetragen sein. | Ein gelöschtes Objekt darf nie als Elternobjekt eingetragen sein. | ||
<source lang="sql">SELECT DISTINCT | <source lang="sql">SELECT DISTINCT textual_id | ||
FROM | FROM gov_item p, relation r | ||
WHERE p.deleted =1 AND parent =p.id;</source> | WHERE p.deleted =1 AND parent =p.id;</source> | ||
2009-01-30 [[Bild:Nuvola_apps_important.svg|32px]] 62 Einträge | 2009-01-30 [[Bild:Nuvola_apps_important.svg|32px]] 62 Einträge | ||
auch nicht im | auch nicht im relationenindex: | ||
<source lang="sql">SELECT DISTINCT | <source lang="sql">SELECT DISTINCT textual_id | ||
FROM | FROM gov_item, relation_index | ||
WHERE deleted = 1 AND parent= | WHERE deleted = 1 AND parent=gov_item.id;</source> | ||
=== Orte an den Rändern von Einheiten === | === Orte an den Rändern von Einheiten === | ||
im Norden: | im Norden: | ||
<source lang="sql"> SELECT c.* FROM | <source lang="sql"> SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id | ||
WHERE c.latitude IS NOT NULL | WHERE c.latitude IS NOT NULL | ||
AND i. | AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.latitude DESC LIMIT 1;</source> | ||
im Süden: | im Süden: | ||
<source lang="sql"> SELECT c.* FROM | <source lang="sql"> SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id | ||
WHERE c.latitude IS NOT NULL | WHERE c.latitude IS NOT NULL | ||
AND i. | AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.latitude ASC LIMIT 1;</source> | ||
im Westen: | im Westen: | ||
<source lang="sql"> SELECT c.* FROM | <source lang="sql"> SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id | ||
WHERE c.latitude IS NOT NULL | WHERE c.latitude IS NOT NULL | ||
AND i. | AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.longitude ASC LIMIT 1;</source> | ||
im Osten: | im Osten: | ||
<source lang="sql"> SELECT c.* FROM | <source lang="sql"> SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id | ||
WHERE c.latitude IS NOT NULL | WHERE c.latitude IS NOT NULL | ||
AND i. | AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.longitude DESC LIMIT 1;</source> | ||
=== Gemeinden ohne OpenGeoDB-Zuordnung === | === Gemeinden ohne OpenGeoDB-Zuordnung === | ||
Da OpenGeoDB alle deutschen Gemeinden enthält, müßte auch jede aktuelle Gemeinde im GOV eine externe Kennung opengeodb:... haben. | Da OpenGeoDB alle deutschen Gemeinden enthält, müßte auch jede aktuelle Gemeinde im GOV eine externe Kennung opengeodb:... haben. | ||
<source lang="sql">SELECT | <source lang="sql">SELECT textual_id FROM property t, relation_index, gov_item | ||
LEFT JOIN | LEFT JOIN property o ON o.gov_object = gov_item.id AND o.type=6 AND o.content like 'opengeodb:%' | ||
WHERE t.type=2 and t. | WHERE t.type=2 and t.type_object=18 AND o.id is null AND t.gov_object = gov_item.id | ||
AND (t.time_end IS NULL OR t.time_end > 30000000) # aktuelle Gemeinde | AND (t.time_end IS NULL OR t.time_end > 30000000) # aktuelle Gemeinde | ||
AND relation_index.parent=149273 AND relation_index.child= | AND relation_index.parent=149273 AND relation_index.child=gov_item.id; # in Deutschland</source> | ||
2009-01-30 [[Datei:Nuvola_apps_important.svg|32px]] 989 Einträge | 2009-01-30 [[Datei:Nuvola_apps_important.svg|32px]] 989 Einträge | ||
=== Gemeinden ohne übergeordnetes Objekt === | === Gemeinden ohne übergeordnetes Objekt === | ||
Für Gemeinden lassen sich einfach Zugehörigkeiten feststellen. Diese Gemeinden haben überhaupt keine Zugehörigkeit: | Für Gemeinden lassen sich einfach Zugehörigkeiten feststellen. Diese Gemeinden haben überhaupt keine Zugehörigkeit: | ||
<source lang="sql">SELECT | <source lang="sql">SELECT textual_id FROM property, gov_item | ||
LEFT JOIN relation_index p ON p.child= | LEFT JOIN relation_index p ON p.child=gov_item.id | ||
WHERE | WHERE gov_item.deleted =0 and gov_item.id=property.gov_object | ||
AND | AND property.type=2 and property.type_object =18 AND p.id is null;</source> | ||
2009-10-23 [[Bild:Nuvola_apps_important.svg|32px]] 18 Einträge | 2009-10-23 [[Bild:Nuvola_apps_important.svg|32px]] 18 Einträge | ||
=== vermischte Gemeinden und Dörfer === | === vermischte Gemeinden und Dörfer === | ||
Um Ein- und Umgemeindungen korrekt modellieren zu können, ist es notwendig, eigene Gemeindeobjekt zu haben. Leider gibt es bereits viele Einträge, bei denen Gemeinde und Dorf vermischt wurden. | Um Ein- und Umgemeindungen korrekt modellieren zu können, ist es notwendig, eigene Gemeindeobjekt zu haben. Leider gibt es bereits viele Einträge, bei denen Gemeinde und Dorf vermischt wurden. | ||
<source lang="sql">SELECT | <source lang="sql">SELECT textual_id FROM property p1, property p2, gov_item | ||
WHERE | WHERE gov_item.id=p1.gov_object AND p1.type=2 AND p2.type=2 | ||
AND p1. | AND p1.type_object <> p2.type_object AND p1.gov_object = p2.gov_object | ||
AND p1. | AND p1.type_object=18;</source> | ||
2009-10-23 [[Bild:Nuvola_apps_important.svg|32px]] 9160 Einträge | 2009-10-23 [[Bild:Nuvola_apps_important.svg|32px]] 9160 Einträge | ||
Eingeschränkt auf Kreis/Land etc: | Eingeschränkt auf Kreis/Land etc: | ||
<source lang="sql">SELECT DISTINCT c. | <source lang="sql">SELECT DISTINCT c.textual_id | ||
FROM | FROM property p1, property p2, gov_item c, gov_item p, relation_index | ||
WHERE c.id=p1.gov_object AND p1.type=2 AND p2.type=2 | WHERE c.id=p1.gov_object AND p1.type=2 AND p2.type=2 | ||
AND p1. | AND p1.type_object <> p2.type_object AND p1.gov_object = p2.gov_object | ||
AND p1. | AND p1.type_object=18 AND p1.gov_object=relation_index.child AND relation_index.parent=p.id | ||
AND p. | AND p.textual_id='adm_369097';</source> | ||
=== kirchliche Abhängigkeiten === | === kirchliche Abhängigkeiten === | ||
Zeile 159: | Zeile 160: | ||
So findet man Objekte bei denen eine der Abhängigkeiten fehlt: | So findet man Objekte bei denen eine der Abhängigkeiten fehlt: | ||
==== Verbindung B-C ==== | ==== Verbindung B-C ==== | ||
<source lang="sql">SELECT a. | <source lang="sql">SELECT a.textual_id, b.textual_id, c.textual_id | ||
FROM gov_item a, relation ac, relation ab, property at, (gov_item c, gov_item b) | FROM gov_item a, relation ac, relation ab, property at, (gov_item c, gov_item b) | ||
LEFT JOIN relation bc ON bc.type=1 AND bc.child=b.id AND bc.parent=c.id | LEFT JOIN relation bc ON bc.type=1 AND bc.child=b.id AND bc.parent=c.id | ||
Zeile 170: | Zeile 171: | ||
==== Verbindung A-B ==== | ==== Verbindung A-B ==== | ||
<source lang="sql">SELECT a. | <source lang="sql">SELECT a.textual_id, b.textual_id, c.textual_id | ||
FROM gov_item c, relation ac, property at, relation bc, (gov_item b, gov_item a) | FROM gov_item c, relation ac, property at, relation bc, (gov_item b, gov_item a) | ||
LEFT JOIN relation ab ON ab.type=2 AND ab.child=a.id AND ab.parent=b.id | LEFT JOIN relation ab ON ab.type=2 AND ab.child=a.id AND ab.parent=b.id | ||
Zeile 182: | Zeile 183: | ||
==== Verbindung A-C ==== | ==== Verbindung A-C ==== | ||
<source lang="sql">SELECT a. | <source lang="sql">SELECT a.textual_id, b.textual_id, c.textual_id | ||
FROM gov_item b, relation ab, property at, relation bc, (gov_item c, gov_item a) | FROM gov_item b, relation ab, property at, relation bc, (gov_item c, gov_item a) | ||
LEFT JOIN relation ac ON ac.type=2 AND ac.child=a.id AND ac.parent=c.id | LEFT JOIN relation ac ON ac.type=2 AND ac.child=a.id AND ac.parent=c.id | ||
Zeile 196: | Zeile 197: | ||
=== Ersatzkennungen für existierende Objekte === | === Ersatzkennungen für existierende Objekte === | ||
Sie entstehen, wenn man das Verschmelzen von zwei Objekten zurückgängig macht. | Sie entstehen, wenn man das Verschmelzen von zwei Objekten zurückgängig macht. | ||
<source lang="sql">SELECT * FROM updated_ids, | <source lang="sql">SELECT * FROM updated_ids, gov_item WHERE updated_ids.old_id=textual_id AND deleted=0 ;</source> | ||
2009-01-30 {{OK}} keine Einträge | 2009-01-30 {{OK}} keine Einträge | ||
=== Gemeinden, die zu Gemeinden gehören === | === Gemeinden, die zu Gemeinden gehören === | ||
Eine Gemeinde sollte nicht Teil einer anderen Gemeinde sein. Es liegt dann vermutlich in mindestens einem der beiden Objekte eine Vermischung von Dorf und Gemeinde vor. | Eine Gemeinde sollte nicht Teil einer anderen Gemeinde sein. Es liegt dann vermutlich in mindestens einem der beiden Objekte eine Vermischung von Dorf und Gemeinde vor. | ||
<source lang="sql">SELECT DISTINCT c. | <source lang="sql">SELECT DISTINCT c.textual_id AS child, p.textual_id AS parent | ||
FROM | FROM property p1, property p2, gov_item c, gov_item p, relation_index | ||
WHERE c.id=p1.gov_object AND p.id=p2.gov_object AND p1.type=2 AND p2.type=2 | WHERE c.id=p1.gov_object AND p.id=p2.gov_object AND p1.type=2 AND p2.type=2 | ||
AND p1. | AND p1.type_object=18 AND p2.type_object=18 AND child=c.id AND parent=p.id;</source> | ||
2009-10-23 [[Bild:Nuvola_apps_important.svg|32px]] 5006 Einträge | 2009-10-23 [[Bild:Nuvola_apps_important.svg|32px]] 5006 Einträge | ||
Zeile 211: | Zeile 212: | ||
=== Anzahl Orte mit Position === | === Anzahl Orte mit Position === | ||
<source lang="sql"> SELECT count(*) FROM | <source lang="sql"> SELECT count(*) FROM gov_item WHERE item_class ='o' AND latitude >0;</source> | ||
=== Anzahl Orte ohne Position === | === Anzahl Orte ohne Position === | ||
<source lang="sql"> SELECT count( distinct | <source lang="sql"> SELECT count( distinct textual_id) | ||
FROM | FROM gov_item i , property p, Type t | ||
WHERE (latitude =0 or latitude is null) | WHERE (latitude =0 or latitude is null) | ||
and | and item_class='o' AND gov_object=i.id | ||
AND | AND property_class='t' and type_object=t.id | ||
and t.locatedIn=1 ;</source> | and t.locatedIn=1 ;</source> | ||
Version vom 22. November 2011, 09:53 Uhr
GOV-Hauptseite > GOV/Projekt > GOV/Qualitätskontrolle mit Taxo2Map
Projekt GOV |
---|
hier: GOV/Qualitätskontrolle |
GOV-Datenbankabfrage: Infoseiten zum Projekt: Datenerfassung: Kontakt:
Kategorien: |
Fehlersuche in Datenbank
Objekte ohne Namen
Vielfach werden in GOV Kindobjekte aufgelistet, die keinen Namen haben und die damit auch nicht als Objekt editierbar oder löschbar sind. Diese Objekte sollten über einen Suchmechanismus gefunden werden können und dann gelöscht werden.
SELECT o.textual_id FROM gov_item o
LEFT JOIN property n ON n.gov_object=o.id AND n.type=1
WHERE o.deleted=0 AND o.item_class='o' AND n.id IS NULL;
2009-01-30 keine Einträge
Objekte ohne Typ
SELECT o.textual_id FROM gov_item o
LEFT JOIN property t ON t.gov_object=o.id AND t.type=2
WHERE o.deleted=0 AND o.item_class='o' AND t.id IS NULL;
2009-01-30 keine Einträge - abgesichert durch Programmlogik
Kirchen ohne Standort
SELECT o.textual_id FROM gov_item o, property t
LEFT JOIN relation r ON r.child=t.gov_object AND r.type=2
WHERE t.type=2 AND t.type_object=26
AND o.id=t.gov_object AND r.parent IS NULL;
2009-01-30 15.402 Einträge
Eingeschränkt auf eine Landeskirche oder einen Kirchenkreis (hier 172369=Oppeln):
SELECT church.textual_id
FROM relation_index, gov_item church, property t
LEFT JOIN relation r ON r.child=t.gov_object AND r.type=2
WHERE relation_index.parent =172369
AND church.id=relation_index.child
AND t.gov_object=relation_index.child
AND t.type=2 AND type_object=26
AND r.parent IS NULL;
Kirchspiele ohne Kirche
Relevante Objekt-Typen:
- 29 (Kirchspiel)
- 42 (Pfarrei)
- 81 (Kloster)
- 92 (Kirchengemeinde)
SELECT o.textual_id FROM gov_item o, property t
LEFT JOIN relation r ON r.parent=t.gov_object AND r.type=3
WHERE t.type=2 and t.type_object IN (29,92,42,81)
AND o.id=t.gov_object and r.child IS NULL;
Religiöse Objekte ohne Konfession
Relevante Objekt-Typen:
- 26 (Kirche)
- 29 (Kirchspiel)
- 42 (Pfarrei)
- 81 (Kloster)
- 92 (Kirchengemeinde)
SELECT o.textual_id FROM gov_item o, property t
LEFT JOIN property k ON k.gov_object=t.gov_object AND k.type=7
WHERE t.type=2 and t.type_object IN (26,29,92,42,81)
AND o.id=t.gov_object AND k.id IS NULL;
2009-01-30 388 Einträge
Orte und Ortsteile mit falscher PLZ
- Länge der PLZ = 1 (z.B. nur "O" oder "W")
- kein Jahr bis bei PLZ die mit "O" oder "W" beginnt
- in DE: Länge PLZ = 4
Orte und Koordinaten im übergeordneten Objekt
- Orte in einem Bundesland/Regierungsbezirk, die keine Koordinaten haben
SELECT c.textual_id, p.textual_id
FROM property, Type, gov_item p, gov_item c, relation_index
WHERE parent = p.id AND child=c.id
AND p.textual_id='adm_369130' # Kennung des übergeordneten Objekts
AND property.gov_object=c.id
AND property.type=2
AND Type.id=type_object
AND Type.has_position=1 # Typ muß eine Position erlauben
AND c.deleted=0 # nicht gelöscht
AND type_object<>18 # keine Gemeinde
AND (c.latitude is null OR c.latitude=0); # keine Position angegeben
- Orte die identische Koordinaten in einem Bundesland/Regierungsbezirk haben
Orte ohne Koordinate
Gelöschte Objekte und solche mit einem Typ, der keine Position zuläßt, dürfen nicht mitgezählt werden.
SELECT count(distinct textual_id) FROM gov_item i
JOIN property p ON i.id=p.gov_object AND p.type=2
JOIN Type t ON t.id=type_object
WHERE item_class='o' AND deleted=0 and latitude is null or latitude=0 and has_position=1;
Die Zahl stimmt nicht ganz, da derzeit Gemeinden noch eine Position haben dürfen, eigentlich aber nicht haben sollten.
Gelöschte Objekte mit Kindern
Ein gelöschtes Objekt darf nie als Elternobjekt eingetragen sein.
SELECT DISTINCT textual_id
FROM gov_item p, relation r
WHERE p.deleted =1 AND parent =p.id;
auch nicht im relationenindex:
SELECT DISTINCT textual_id
FROM gov_item, relation_index
WHERE deleted = 1 AND parent=gov_item.id;
Orte an den Rändern von Einheiten
im Norden:
SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id
WHERE c.latitude IS NOT NULL
AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.latitude DESC LIMIT 1;
im Süden:
SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id
WHERE c.latitude IS NOT NULL
AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.latitude ASC LIMIT 1;
im Westen:
SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id
WHERE c.latitude IS NOT NULL
AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.longitude ASC LIMIT 1;
im Osten:
SELECT c.* FROM gov_item i JOIN relation_index ON relation_index.parent=i.id JOIN gov_item c ON relation_index.child=c.id
WHERE c.latitude IS NOT NULL
AND i.textual_id='OBJEKTKENNUNG' ORDER BY c.longitude DESC LIMIT 1;
Gemeinden ohne OpenGeoDB-Zuordnung
Da OpenGeoDB alle deutschen Gemeinden enthält, müßte auch jede aktuelle Gemeinde im GOV eine externe Kennung opengeodb:... haben.
SELECT textual_id FROM property t, relation_index, gov_item
LEFT JOIN property o ON o.gov_object = gov_item.id AND o.type=6 AND o.content like 'opengeodb:%'
WHERE t.type=2 and t.type_object=18 AND o.id is null AND t.gov_object = gov_item.id
AND (t.time_end IS NULL OR t.time_end > 30000000) # aktuelle Gemeinde
AND relation_index.parent=149273 AND relation_index.child=gov_item.id; # in Deutschland
Gemeinden ohne übergeordnetes Objekt
Für Gemeinden lassen sich einfach Zugehörigkeiten feststellen. Diese Gemeinden haben überhaupt keine Zugehörigkeit:
SELECT textual_id FROM property, gov_item
LEFT JOIN relation_index p ON p.child=gov_item.id
WHERE gov_item.deleted =0 and gov_item.id=property.gov_object
AND property.type=2 and property.type_object =18 AND p.id is null;
vermischte Gemeinden und Dörfer
Um Ein- und Umgemeindungen korrekt modellieren zu können, ist es notwendig, eigene Gemeindeobjekt zu haben. Leider gibt es bereits viele Einträge, bei denen Gemeinde und Dorf vermischt wurden.
SELECT textual_id FROM property p1, property p2, gov_item
WHERE gov_item.id=p1.gov_object AND p1.type=2 AND p2.type=2
AND p1.type_object <> p2.type_object AND p1.gov_object = p2.gov_object
AND p1.type_object=18;
Eingeschränkt auf Kreis/Land etc:
SELECT DISTINCT c.textual_id
FROM property p1, property p2, gov_item c, gov_item p, relation_index
WHERE c.id=p1.gov_object AND p1.type=2 AND p2.type=2
AND p1.type_object <> p2.type_object AND p1.gov_object = p2.gov_object
AND p1.type_object=18 AND p1.gov_object=relation_index.child AND relation_index.parent=p.id
AND p.textual_id='adm_369097';
kirchliche Abhängigkeiten
Die komplette Zugehörigkeit sieht so aus:
So findet man Objekte bei denen eine der Abhängigkeiten fehlt:
Verbindung B-C
SELECT a.textual_id, b.textual_id, c.textual_id
FROM gov_item a, relation ac, relation ab, property at, (gov_item c, gov_item b)
LEFT JOIN relation bc ON bc.type=1 AND bc.child=b.id AND bc.parent=c.id
WHERE at.gov_object=a.id AND at.type=2 AND at.type_object in (124,13,26,30)
AND ac.type=3 AND ab.type=2
AND ab.child=a.id AND ab.parent=b.id
AND ac.child=a.id AND ac.parent=c.id
AND bc.parent IS NULL;
Verbindung A-B
SELECT a.textual_id, b.textual_id, c.textual_id
FROM gov_item c, relation ac, property at, relation bc, (gov_item b, gov_item a)
LEFT JOIN relation ab ON ab.type=2 AND ab.child=a.id AND ab.parent=b.id
WHERE at.gov_object=a.id AND at.type=2 AND at.type_object in (124,13,26,30)
AND ac.type=3 AND bc.type=1
AND bc.child=b.id AND bc.parent=c.id
AND ac.child=a.id AND ac.parent=c.id
AND ab.parent IS NULL;
Hier sind viele "falsche" Treffer enthalten, wenn das Pfarrdorf noch nicht der Kirchengemeinde zugeordnet ist. Reparieren kann man aber in jedem Fall etwas. 2011-11-21 6555 Einträge
Verbindung A-C
SELECT a.textual_id, b.textual_id, c.textual_id
FROM gov_item b, relation ab, property at, relation bc, (gov_item c, gov_item a)
LEFT JOIN relation ac ON ac.type=2 AND ac.child=a.id AND ac.parent=c.id
WHERE at.gov_object=a.id AND at.type=2 AND at.type_object in (124,13,26,30)
AND ab.type=3 AND bc.type=1
AND bc.child=b.id AND bc.parent=c.id
AND ab.child=a.id AND ab.parent=c.id
AND ac.parent IS NULL;
Hier sind viele "falsche" Treffer enthalten, wenn das Pfarrdorf noch nicht der Kirchengemeinde zugeordnet ist. Reparieren kann man aber in jedem Fall etwas. 2011-11-21 8007 Einträge
Ersatzkennungen für existierende Objekte
Sie entstehen, wenn man das Verschmelzen von zwei Objekten zurückgängig macht.
SELECT * FROM updated_ids, gov_item WHERE updated_ids.old_id=textual_id AND deleted=0 ;
Gemeinden, die zu Gemeinden gehören
Eine Gemeinde sollte nicht Teil einer anderen Gemeinde sein. Es liegt dann vermutlich in mindestens einem der beiden Objekte eine Vermischung von Dorf und Gemeinde vor.
SELECT DISTINCT c.textual_id AS child, p.textual_id AS parent
FROM property p1, property p2, gov_item c, gov_item p, relation_index
WHERE c.id=p1.gov_object AND p.id=p2.gov_object AND p1.type=2 AND p2.type=2
AND p1.type_object=18 AND p2.type_object=18 AND child=c.id AND parent=p.id;
Kennzahlen
Manche Kennzahlen geben Auskunft über die Entwicklung der Qualität der im GOV enthaltenen Daten.
Anzahl Orte mit Position
SELECT count(*) FROM gov_item WHERE item_class ='o' AND latitude >0;
Anzahl Orte ohne Position
SELECT count( distinct textual_id)
FROM gov_item i , property p, Type t
WHERE (latitude =0 or latitude is null)
and item_class='o' AND gov_object=i.id
AND property_class='t' and type_object=t.id
and t.locatedIn=1 ;
- Anzahl Orte ohne Elternobjekt
- Anzahl Werte mit Quellenangaben
- Verteilung Anzahl Elternobjekte
- Verteilung Verschachtelungstiefe
- Verteilung Anzahl Kindobjekte
- Objekte mit vielen Kindobjekte