Skip to content

Commit

Permalink
version management required reorganising this repository
Browse files Browse the repository at this point in the history
  • Loading branch information
ElisabethDeVries committed May 5, 2024
1 parent c94eeb7 commit 8b1b170
Show file tree
Hide file tree
Showing 3,713 changed files with 555 additions and 554 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions Microstation/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
De actuele versie van de standaard staat in de map actueel, eerdere versies in de map archief en in ontwikkeling zijnde versies in de map ontwikkeling.
1 change: 1 addition & 0 deletions arcering/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
De actuele versie van de standaard staat in de map actueel, eerdere versies in de map archief en in ontwikkeling zijnde versies in de map ontwikkeling.
1 change: 1 addition & 0 deletions beheer/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
In deze folder staan de bestanden die nodig zijn voor beheer van de standaard.
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Arceringen bibliotheek information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?abibliotheekURI ?id ?abibliotheek ?omschrijving
WHERE {
?ArceringTopConcept a owl:Class .
?ArceringTopConcept skos:prefLabel "Arcering" .
?abibliotheekURI rdfs:subClassOf ?ArceringTopConcept .
?abibliotheekURI skos:prefLabel ?abibliotheek .
?abibliotheekURI skos:definition ?omschrijving .
OPTIONAL {
?abibliotheekURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Arceringen bibliotheek information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?abibliotheekURI ?id ?abibliotheek ?omschrijving
WHERE {
?ArceringTopConcept a owl:Class .
?ArceringTopConcept skos:prefLabel "Arcering" .
?abibliotheekURI rdfs:subClassOf ?ArceringTopConcept .
?abibliotheekURI skos:prefLabel ?abibliotheek .
?abibliotheekURI skos:definition ?omschrijving .
OPTIONAL {
?abibliotheekURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
} ORDER BY ?id
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Arcering information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?arceringURI ?id ?abibliotheekURI ?abibliotheek ?fase ?arcering ?optie ?schaal ?vrkl_kort ?vrkl_lang ?fileURL
WHERE {
?ArceringTopConcept a owl:Class .
?ArceringTopConcept skos:prefLabel "Arcering" .
?abibliotheekURI rdfs:subClassOf ?ArceringTopConcept .
?abibliotheekURI skos:definition ?omschrijving .
?abibliotheekURI skos:prefLabel ?abibliotheek .
?arceringURI rdfs:subClassOf+ ?abibliotheekURI .
?arceringURI skos:prefLabel ?arcering .
FILTER( NOT EXISTS { ?subArcering rdfs:subClassOf ?arceringURI . }) .
OPTIONAL {
?arceringURI ?faseProperty ?fase .
?faseProperty skos:prefLabel "Fase" .
}
OPTIONAL {
?arceringURI ?optieProperty ?optie .
?optieProperty skos:prefLabel "Optie" .
}
OPTIONAL {
?arceringURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
OPTIONAL {
?arceringURI ?vrkl_kortProperty ?vrkl_kort .
?vrkl_kortProperty skos:prefLabel "VRKL_KORT" .
}
OPTIONAL {
?arceringURI ?vrkl_langProperty ?vrkl_lang .
?vrkl_langProperty skos:prefLabel "VRKL_LANG" .
}
OPTIONAL {
?arceringURI ?schaalProperty ?schaal .
?schaalProperty skos:prefLabel "Schaal" .
}
OPTIONAL {
?arceringURI ?urlProperty ?fileURL .
?urlProperty skos:prefLabel "URL" .
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Arcering information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?arceringURI ?id ?abibliotheekURI ?abibliotheek ?fase ?arcering ?optie ?schaal ?vrkl_kort ?vrkl_lang ?fileURL
WHERE {
?ArceringTopConcept a owl:Class .
?ArceringTopConcept skos:prefLabel "Arcering" .
?abibliotheekURI rdfs:subClassOf ?ArceringTopConcept .
?abibliotheekURI skos:definition ?omschrijving .
?abibliotheekURI skos:prefLabel ?abibliotheek .
?arceringURI rdfs:subClassOf+ ?abibliotheekURI .
?arceringURI skos:prefLabel ?arcering .
FILTER( NOT EXISTS { ?subArcering rdfs:subClassOf ?arceringURI . }) .
OPTIONAL {
?arceringURI ?faseProperty ?fase .
?faseProperty skos:prefLabel "Fase" .
}
OPTIONAL {
?arceringURI ?optieProperty ?optie .
?optieProperty skos:prefLabel "Optie" .
}
OPTIONAL {
?arceringURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
OPTIONAL {
?arceringURI ?vrkl_kortProperty ?vrkl_kort .
?vrkl_kortProperty skos:prefLabel "VRKL_KORT" .
}
OPTIONAL {
?arceringURI ?vrkl_langProperty ?vrkl_lang .
?vrkl_langProperty skos:prefLabel "VRKL_LANG" .
}
OPTIONAL {
?arceringURI ?schaalProperty ?schaal .
?schaalProperty skos:prefLabel "Schaal" .
}
OPTIONAL {
?arceringURI ?urlProperty ?fileURL .
?urlProperty skos:prefLabel "URL" .
}
} ORDER BY ?id
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Discipline information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?disciplineURI ?id ?code ?verklaring ?omschrijving
WHERE {
?DisciplineTopConcept skos:prefLabel "Disciplines" .
?disciplineURI a ?DisciplineTopConcept .
?disciplineURI skos:prefLabel ?code .
?disciplineURI skos:altLabel ?verklaring .
?disciplineURI skos:definition ?omschrijving .
OPTIONAL {
?disciplineURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Discipline information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?disciplineURI ?id ?code ?verklaring ?omschrijving
WHERE {
?DisciplineTopConcept skos:prefLabel "Disciplines" .
?disciplineURI a ?DisciplineTopConcept .
?disciplineURI skos:prefLabel ?code .
?disciplineURI skos:altLabel ?verklaring .
?disciplineURI skos:definition ?omschrijving .
OPTIONAL {
?disciplineURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
} ORDER BY ?id
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Hoofdgroep information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?hoofdgroepURI ?id ?hoofdgroep ?afkorting
WHERE {
?NLCSObjectTopConcept a owl:Class .
?NLCSObjectTopConcept skos:prefLabel "NLCS-object" .
?hoofdgroepURI rdfs:subClassOf ?NLCSObjectTopConcept .
?hoofdgroepURI skos:prefLabel ?afkorting .
?hoofdgroepURI skos:definition ?hoofdgroep .
OPTIONAL {
?hoofdgroepURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Hoofdgroep information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?hoofdgroepURI ?id ?hoofdgroep ?afkorting
WHERE {
?NLCSObjectTopConcept a owl:Class .
?NLCSObjectTopConcept skos:prefLabel "NLCS-object" .
?hoofdgroepURI rdfs:subClassOf ?NLCSObjectTopConcept .
?hoofdgroepURI skos:prefLabel ?afkorting .
?hoofdgroepURI skos:definition ?hoofdgroep .
OPTIONAL {
?hoofdgroepURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
} ORDER BY ?id
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Lijnkleur information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?lijnkleurURI ?id ?fase ?nummer ?hex ?R ?G ?B ?optie
WHERE {
?LijnkleurTopConcept a owl:Class .
?LijnkleurTopConcept skos:prefLabel "Lijnkleur" .
?lijnkleurURI rdfs:subClassOf ?LijnkleurTopConcept .
?lijnkleurURI skos:prefLabel ?nummer .
OPTIONAL {
?lijnkleurURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
OPTIONAL {
?lijnkleurURI ?faseProperty ?fase .
?faseProperty skos:prefLabel "Fase" .
}
OPTIONAL {
?lijnkleurURI ?hexProperty ?hex .
?hexProperty skos:prefLabel "HEX" .
}
OPTIONAL {
?lijnkleurURI ?RProperty ?R .
?RProperty skos:prefLabel "R" .
}
OPTIONAL {
?lijnkleurURI ?GProperty ?G .
?GProperty skos:prefLabel "G" .
}
OPTIONAL {
?lijnkleurURI ?BProperty ?B .
?BProperty skos:prefLabel "B" .
}
OPTIONAL {
?lijnkleurURI ?optieProperty ?optie .
?optieProperty skos:prefLabel "Optie" .
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Lijnkleur information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?lijnkleurURI ?id ?fase ?nummer ?hex ?R ?G ?B ?optie
WHERE {
?LijnkleurTopConcept a owl:Class .
?LijnkleurTopConcept skos:prefLabel "Lijnkleur" .
?lijnkleurURI rdfs:subClassOf ?LijnkleurTopConcept .
?lijnkleurURI skos:prefLabel ?nummer .
OPTIONAL {
?lijnkleurURI ?idProperty ?id .
?idProperty skos:prefLabel "ID" .
}
OPTIONAL {
?lijnkleurURI ?faseProperty ?fase .
?faseProperty skos:prefLabel "Fase" .
}
OPTIONAL {
?lijnkleurURI ?hexProperty ?hex .
?hexProperty skos:prefLabel "HEX" .
}
OPTIONAL {
?lijnkleurURI ?RProperty ?R .
?RProperty skos:prefLabel "R" .
}
OPTIONAL {
?lijnkleurURI ?GProperty ?G .
?GProperty skos:prefLabel "G" .
}
OPTIONAL {
?lijnkleurURI ?BProperty ?B .
?BProperty skos:prefLabel "B" .
}
OPTIONAL {
?lijnkleurURI ?optieProperty ?optie .
?optieProperty skos:prefLabel "Optie" .
}
} ORDER BY ?id
Loading

0 comments on commit 8b1b170

Please sign in to comment.