-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOpenDataLeipzig.txt
90 lines (70 loc) · 2.93 KB
/
OpenDataLeipzig.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Open Data Portal der Stadt Leipzig:
https://opendata.leipzig.de
* Bodenrichtwerte.xml - Bodenrichtwerte im WMS Format (Stand: 2017-12-30)
* http://wms.leipzig.de/arcgis/services/wms/BRW/MapServer/WMSServer?request=GetCapabilities&service=WMS
* Fahrplaene: Fahrpläne vom 14.12.2017 bis 8.12.2018
* https://opendata.leipzig.de/dataset/lvb-fahrplandaten (Stand: 2017-12-21)
* Geoshapes (Stand 2017-08-24)
Sparql Endpunkt: https://opendata.leipzig.de/virt-sparql
select distinct ?a where {?a a rdfs:Class . } LIMIT 100
http://www.w3.org/2002/07/owl#InverseFunctionalProperty
http://www.w3.org/2002/07/owl#FunctionalProperty
http://www.w3.org/2002/07/owl#SymmetricProperty
http://www.w3.org/2002/07/owl#TransitiveProperty
http://www.w3.org/2002/07/owl#Class
http://www.w3.org/2002/07/owl#Ontology
http://www.w3.org/2002/07/owl#OntologyProperty
http://www.w3.org/2002/07/owl#AnnotationProperty
http://www.w3.org/2002/07/owl#AllDifferent
http://www.w3.org/2002/07/owl#Restriction
http://www.w3.org/2002/07/owl#ObjectProperty
http://www.w3.org/2002/07/owl#DatatypeProperty
http://www.w3.org/2002/07/owl#DeprecatedClass
http://www.w3.org/2002/07/owl#DeprecatedProperty
http://www.w3.org/2002/07/owl#DataRange
http://www.w3.org/ns/org#OrganizationalUnit
https://opendata.leipzig.de/behoerdenwegweiser/schema/Entry
http://www.w3.org/ns/org#Site
select distinct ?a where {?a a owl:Class . } LIMIT 100
---------------------------------------------------
Hier steckt das Behördenhandbuch:
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX bwd: <https://opendata.leipzig.de/behoerdenwegweiser/data/>
PREFIX bws: <https://opendata.leipzig.de/behoerdenwegweiser/schema/>
construct { ?a ?b ?c . }
where {
?a a org:OrganizationalUnit; ?b ?c .
}
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX bwd: <https://opendata.leipzig.de/behoerdenwegweiser/data/>
PREFIX bws: <https://opendata.leipzig.de/behoerdenwegweiser/schema/>
construct { ?a ?b ?c . }
where {
?a a org:Site; ?b ?c .
}
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX bwd: <https://opendata.leipzig.de/behoerdenwegweiser/data/>
PREFIX bws: <https://opendata.leipzig.de/behoerdenwegweiser/schema/>
construct { ?a ?b ?c . }
where {
?a a bws:Entry; ?b ?c .
}
Prädikate:
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX bwd: <https://opendata.leipzig.de/behoerdenwegweiser/data/>
PREFIX bws: <https://opendata.leipzig.de/behoerdenwegweiser/schema/>
select distinct ?b
where {
?a a org:OrganizationalUnit; ?b ?c .
}
Das Ganze ist zusammengekippt und als Behoerdenwegweiser.ttl (Stand Sept. 2018)
veröffentlicht.
select distinct ?a where {?a a owl:Ontology . } LIMIT 100
-----------------------------------------------------------------------
Die Daten von Konrad Abicht. Das sind reine Instanzdaten, keine Ontologie dabei
PREFIX bvlo: <https://github.com/AKSW/leds-asp-f-ontologies/raw/master/ontologies/place/ontology.ttl#>
SELECT *
FROM <https://opendata.leipzig.de/bvlplaces/>
WHERE {
?s a bvlo:Place; dc:title ?t .
}