-
Notifications
You must be signed in to change notification settings - Fork 7
Use Case: DOIs among LOD
- Getting started
- We did some DOI work at vivohack11.
This page describes how to use DataFAQs to find other LOD Cloud data sources that describe a set of publications with Digital Object Identifiers (DOIs). This pattern could be applied more generally for a particular property's value (i.e., those that are often inverse functional).
The DataOne project is working with some documents/datasets with indexing terms, e.g.:
"status"|"doi:10.5063/AA/nceas.226.3"
"status"|"doi:10.5063/AA/nceas.227.15"
""snow"|"doi:10.6073/AA/knb-lter-arc.1423.1"
"%285"|"doi:10.6073/AA/knb-lter-fce.111.5"
"%285"|"doi:10.6073/AA/knb-lter-fce.112.5"
"%285"|"doi:10.6073/AA/knb-lter-fce.108.5"
With some quick csv2rdf4lod'ing, we can get good linked data URIs that reuse bibo:
<http://dx.doi.org/10.5063/AA/nceas.227.15>
dcterms:isReferencedBy <http://localhost/source/patrice/dataset/index-term-doi-pairs/version/2013-Jan-09> ;
void:inDataset <http://localhost/source/patrice/dataset/index-term-doi-pairs/version/2013-Jan-09> ;
a index-term-doi-pairs_vocab:DigitalObject ;
bibo:doi "10.5063/AA/nceas.227.15" ;
ov:csvRow "2"^^xsd:integer .
<http://dx.doi.org/10.6073/AA/knb-lter-arc.1423.1>
dcterms:isReferencedBy <http://localhost/source/patrice/dataset/index-term-doi-pairs/version/2013-Jan-09> ;
void:inDataset <http://localhost/source/patrice/dataset/index-term-doi-pairs/version/2013-Jan-09> ;
a index-term-doi-pairs_vocab:DigitalObject ;
bibo:doi "10.6073/AA/knb-lter-arc.1423.1" ;
ov:csvRow "4"^^xsd:integer .
Since we want to model this as good Linked Data, we can get better about the source identifier and the dataset identifier, per the conventions:
- source identifier: (what organization produced this data?)
- dataset identifier: (what would the organization call it?)
Then, we can commit the source data and the enhancement parameters (per these conventions) into an existing csv2rdf4lod node such as LOGD, whose conversion data root is here.
DataFAQs revolves around two things: Datasets and FAqT Services. The data that we show above is the one dataset that we want to work with, i.e. "evaluate". We'll also need to create some FAqT Services to fulfill our use case of finding other Digital Objects that may be described elsewhere in the LOD Cloud.
First, we'll make sure that we have described the dataset appropriately.
Next, we need to model the inputs and outputs for each FAqT Service. The input to a FAqT Service is a dcat:Dataset, but we can and should add additional descriptions that are appropriate for our use case.