kgr/notebooks/persons.ttl

87 lines
2.9 KiB
Turtle

@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix ns1: <https://th-mannheim.de/ont/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://th-mannheim.de/persons/0> a ns1:Person ;
rdfs:label "Peter"@de ;
ns1:age "25"^^xsd:int ;
ns1:hobby <https://th-mannheim.de/hobbies/0>,
<https://th-mannheim.de/hobbies/1>,
<https://th-mannheim.de/hobbies/2> ;
ns1:lebt_in <https://th-mannheim.de/cities/0> ;
ns1:name "Peter"@de .
<https://th-mannheim.de/persons/1> a ns1:Person ;
rdfs:label "Petra"@de ;
ns1:age "23"^^xsd:int ;
ns1:hobby <https://th-mannheim.de/hobbies/0>,
<https://th-mannheim.de/hobbies/3>,
<https://th-mannheim.de/hobbies/4> ;
ns1:lebt_in <https://th-mannheim.de/cities/0> ;
ns1:name "Petra"@de .
<https://th-mannheim.de/persons/2> a ns1:Person ;
rdfs:label "Gustav"@de ;
ns1:age "30"^^xsd:int ;
ns1:hobby <https://th-mannheim.de/hobbies/3>,
<https://th-mannheim.de/hobbies/5>,
<https://th-mannheim.de/hobbies/6> ;
ns1:lebt_in <https://th-mannheim.de/cities/1> ;
ns1:name "Gustav"@de .
<https://th-mannheim.de/persons/3> a ns1:Person ;
rdfs:label "Lena"@de ;
ns1:age "50"^^xsd:int ;
ns1:hobby <https://th-mannheim.de/hobbies/3>,
<https://th-mannheim.de/hobbies/6>,
<https://th-mannheim.de/hobbies/7> ;
ns1:lebt_in <https://th-mannheim.de/cities/2> ;
ns1:name "Lena"@de .
<https://th-mannheim.de/cities/1> a ns1:City ;
rdfs:label "Berlin"@de ;
geo:hasGeometry <https://th-mannheim.de/ont/geometry/1> ;
ns1:einwohner_anzahl "3850809"^^xsd:int .
<https://th-mannheim.de/cities/2> a ns1:City ;
rdfs:label "Ulm"@de ;
geo:hasGeometry <https://th-mannheim.de/ont/geometry/2> ;
ns1:einwohner_anzahl "129882"^^xsd:int .
<https://th-mannheim.de/hobbies/1> a ns1:Hobby ;
rdfs:label "Musik"@de .
<https://th-mannheim.de/hobbies/2> a ns1:Hobby ;
rdfs:label "PC Spiele"@de .
<https://th-mannheim.de/hobbies/4> a ns1:Hobby ;
rdfs:label "Zocken"@de .
<https://th-mannheim.de/hobbies/5> a ns1:Hobby ;
rdfs:label "Auto"@de .
<https://th-mannheim.de/hobbies/7> a ns1:Hobby ;
rdfs:label "Reiten"@de .
<https://th-mannheim.de/ont/geometry/0> geo:asWKT "POINT(8.4673 49.4891)"^^geo:wktLiteral .
<https://th-mannheim.de/ont/geometry/1> geo:asWKT "POINT(13.405 52.52)"^^geo:wktLiteral .
<https://th-mannheim.de/ont/geometry/2> geo:asWKT "POINT(9.983 48.4)"^^geo:wktLiteral .
<https://th-mannheim.de/cities/0> a ns1:City ;
rdfs:label "Mannheim"@de ;
geo:hasGeometry <https://th-mannheim.de/ont/geometry/0> ;
ns1:einwohner_anzahl "318035"^^xsd:int .
<https://th-mannheim.de/hobbies/0> a ns1:Hobby ;
rdfs:label "Sport"@de .
<https://th-mannheim.de/hobbies/6> a ns1:Hobby ;
rdfs:label "Gartenarbeit"@de .
<https://th-mannheim.de/hobbies/3> a ns1:Hobby ;
rdfs:label "Lesen"@de .