+ All Categories
Home > Education > Radically Open Cultural Heritage Data on the Web

Radically Open Cultural Heritage Data on the Web

Date post: 29-Oct-2014
Category:
Upload: julie-allinson
View: 6 times
Download: 2 times
Share this document with a friend
Description:
What happens when tens of thousands of archival photos are shared with open licenses, then mashed up with geolocation data and current photos? Or when app developers can freely utilize information and images from millions of books? On this panel, we'll explore the fundamental elements of Linked Open Data and discover how rapidly growing access to metadata within the world's libraries, archives and museums is opening exciting new possibilities for understanding our past, and may help in predicting our future. Our panelists will look into the technological underpinnings of Linked Open Data, demonstrate use cases and applications, and consider the possibilities of such data for scholarly research, preservation, commercial interests, and the future of cultural heritage data.
Popular Tags:
26
this is the story of making some open linked* data *disclaimer: it’s not very linked yet
Transcript
Page 1: Radically Open Cultural Heritage Data on the Web

this is the story of making some open linked* data

*disclaimer: it’s not very linked yet

Page 2: Radically Open Cultural Heritage Data on the Web

we had a little project in York ...

Page 3: Radically Open Cultural Heritage Data on the Web

to expose ‘The London Art World 1660-1735’ dataset - several years of history of

art research trawling primary and secondary sources of information about

into art sales, people, places and artworks all contained in spreadsheets

Page 4: Radically Open Cultural Heritage Data on the Web

first we put the data on the web

simple database-driven web sitethis is about an art sale

artworld.york.ac.uk

Page 5: Radically Open Cultural Heritage Data on the Web

ok, so it’s on the web, it has some links, it’s open, right? can I go now? ... not so fast, I’m not

done yet

Page 6: Radically Open Cultural Heritage Data on the Web

how does a machine know that this is about an art

sale?

and these are links to info about people and places?

and how can someone get at this info and do

interesting things with it?like enrich it with information from

elsewhere?

Page 7: Radically Open Cultural Heritage Data on the Web

linked open data... describing real-world things and the relationships between

them in a machine-readable way

Page 8: Radically Open Cultural Heritage Data on the Web

in walks RDF: Resource (identifying resources on

the web) Description (and describing them) Framework (with a model

based on triples and graphs)

Page 9: Radically Open Cultural Heritage Data on the Web

<someArtist> <occupied> <somePlace>

<someArtist> <painted> <somePainting>

<somePainting> <soldIn> <someSale>

<someSale> <happenedIn> <somePlace>

<someCatalogue> <describes> <someSale>

<someSaleItem> <soldFor> <somePrice>

<someBuyer> <purchased> <someSaleItem>

SUBJECT PREDICATE(aka relationship) OBJECT

all of these will be uris

this is not the rdf you are looking

for

RDF - all

abouttriples

Page 10: Radically Open Cultural Heritage Data on the Web

an ontology is a standardized representation

of knowledge as a set of concepts within adomain, and the relationships between thoseconcepts. It can be used to reason about theentities within that domain, and may be used

to describe the domain (wikipedia)

or, put another way “a standard way of describing stufffor a given domain” (me)

Page 11: Radically Open Cultural Heritage Data on the Web

we should either use terms from existing ontologies or create and publish our terms using

standard approaches

Page 12: Radically Open Cultural Heritage Data on the Web

we created an event-driven ontology based on DUL (DOLCE Ultra Lite) and

LODE (Linked Open Events)

why?

because we wanted to create rich and specific data but ensure our data could still be understood in a generic and low

barrier way

Page 13: Radically Open Cultural Heritage Data on the Web

dlib.york.ac.uk/ontologies

Page 14: Radically Open Cultural Heritage Data on the Web

linking means making connections between our

data and others

Page 15: Radically Open Cultural Heritage Data on the Web

we linked our people to viaf and some of our places to geonames ...

<ourPerson> <sameas> <viafPerson>

<ourPlace> <sameas> <geonamesPlace>

... a data consumer can start following this network of links

Page 16: Radically Open Cultural Heritage Data on the Web

making data

Page 17: Radically Open Cultural Heritage Data on the Web

image: http://www.flickr.com/photos/kikishua/5451503709/

Page 18: Radically Open Cultural Heritage Data on the Web

spreadsheet cleanup with scripting, a database and some Google refine action*

* google refine is very useful for dealing with messy spreadsheets + has an rdf plugin

Page 19: Radically Open Cultural Heritage Data on the Web

a turtle* document for each of our 38,000 primary ‘entities’

saleperson

placeartworksource

stored in dlib.york.ac.uk and indexed in sindice.com** semantic search engine

* a format for creating rdf data ** try a search for sale domain:dlib.york.ac.uk

Page 20: Radically Open Cultural Heritage Data on the Web

<http://dlib.york.ac.uk/data/place/34867>void:inDataset :OpenART;foaf:primaryTopic <http://dlib.york.ac.uk/id/place/34867>;rdf:type foaf:Document, dctype:Text .

<http://dlib.york.ac.uk/data/place/34867/turtle>void:inDataset <http://dlib.york.ac.uk/data/void.ttl#OpenART>;rdf:type foaf:Document, dctype:Text .

<http://dlib.york.ac.uk/data/place/34867/rdf>void:inDataset <http://dlib.york.ac.uk/data/void.ttl#OpenART>;rdf:type foaf:Document, dctype:Text .

<http://dlib.york.ac.uk/id/place/34867>mapping:hasResearchID "3.0548"^^<xsd:string>;rdfs:label "The Green Doors in the Little Piazza, Covent Garden; sale venue";vocupper:hasPlaceName "The Green Doors in the Little Piazza, Covent Garden";vocupper:hasBuildingName "The Green Doors";vocupper:hasStreetName "Little Piazza";vocupper:hasCity "London";vocupper:hasCounty "Greater London";vocupper:hasCountry "England";vochoa:hasContributorOfSource "Richard Stephens";

oactxt:venueOfSale <http://dlib.york.ac.uk/id/sale/34948>;

oactxt:venueOfSale <http://dlib.york.ac.uk/id/sale/34949>;oactxt:venueOfSale <http://dlib.york.ac.uk/id/sale/34950>;oactxt:venueOfSale <http://dlib.york.ac.uk/id/sale/34951>;oactxt:venueOfSale <http://dlib.york.ac.uk/id/sale/34952>;

vocupper:liesWithin [owl:sameas <http://www.geonames.org/6269131/>;rdf:type model:Place, vocupper:Country,

owl:NamedIndividual];

rdf:type model:Place, owl:NamedIndividual .

SUBJECT

OBJECT

PREDICATE

LINKED

Page 21: Radically Open Cultural Heritage Data on the Web

DISCLAIMER

ours was one approach

it is very experimental and is imperfect in various ways

it showed that we could do linked data with an existing system

we want to do more

Page 22: Radically Open Cultural Heritage Data on the Web

linked open data is leap of faith -

you have to expose data before people can

consume data

Page 23: Radically Open Cultural Heritage Data on the Web

aim high -if we all put out high

quality rich data we can do high quality AND low

barrier things with it

Page 24: Radically Open Cultural Heritage Data on the Web

we had a little project in York ...

there are 77981 results for ‘York’ in geonames

Page 25: Radically Open Cultural Heritage Data on the Web

we had a little project in http://www.geonames.org/26333

52/ ...

Page 26: Radically Open Cultural Heritage Data on the Web

credits

Richard Stephens: data creatorTate: data partners

Martin Dow: ontology devStephen Bayliss: ontology dev

Paul Young: data transformLOCAH project: inspiration

Jon Voss: lodlam guruUniversity of York: institutional support

JISC: funding

@[email protected]

http://tinyurl.com/dlib-openart #LODLAM #sxsw


Recommended