-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version management required reorganising this repository
- Loading branch information
1 parent
c94eeb7
commit 8b1b170
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.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
File renamed without changes.
42 changes: 21 additions & 21 deletions
42
code/NLCS_Query_Abibliotheken.rq → code/actueel/NLCS_Query_Abibliotheken.rq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
96 changes: 48 additions & 48 deletions
96
code/NLCS_Query_Arceringen.rq → code/actueel/NLCS_Query_Arceringen.rq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
42 changes: 21 additions & 21 deletions
42
code/NLCS_Query_Disciplines.rq → code/actueel/NLCS_Query_Disciplines.rq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
42 changes: 21 additions & 21 deletions
42
code/NLCS_Query_Hoofdgroepen.rq → code/actueel/NLCS_Query_Hoofdgroepen.rq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
88 changes: 44 additions & 44 deletions
88
code/NLCS_Query_Lijnkleuren.rq → code/actueel/NLCS_Query_Lijnkleuren.rq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.