Main Page: Difference between revisions

From clb-lod
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Welcome to CLB-LOD Wikibase, a Wikibase instance hosted on [https://wikibase.cloud wikibase.cloud]. This is a sandbox for working towards MARC bibliographical records LOD-ification, with the final goal of their integration in Wikidata, with [https://clb.ucl.cas.cz/en/ CLB Czech Literary Bibliography] MARC-XML data as showcase. This is a project carried out in the framework of [https://www.dariah.eu/activities/working-groups/bibliographical-data-bibliodata/ DARIAH WG Bibliodata].
Welcome to CLB-LOD Wikibase, a Wikibase instance hosted on [https://wikibase.cloud wikibase.cloud]. This is a sandbox for working towards MARC bibliographical records LOD-ification, with the final goal of their integration in Wikidata, with [https://clb.ucl.cas.cz/en/ CLB Czech Literary Bibliography] MARC-XML data as showcase. This is a project carried out in the framework of [https://www.dariah.eu/activities/working-groups/bibliographical-data-bibliodata/ DARIAH WG Bibliodata].


== SPARQL Queries ==
This experiment has been presented at the ''Mutual Learning Workshop for Improving Cultural Heritage Bibliographical Data'' (DARIAH Bibliodata WG, Prague), in 2022. See slides at  https://zenodo.org/records/7250730
=== UDC Classificators in CLB-LOD ===
UDC Classificators, at the moment, are represented as literals as in MARC. A conceptual mapping, i.e. linking classificators to concepts, is planned.
<sparql tryit="1">
PREFIX clbwb: <https://clb-lod.wikibase.cloud/entity/>
PREFIX clbdp: <https://clb-lod.wikibase.cloud/prop/direct/>
PREFIX clbp: <https://clb-lod.wikibase.cloud/prop/>
PREFIX clbps: <https://clb-lod.wikibase.cloud/prop/statement/>
PREFIX clbpq: <https://clb-lod.wikibase.cloud/prop/qualifier/>
PREFIX clbpr: <https://clb-lod.wikibase.cloud/prop/reference/>
PREFIX clbno: <https://clb-lod.wikibase.cloud/prop/novalue/>


select ?udc_literal (count(?wikibase_item) as ?bibitems)
The code used in this experiment for re-modeling and sending MARC records to Wikibase is found here: https://github.com/dlindem/wikibase/tree/main/clb
       
where {
  ?wikibase_item clbp:P86 [clbpq:P87 ?udc_literal] .
 
} group by ?udc_literal ?bibitems order by desc(?bibitems)
</sparql>


See also some more [[SPARQL examples]].
== SPARQL Queries ==
See [[SPARQL examples]].

Latest revision as of 14:12, 6 June 2024

Welcome to CLB-LOD Wikibase, a Wikibase instance hosted on wikibase.cloud. This is a sandbox for working towards MARC bibliographical records LOD-ification, with the final goal of their integration in Wikidata, with CLB Czech Literary Bibliography MARC-XML data as showcase. This is a project carried out in the framework of DARIAH WG Bibliodata.

This experiment has been presented at the Mutual Learning Workshop for Improving Cultural Heritage Bibliographical Data (DARIAH Bibliodata WG, Prague), in 2022. See slides at https://zenodo.org/records/7250730

The code used in this experiment for re-modeling and sending MARC records to Wikibase is found here: https://github.com/dlindem/wikibase/tree/main/clb

SPARQL Queries

See SPARQL examples.