|
|
Line 4: |
Line 4: |
|
| |
|
| Toutes ... | | Toutes ... |
|
| |
|
| |
| === Exemple Data-arch.be ===
| |
|
| |
| {{#sparql:
| |
| SELECT ?item ?itemLabel WHERE {
| |
| ?item wbt:P41 ?cui .
| |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en" }
| |
| }
| |
| LIMIT 100
| |
| | chart=bordercloud.visualization.DataTable
| |
| | endpoint = https://query.data.arch.be/proxy/wdqs/bigdata/namespace/wdq/sparql
| |
| | log=2
| |
| }}
| |
|
| |
|
| |
| === Test 2 ===
| |
|
| |
| {{#sparql:
| |
| SELECT ?item ?itemLabel WHERE {
| |
| ?item wbt:P42 ?cui .
| |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en" }
| |
| }
| |
| LIMIT 4000
| |
| | chart=bordercloud.visualization.DataTable
| |
| | endpoint = https://query.data.arch.be/proxy/wdqs/bigdata/namespace/wdq/sparql
| |
| | log=2
| |
| }}
| |
|
| |
|
| |
| === Test avec beaucoup de données et colonnes ===
| |
|
| |
| <div class="table-container">
| |
| {{#sparql:
| |
|
| |
| SELECT ?personne ?prenom ?autresPrenoms ?nomDeFamille ?genreLabel ?domicileLabel ?dateNaissance ?dateDeces ?profession
| |
| ?lieuNaissanceLabel ?etatCivilLabel ?langueMaternelleLabel ?paysNationaliteLabel ?demandeStatutLabel ?decisionStatutLabel
| |
| ?fondsArchivesLabel ?numeroInventaire ?identifiantWikidata
| |
| (GROUP_CONCAT(DISTINCT ?appartenanceLabel; SEPARATOR = " ; ") AS ?appartenanceLabels)
| |
| WHERE {
| |
| ?personne wbt:P7 ?domicile .
| |
| ?domicile wbt:P14* wb:Q53 . # Province de Namur
| |
|
| |
| OPTIONAL { ?personne wbt:P2 ?prenom } # Prénom optionnel
| |
| OPTIONAL { ?personne wbt:P42 ?autresPrenoms } # Autres prénoms optionnel
| |
| OPTIONAL { ?personne wbt:P3 ?nomDeFamille } # Nom de famille optionnel
| |
| OPTIONAL { ?personne wbt:P4 ?genre } # Genre optionnel
| |
| OPTIONAL { ?personne wbt:P67 ?dateNaissance } # Date de naissance optionnelle
| |
| OPTIONAL { ?personne wbt:P68 ?dateDeces } # Date de décès optionnelle
| |
| OPTIONAL { ?personne wbt:P13 ?profession } # Profession optionnelle
| |
| OPTIONAL { ?personne wbt:P46 ?lieuNaissance } # Lieu de naissance optionnel
| |
| OPTIONAL { ?personne wbt:P50 ?etatCivil } # État civil optionnel
| |
| OPTIONAL { ?personne wbt:P44 ?langueMaternelle } # Langue maternelle optionnelle
| |
| OPTIONAL { ?personne wbt:P45 ?paysNationalite } # Pays de nationalité optionnel
| |
|
| |
| # Obtenir les types de statut de reconnaissance nationale demandés et obtenus (facultatif)
| |
| OPTIONAL { ?personne wbt:P54 ?demandeStatut } # Type de statuts demandés
| |
| OPTIONAL { ?personne wbt:P55 ?decisionStatut } # Type de statuts obtenus
| |
|
| |
| # Obtenir les références des archives papier concernant cette personne
| |
| ?personne p:P34 ?archives_statement . # Références des dossiers d'archives concernant cette personne
| |
| ?archives_statement ps:P34 ?fondsArchives . # Nom du fonds d'archives
| |
| ?archives_statement pq:P35 ?numeroInventaire . # Numéro du dossier associé
| |
|
| |
| OPTIONAL { ?personne wbt:P15 ?identifiantWikidata } # Identifiant Wikidata optionnel
| |
|
| |
| # Récupérer les appartenances (réseaux/mouvements) de la personne
| |
| OPTIONAL {
| |
| ?personne wbt:P52 ?appartenance . # Appartenance à des mouvements ou réseaux
| |
| ?appartenance rdfs:label ?appartenanceLabel . # Nom des réseaux/mouvements
| |
| FILTER(lang(?appartenanceLabel) = 'fr') # Filtrer pour obtenir les labels en français
| |
| }
| |
|
| |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". } # Labels en français
| |
| }
| |
| GROUP BY ?personne ?prenom ?autresPrenoms ?nomDeFamille ?genreLabel ?domicileLabel ?dateNaissance ?dateDeces ?profession
| |
| ?lieuNaissanceLabel ?etatCivilLabel ?langueMaternelleLabel ?paysNationaliteLabel ?demandeStatutLabel ?decisionStatutLabel
| |
| ?fondsArchivesLabel ?numeroInventaire ?identifiantWikidata
| |
|
| |
| LIMIT 40
| |
| | chart=bordercloud.visualization.DataTable
| |
| | options=colstyle=col6_type:date;col6_format:'dd/MM/yyyy';sortAscending:true; sortColumn:0;
| |
| | endpoint = https://query.data.arch.be/proxy/wdqs/bigdata/namespace/wdq/sparql
| |
| | log=2
| |
| }}
| |
| </div>
| |