Skip to content

Commit 24bdd78

Browse files
committedJan 15, 2025
GH-315: fix mapping agentschap Digitaal Vlaanderen + bump version
1 parent e390030 commit 24bdd78

File tree

11 files changed

+29
-15
lines changed

11 files changed

+29
-15
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Various DCAT tools for harvesting metadata from Belgian open data portals,
44
converting metadata to DCAT-AP files and updating the Belgian
55
[data.gov.be](http://data.gov.be) portal.
66

7-
The portal itself is a Drupal 9 website, based on Fedict's
7+
The portal itself is a Drupal 9 website, based on Fedict's / BOSA's
88
[Openfed](https://drupal.org/project/openfed) distribution.
99

1010
## Data

‎dcatlib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>be.gov.data</groupId>
66
<artifactId>dcattools</artifactId>
7-
<version>4.0.1</version>
7+
<version>4.0.2</version>
88
</parent>
99
<artifactId>dcatlib</artifactId>
1010
<packaging>jar</packaging>

‎helpers/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<parent>
55
<groupId>be.gov.data</groupId>
66
<artifactId>dcattools</artifactId>
7-
<version>4.0.1</version>
7+
<version>4.0.2</version>
88
</parent>
9-
<version>4.0.1</version>
9+
<version>4.0.2</version>
1010
<name>helpers</name>
1111
<artifactId>helpers</artifactId>
1212
<packaging>jar</packaging>

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>be.gov.data</groupId>
55
<artifactId>dcattools</artifactId>
6-
<version>4.0.1</version>
6+
<version>4.0.2</version>
77
<packaging>pom</packaging>
88
<url>https://data.gov.be</url>
99
<licenses>

‎scrapers/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<parent>
55
<groupId>be.gov.data</groupId>
66
<artifactId>dcattools</artifactId>
7-
<version>4.0.1</version>
7+
<version>4.0.2</version>
88
</parent>
9-
<version>4.0.1</version>
9+
<version>4.0.2</version>
1010
<name>scrapers</name>
1111
<description>Various scrapers for Belgian data portals</description>
1212
<artifactId>scrapers</artifactId>

‎scrapers/src/main/resources/be/gov/data/scrapers/vlaanderen/data-org.ttl

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<https://org.belgif.be/id/CbeRegisteredEntity/0216173309>
4545
a foaf:Organization ;
4646
dcterms:type admsp:RegionalAuthority ;
47-
skos:closeMatch <https://data.vlaanderen.be/id/organisatie/OVO000112> ;
47+
skos:closeMatch <https://data.vlaanderen.be/id/organisatie/OVO000112>, <https://data.vlaanderen.be/doc/organisatie/OVO000112> ;
4848
skos:prefLabel "Vlaamse Waterweg NV"@nl ;
4949
skos:altLabel "Vlaamse Waterweg NV"@nl .
5050

@@ -126,7 +126,7 @@
126126
<https://org.belgif.be/id/CbeEstablishmentUnit/2199323857>
127127
a foaf:Organization ;
128128
dcterms:type admsp:RegionalAuthority ;
129-
skos:closeMatch <https://data.vlaanderen.be/id/organisatie/OVO000076> ;
129+
skos:closeMatch <https://data.vlaanderen.be/id/organisatie/OVO000076>, <https://data.vlaanderen.be/id/organisatie/OVO053580> ;
130130
skos:prefLabel "Departement Werk en Sociale Economie"@nl ;
131131
skos:altLabel "DWSE", "DWSE"@nl .
132132

‎scrapers/src/main/resources/be/gov/data/scrapers/vlaanderen/scripts.txt

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ clear-skos.qry
6363
# Departement Omgeving
6464
vlaanderen/sparql-deptomgeving-org.qry
6565
vlaanderen/sparql-deptomgeving-name.qry
66+
vlaanderen/sparql-contact-publisher.qry
6667
vlaanderen/data-org.ttl
6768
vlaanderen/sparql-map-org-simple.qry
6869
vlaanderen/sparql-map-org-ovo.qry
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Use contactpoint if publisher is missing
2+
3+
PREFIX dcterms: <http://purl.org/dc/terms/>
4+
PREFIX dcat: <http://www.w3.org/ns/dcat#>
5+
6+
INSERT
7+
{ ?dataset dcterms:publisher ?contact }
8+
WHERE
9+
{ ?dataset dcat:contactPoint ?contact
10+
FILTER NOT EXISTS {
11+
?dataset dcterms:publisher ?publ
12+
}
13+
}

‎tools/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<parent>
55
<groupId>be.gov.data</groupId>
66
<artifactId>dcattools</artifactId>
7-
<version>4.0.1</version>
7+
<version>4.0.2</version>
88
</parent>
99
<name>tools</name>
10-
<version>4.0.1</version>
10+
<version>4.0.2</version>
1111
<description>Misc tools for enhancing DCAT metadata</description>
1212
<artifactId>tools</artifactId>
1313
<packaging>jar</packaging>

‎translater/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<parent>
55
<groupId>be.gov.data</groupId>
66
<artifactId>dcattools</artifactId>
7-
<version>4.0.1</version>
7+
<version>4.0.2</version>
88
</parent>
9-
<version>4.0.1</version>
9+
<version>4.0.2</version>
1010
<name>translater</name>
1111
<description>Translation client to machine-translation service</description>
1212
<artifactId>translater</artifactId>

‎uploaderd10/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<parent>
55
<groupId>be.gov.data</groupId>
66
<artifactId>dcattools</artifactId>
7-
<version>4.0.1</version>
7+
<version>4.0.2</version>
88
</parent>
9-
<version>4.0.1</version>
9+
<version>4.0.2</version>
1010
<artifactId>uploaderd10</artifactId>
1111
<packaging>jar</packaging>
1212
<properties>

0 commit comments

Comments
 (0)