Provinces: Difference between revisions
No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
<div class="table-container"> | <div class="table-container"> | ||
{{#sparql: | {{#sparql: | ||
SELECT DISTINCT | SELECT DISTINCT ?personne ?nomDeFamille ?prenom ?autresPrenoms | ||
(CONCAT(SUBSTR(STR(? | ?genre ?domicile | ||
(CONCAT(SUBSTR(STR(? | (CONCAT(SUBSTR(STR(?dateNaissance), 1, 4), "-", SUBSTR(STR(?dateNaissance), 6, 2), "-", SUBSTR(STR(?dateNaissance), 9, 2)) AS ?dateNaissanceFormatee) | ||
?profession ? | (CONCAT(SUBSTR(STR(?dateDeces), 1, 4), "-", SUBSTR(STR(?dateDeces), 6, 2), "-", SUBSTR(STR(?dateDeces), 9, 2)) AS ?dateDecesFormatee) | ||
(GROUP_CONCAT(DISTINCT ?demandeStatutLabel; SEPARATOR = " ; ") AS ? | ?profession ?lieuNaissance ?etatCivil | ||
(GROUP_CONCAT(DISTINCT ?decisionStatutLabel; SEPARATOR = " ; ") AS ? | ?langueMaternelle ?paysNationalite ?evenement | ||
? | (GROUP_CONCAT(DISTINCT ?demandeStatutLabel; SEPARATOR = " ; ") AS ?statutsDemandes) | ||
(GROUP_CONCAT(DISTINCT ? | (GROUP_CONCAT(DISTINCT ?decisionStatutLabel; SEPARATOR = " ; ") AS ?statutsObtenus) | ||
?fondsArchives ?numeroInventaire ?identifiantWikidata | |||
(GROUP_CONCAT(DISTINCT ?appartenanceLabel; SEPARATOR = " ; ") AS ?appartenances) | |||
WHERE { | WHERE { | ||
? | ?personne wdt:P7 ?domicile . | ||
? | ?domicile wdt:P14* wd:Q53 . # Province de Namur | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P2 ?prenom } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P42 ?autresPrenoms } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P3 ?nomDeFamille } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P4 ?genre } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P67 ?dateNaissance } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P68 ?dateDeces } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P13 ?profession } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P46 ?lieuNaissance } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P50 ?etatCivil } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P44 ?langueMaternelle } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P45 ?paysNationalite } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P53 ?evenement } | ||
# Ajouter les statuts demandés et obtenus | # Ajouter les statuts demandés et obtenus | ||
OPTIONAL { | OPTIONAL { | ||
? | ?personne wdt:P54 ?demandeStatut. # Type de statuts demandés | ||
?demandeStatut rdfs:label ?demandeStatutLabel. | ?demandeStatut rdfs:label ?demandeStatutLabel. | ||
FILTER(LANG(?demandeStatutLabel) = " | FILTER(LANG(?demandeStatutLabel) = "fr") | ||
} | } | ||
OPTIONAL { | OPTIONAL { | ||
? | ?personne wdt:P55 ?decisionStatut. # Type de statuts obtenus | ||
?decisionStatut rdfs:label ?decisionStatutLabel. | ?decisionStatut rdfs:label ?decisionStatutLabel. | ||
FILTER(LANG(?decisionStatutLabel) = " | FILTER(LANG(?decisionStatutLabel) = "fr") | ||
} | } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P54 ?statutDemande } | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P55 ?statutObtenu } | ||
? | ?personne p:P34 ?declarationArchives . | ||
? | ?declarationArchives ps:P34 ?fondsArchives . | ||
? | ?declarationArchives pq:P35 ?numeroInventaire . | ||
OPTIONAL { ? | OPTIONAL { ?personne wdt:P15 ?identifiantWikidata } | ||
OPTIONAL { | OPTIONAL { | ||
? | ?personne wdt:P52 ?appartenance . | ||
? | ?appartenance rdfs:label ?appartenanceLabel . | ||
FILTER(lang(? | FILTER(lang(?appartenanceLabel) = 'fr') | ||
} | } | ||
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE], | # Récupérer les labels automatiquement ou en français | ||
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". } | |||
} | } | ||
GROUP BY ? | GROUP BY ?personne ?nomDeFamille ?prenom ?autresPrenoms ?genre ?domicile ?dateNaissance ?dateDeces ?profession | ||
? | ?lieuNaissance ?etatCivil ?langueMaternelle ?paysNationalite ?evenement ?statutDemande ?statutObtenu | ||
? | ?fondsArchives ?numeroInventaire ?identifiantWikidata | ||
ORDER BY ASC(?nomDeFamille) ASC(?prenom) | |||
LIMIT 4 | |||
Revision as of 14:50, 17 September 2024
Province de Namur
La requête suivante permet de récupérer toutes les personnes dont le domicile (durant/au lendemain de la Seconde Guerre mondiale) est situé dans la Province de Namur. Il s'agit d'une liste globale incluant toutes les personnes, qu'elles aient été reconnues résistant.e.s reconnus ou non. Vous pouvez utiliser la barre de recherche pour filtrer les lignes par nom de commune (noms datant d'avant la fusion). Pour des recherches combinant plusieurs critères, rendez-vous sur cette page dédiée aux requêtes avancées.