Skip to content

Commit

Permalink
more collection mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
situx committed Jan 19, 2024
1 parent c1e2291 commit 819aa16
Showing 1 changed file with 112 additions and 0 deletions.
112 changes: 112 additions & 0 deletions src/sparqlunicorn_ontdoc/doc/docconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,85 @@ class DocConfig:
"http://www.opengis.net/ont/geosparql#SpatialObject": {
"class": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.geonames.org/ontology#GeonamesFeature": {
"class": "http://www.opengis.net/ont/geosparql#FeatureCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.geonames.org/ontology#Feature": {
"class": "http://www.opengis.net/ont/geosparql#FeatureCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.opengis.net/ont/geosparql#Feature": {
"class": "http://www.opengis.net/ont/geosparql#FeatureCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.opengis.net/ont/geosparql#Geometry": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://geovocab.org/geometry#Geometry": {"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://geovocab.org/geometry#BoundingBox": {"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://geovocab.org/geometry#LineString": {"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://geovocab.org/geometry#MultiLineString": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://geovocab.org/geometry#MultiPoint": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://geovocab.org/geometry#MultiPolygon": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://geovocab.org/geometry#Polygon": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.w3.org/2003/01/geo/wgs84_pos#Point": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://purl.org/geojson/vocab#Point": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://purl.org/geojson/vocab#LineString": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://purl.org/geojson/vocab#Polygon": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://purl.org/geojson/vocab#MultiPoint": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://purl.org/geojson/vocab#MultiLineString": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://purl.org/geojson/vocab#MultiPolygon": {
"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/cartCoord#Point": {"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.opengis.net/ont/sf#Point": {"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.opengis.net/ont/sf#Envelope": {"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},

"http://www.opengis.net/ont/sf#Geometry": {"class": "http://www.opengis.net/ont/geosparql#GeometryCollection",
"super": "http://www.opengis.net/ont/geosparql#SpatialObjectCollection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
Expand Down Expand Up @@ -109,6 +175,9 @@ class DocConfig:
"prop": "http://www.w3.org/2006/vcard/ns#hasMember"},
"http://xmlns.com/foaf/0.1/Person": {"class": "http://www.w3.org/2006/vcard/ns#Group",
"prop": "http://www.w3.org/2006/vcard/ns#hasMember"},
"https://dblp.org/rdf/schema/Person": {"class": "http://www.w3.org/2006/vcard/ns#Group",
"prop": "http://www.w3.org/2006/vcard/ns#hasMember"},

"http://www.w3.org/ns/lemon/ontolex#LexicalEntry": {"class": "http://www.w3.org/ns/lemon/lime#Lexicon",
"prop": "http://www.w3.org/ns/lemon/lexicog#entry"},
"http://www.w3.org/ns/dcat#Dataset": {"class": "http://www.w3.org/ns/dcat#Catalog",
Expand All @@ -117,10 +186,36 @@ class DocConfig:
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/Document": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://xmlns.com/foaf/0.1/Document": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://dblp.org/rdf/schema/Publication": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://dblp.org/rdf/schema/Article": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Article": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/Article": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://www.wikidata.org/entity/Q13442814": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/AcademicArticle": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://dblp.org/rdf/schema/Inproceedings": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Inproceedings": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Inbook": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Booklet": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Manual": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Phdthesis": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Misc": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Proceedings": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/Thesis": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/BookSection": {"class": "http://purl.org/ontology/bibo/Collection",
Expand All @@ -129,6 +224,23 @@ class DocConfig:
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/Report": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Techreport": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://dblp.org/rdf/schema/Incollection": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Incollection": {
"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://dblp.org/rdf/schema/Book": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/net/nknouf/ns/bibtex#Book": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"https://schema.org/Book": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://schema.org/Book": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"wd:Q571": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/Book": {"class": "http://purl.org/ontology/bibo/Collection",
"prop": "http://www.w3.org/2000/01/rdf-schema#member"},
"http://purl.org/ontology/bibo/Proceedings": {"class": "http://purl.org/ontology/bibo/Collection",
Expand Down

0 comments on commit 819aa16

Please sign in to comment.