âOpen Data Webâ â A Linked Open Data Repository Built with CKAN
Recommend Documents
Aug 3, 2015 - To submit your application, please send an email to VIVO Director ... open ontology, open process platform
Aug 3, 2015 - Starâ VIVO Linked Open Data of interest to the VIVO community? ... Organization and presentation of the
Abstract. There is a vast amount of linked open data published nowadays on the web, ranging from user-generated data to government public data. This data.
Mar 29, 2011 - 1. INTRODUCTION. The Linked Open Data (LOD) numbers over 200 datasets, more ... As a scenario, one can co
Dec 2, 2014 - Lama, Barack Obama, or Rihanna? (cf figure 1) .... Twitter and Facebook, and Linked Open Data sources such as DBLP, Semantic. Web Dog ...
We can embark on exciting projects such as creating a heritage map or incorporating our high quality, trustworthy inform
AbstractâWhile Linked Open Data (LOD) has gained much attention in the recent years, requirements and the challenges concerning its usage from a database ...
being published on the Web as Linking Open Data (LOD). However, we .... relevant for our survey and form the core of this pa- per. ..... Digital signatures based.
of domains such as media, geography, life sciences, government etc.2. However ...... For instance, if such a website publishes cheap flights just to attract a large ...
Jul 13, 2016 - Keywords. Semantic trajectory, data interlinking, Linked Open Data ... becoming the base of big data analysis in several application fields, from ..... dell'Olio. Palazzo. Vecchio. Stop 5. Ponte. Vecchio. End. 10:30 am. 11.01 am.
Linked Open Data cloud, which is a topic addressed from different angles by several ... formalizing linguistic resources as ontologies, using the Web Ontology ...
Open linked data model revelation and access for analytical web science. Juan Manuel Dodero1, Iván Ruiz-Rube1, Manuel Palomo-Duarte1, and Juan.
IOS Press. World War 1 as Linked Open Data. Editor(s): Name Surname, University, Country ... Keywords: linked data, hist
To focus the work, a constraining subject domain had to be selected. As historical interest in the First. World War is o
IOS Press. LinkedSpending: OpenSpending becomes. Linked Open Data ... 0000-0000/13/$00.00 c 2013 â IOS Press and the authors. All rights ... into account.
Jun 21, 2011 - Ian McKellen. Tom Hanks. Carnelutti. Mystery genre. Victor Alfieri. England. Jude Law. Guy Ritchie. DaVinci Code. Book. Illuminati. Book.
Managing Editor, Getty Vocabulary Program ...... where auto-links are not possible link to .... It builds upon standard
May 8, 2013 - The scripts use SQL to query the database and output triples using print ..... tent overview of the release in question. The ChEMBL ..... considering strategies for optimization. ..... An interview with John Overington, team leader,.
open data to expose and document their schema so that users can make sense of it. ..... ups for disaster recovery. Data are tested ... corrupted downloaded files.
Nov 4, 2008 - since repositories such as DBpedia associate entities with types, such as those from the YAGO and Wikipedia type hierarchy [1]. As a separate ...
starting point. Once satisfied that all available datasets have been identified, the process of creating an ex- ternally
Website Development. Akron, Inc. Funding .... national governments, including ten developing countries ..... Philippines
Oct 31, 2013 - business to secure the benefits from open data, and we've looked at a ... civil society and technologist
âOpen Data Webâ â A Linked Open Data Repository Built with CKAN
Oct 4, 2016 - ... a dataset by linking it to third-party datasets. ⢠Ex. Enrich a dataset about paintings by linking them to the corresponding artists in Wikidata. 5 ...
“Open Data Web” – A Linked Open Data Repository Built with CKAN Cheng-Jen Lee Andrea Wei-Ching Huang Tyng-Ruey Chuang Institute of Information Science, Academia Sinica, Taiwan CKANCon 2016@Madrid 2016/10/04
Slide and Transcript Slide
Transcript
https://hackmd.io/s/rJIcV6Op ..or search for #CKANCon on
2
Outline • Data Source • Linked Data • From Archive Catalog to Linked Data • Linked Open Data Repository: Open Data Web • System Architecture • Implementation • Limitations • Future Work 3
Data Source • Union Catalog of Digital Archives Taiwan • http://catalog.digitalarchives.tw
• Web catalog for digitized archives in 14 domains from many institutions. • Part of the catalog is released under CC licenses • About 840,000 catalog records. • Free to copy and redistribute.
• Represent resources in a linked data format • Provide semantic query for time, place, object, etc. • Enrich resources by linking them to third-party datasets. 4
Linked Data • Linked Data (from Wikipedia) • A method of publishing structured data. • It can be interlinked and become more useful through semantic queries. • Linked Open Data is linked data that is open content. • Mostly in the form of RDF.
• RDF (from W3C RDF 1.1 Primer) • • • •
Resource Description Framework A framework for expressing information about resources. RDF can enrich a dataset by linking it to third-party datasets. Ex. Enrich a dataset about paintings by linking them to the corresponding artists in Wikidata. 5
From Archive Catalog to Linked Data • We converted archive catalog to two versions of linked data. • Version D: triples with just Dublin Core descriptions from the catalog • D means Dublin Core
• Version R: mapping column values in the catalog to external datasets (with domain vocabularies) to give enriched semantics • R means Refined • Extract place names from "Coverage" column (dc:coverage) in the catalog and map them to place IDs on geonames.org. • Normalize values in "Date" column (dc:date) to ISO8601 format, or map them to Wikidata IDs. • Map titles of biology archives to entries on Encyclopedia of Life. 7
Vocabulary Mapping and Data Python Scripts: https://gitlab.com/iislod/dat2ld Conversion Archive Catalog XML&CSV
Icon made by SimpleIcon (http://www.flaticon.com/aut hors/simpleicon) and Freepik (http://www.flaticon.com/aut hors/freepik)
User
Computer
19
Implementation (1/3) • Custom fields • ckanext-scheming and ckanext-repeating extension • Define CKAN custom fields for a data type in a JSON file • Each data type has its own directory. • Ex. record.json is for D ver. (http://data.odw.tw/record/) • A field is defined by a JSON object, for example: { "field_name": "dc:format", "label": "dc:format", "display_property": "dc:format", "preset": "repeating_text_modified”
},
20
Implementation (2/3) • Import linked data • ckanext-dcat extension for linked data import/export • CKAN harvesting mechanism by ckanext-harvest extension • Extend DCATRDFHarvester in ckanext.dcat.harvesters.rdf
• Extend RDFProfile in ckanext.dcat.profiles • def parse_dataset(self, dataset_dict, dataset_ref): • (Import) Parse dataset_ref from loaded linked data to CKAN’s dataset_dict
• def graph_from_dataset(self, dataset_dict, dataset_ref): • (Export) Generate a linked data graph dataset_ref from CKAN’s dataset_dict
• Modify ckanext-dcat itself • To support more namespace (ckanext-dcat is originally designed for DCAT vocabularies.) 21