SlideShare a Scribd company logo
1 of 35
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 1
Ziziphus mucronata Source: JMK / Wikimedia
VRA Core 4 in Transcultural Studies
Adopting Core 4 in a DH Environment
Matthias Arnold, Heidelberg | Session VRA Core 4 Unbound | March 13, 2014 | VRA 32nd Annual Conference
The Cluster of Excellence
"Asia and Europe in a Global Context: The Dynamics of Transculturality“
Established in October 2007 as part of the Excellence Initiative by the German
Federal and State Governments, carried out by the German Research
Foundation (DFG) and the German Council of Science and Humanities
(Wissenschaftsrat)
Aim is to “enhance the understanding of the multi-layered interactions between
and within Asia and Europe”
Ca. 60 projects organized in 17 interdisciplinary research groups and 4 research
areas; DH unit: Heidelberg Research Architecture (HRA)
5 new professorships, Graduate School, M.A. Transcultural Studies
The Karl-Jaspers Centre for Advanced Transcultural Studies, Heidelberg
Photo M. Arnold 2010
(Some) Research fields:
Anthropology, Archaeology, Art History, Buddhist Studies,
Chinese Studies, Egyptology, Historical Studies,
Indology, Islam Studies, Japanese Studies, Law, Media
and Communication Studies, Musicology, Public Health,
Political Sciences, Religious Studies, Social Sciences,
Tibetan Studies, and more
Languages: English, German
Chinese, Japanese, Arabic, Hindi, Bengali, Sanskrit,
Russian, etc.
The Heidelberg Research Architecture (HRA)
HRA is a cooperation partner to Cluster projects providing
consultation – training – development
with partners on local, national, international level.
Small team
6 people - 3 positions for programming
Closely related to the newly established Junior Research Group
“Digital Humanities - Digital Cultural Heritage”
The Karl-Jaspers Centre for Advanced Transcultural Studies, Heidelberg
Photo M. Arnold 2010
Main Expertise:
General Digital Humanities consultancy for projects –
Conceptual design for DH related tasks
Digitisation, MediaLab – Workflows and documentation –
Data migration – Workshops and trainings – Co-teaching
Project databases – Research analysis
Development: Metadata Framework Tamboti
Webportal: http://hra.uni-hd.de
Development I: Project databases
Development II: Tamboti Metadata Framework
A „suite of web applications that forms an integrated environment for
interdisciplinary and internationally distributed studies in transcultural
dynamics.“
• Modular structure, applications within eXist-db
• LDAP integration, granular access control
• Users can store, organise, share, and publish multilingual metadata
records of different media formats: text, image, video, audio
• Different intl. standardized metadata schemas (sustainability, data
exchange); one search for all data/schemas
currently integrated formats: MODS - VRA core - TEI, Wiki records,
video annotation records (structured notes in MODS), text extracted from
uploaded PDF files, name authority files (e.g. MADS)
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 6
Source code: https://github.com/eXist-db/tamboti Heidelberg instance: http://tamboti.uni-hd.de
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 8
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 9
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 10
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 11
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 12
A framework for metadata and annotations
Bibliographic information in
MODS
Image metadata in VRA core 4
with Ziziphus
Part of video and part of audio
annotation with pan.do/ra
Part of image annotation with
HyperImage
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 14
Ziziphus mucronata Source: JMK / Wikimedia
Ziziphus – The VRA Core editor
Digital still image metadata editor
Some requirements
• Integration with Tamboti Metadata Framework
• Saving data writes XML (store directly into db)
• Form based editing (do not expose xml to users)
• Customisable interface (e.g. based on editor roles)
• Integration of controlled vocabularies
• Allow multilingual data
• Encode agent roles
• Allow agents (with roles) for descriptions
• Allow alternative notation of dates
• Add local data
• Keep code for editing forms simple
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 17
local extension
of
VRA Core
1) Multilingual data
VRA Core allows xml:lang
Problem: encoding more complex data
xml:lang="ja-Latn-x-ala“
=> new global attributes:
• @language
three-character code according to ISO 639-2b (e.g. eng, ger, chi, hin)
• @script
four-character code according to ISO 15924 (e.g. Latn, Arab, Hans, Deva)
• @transliteration
list of “transliteration schemas” based on ALA-LC (e.g. “Arabic/ALA-LC”,
“Chinese/modified Wade-Giles”)
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 18
2) Agents: roles and „description-authors“
• additional @vocab and @type to accommodate list of MARC
relator terms
• allow repeatable agents (“author”) within <description>
<description>
<text lang="eng" script="Latn">some description</text>
<author>
<name vocab="local" type="personal" refid="uuid of person">
name of author</name>
<role vocab="marcrelator" type="code">aut</role>
</author>
<author>
<name vocab="local" type="personal" refid="uuid of person">
name of editor</name>
<role vocab="marcrelator" type="code">edt</role>
</author>
</description>
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 19
3) Dates: uncertainty and alternativeNotation
• based on recommendations in CCO:
additional @type: about, before, after, active
->will allow better computing of numerical date values
<earliestDate type="before">1256</earliestDate>
• subelement <alternativeNotation> for non-western calendar data
<date>
<earliestDate>1941-03-06
<alternativeNotation lang=”chi” script=”Hant”>民國三十年三月六日
</alternativeNotation>
<alternativeNotation lang=”chi” transliteration=”Chinese/ALA-LC”>
Minguo 30 nian 3 yue 6 ri</alternativeNotation>
</earliestDate>
</date>
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 20
4) Avoid „code explosion“
VRA Core 4 very flexible:
• all global attributes may be attached to every element
• we even added more global attributes
• for automatically generated forms: editor too flexible!
=> restriction:
global attributes may only be used below <elementSet> level
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 21
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 22
Ziziphus mucronata Source: JMK / Wikimedia
Ziziphus Demonstration (Screencast)
Watch the video online:
http://kjc-sv030.kjc.uni-heidelberg.de/OM/480p.webm
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 25
Ziziphus mucronata Source: JMK / Wikimedia
Outlook
Ziziphus
Next steps in development:
• Implement controlled vocabularies: VIAF (ongoing), Getty AAT
• Improve batch upload
• Relations editor
• Group editing: viewer (ongoing) -> editor
• Documentation
Medium-term plans
• Read/write embedded metadata
• Export to RDF
• Standalone editor
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 27
Ziziphus
Currently working on Beta 2 version (v0.30):
https://github.com/betterFORM/ziziphus/
Access Tamboti/Ziziphus for testing:
• testuser accounts (name is password)
• testuser1 - testuser2 - testuser3
• documentation in preparation
• http://ziziphus-help.uni-hd.de
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 28
Ziziphus
Currently working on Beta 2 version (v0.30):
https://github.com/betterFORM/ziziphus/
Access Tamboti/Ziziphus for testing:
• testuser accounts (name is password)
• testuser1 - testuser2 - testuser3
• documentation in preparation
• http://ziziphus-help.uni-hd.de
Are you interested in working with us on the VRA editor?
We are seeking collaboration partners to further develop Ziziphus.
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 29
VRA Core
Documentation of our VRA Core 4 extensions: Google docs
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 31
VRA Core
Possible further additions/modifications
• Grouping of elements
• put original script, transliteration, and translation in one element,
e.g. inscription, title
• Calendar information
• Identify the calendar, e.g. Julian/Gregorian, Minguo, Japan, Hindu,
Coptic, Buddhist…
• Dealing with user-defined elements
• not all variants of data can be covered by the core – how to allow
users to add their own elements?
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 32
VRA Core
Expanding the use of VRA Core
Tamboti
• Wiki and slideshow modules use images from Zizphus
Next step: use VRA Core metadata (e.g. title, description)
External applications
• HyperImage (part-of-image-annotation): add VRA core as
metadata schema
• pan.do/ra (part-of-video annotation): include image metadata
Provide sample records
• from Priya Paul Collection: whole collection is available
http://priyapaulcollection.uni-hd.de/
• in preparation: 10 records as full metadata samples
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 33
VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 34
Contact:
http://hra.uni-hd.de
http://tamboti.uni-hd.de
http://ziziphus-help.uni-hd.de
ziziphus@asia-europe.uni-heidelberg.de
matthias.arnold@uni-hd.de

More Related Content

What's hot

Improving long-term preservation of EOS data by independently mapping HDF4 da...
Improving long-term preservation of EOS data by independently mapping HDF4 da...Improving long-term preservation of EOS data by independently mapping HDF4 da...
Improving long-term preservation of EOS data by independently mapping HDF4 da...
The HDF-EOS Tools and Information Center
 
Repository technologies
Repository technologiesRepository technologies
Repository technologies
Andrea Bollini
 
DSpace for Cultural Heritage: adding support for images visualization,audio/v...
DSpace for Cultural Heritage: adding support for images visualization,audio/v...DSpace for Cultural Heritage: adding support for images visualization,audio/v...
DSpace for Cultural Heritage: adding support for images visualization,audio/v...
Andrea Bollini
 
Mark Zöpfgen: Software-Supported Bibliographic Recording and Linked Data
Mark Zöpfgen: Software-Supported Bibliographic Recording and Linked DataMark Zöpfgen: Software-Supported Bibliographic Recording and Linked Data
Mark Zöpfgen: Software-Supported Bibliographic Recording and Linked Data
mbruemmer
 

What's hot (20)

Ephedra: efficiently combining RDF data and services using SPARQL federation
Ephedra: efficiently combining RDF data and services using SPARQL federationEphedra: efficiently combining RDF data and services using SPARQL federation
Ephedra: efficiently combining RDF data and services using SPARQL federation
 
Getting Started with Knowledge Graphs
Getting Started with Knowledge GraphsGetting Started with Knowledge Graphs
Getting Started with Knowledge Graphs
 
Improving long-term preservation of EOS data by independently mapping HDF4 da...
Improving long-term preservation of EOS data by independently mapping HDF4 da...Improving long-term preservation of EOS data by independently mapping HDF4 da...
Improving long-term preservation of EOS data by independently mapping HDF4 da...
 
Introduction to HDF5
Introduction to HDF5Introduction to HDF5
Introduction to HDF5
 
DSpace-CRIS: a CRIS enhanced repository platform
DSpace-CRIS: a CRIS enhanced repository platformDSpace-CRIS: a CRIS enhanced repository platform
DSpace-CRIS: a CRIS enhanced repository platform
 
ESWC 2017 Tutorial Knowledge Graphs
ESWC 2017 Tutorial Knowledge GraphsESWC 2017 Tutorial Knowledge Graphs
ESWC 2017 Tutorial Knowledge Graphs
 
Repository technologies
Repository technologiesRepository technologies
Repository technologies
 
DSpace for Cultural Heritage: adding support for images visualization,audio/v...
DSpace for Cultural Heritage: adding support for images visualization,audio/v...DSpace for Cultural Heritage: adding support for images visualization,audio/v...
DSpace for Cultural Heritage: adding support for images visualization,audio/v...
 
Visual Ontology Modeling for Domain Experts and Business Users with metaphactory
Visual Ontology Modeling for Domain Experts and Business Users with metaphactoryVisual Ontology Modeling for Domain Experts and Business Users with metaphactory
Visual Ontology Modeling for Domain Experts and Business Users with metaphactory
 
3.24.15 Slides, “New Possibilities: Developments with DSpace and ORCID”
3.24.15 Slides, “New Possibilities: Developments with DSpace and ORCID”3.24.15 Slides, “New Possibilities: Developments with DSpace and ORCID”
3.24.15 Slides, “New Possibilities: Developments with DSpace and ORCID”
 
Web Data Engineering - A Technical Perspective on Web Archives
Web Data Engineering - A Technical Perspective on Web ArchivesWeb Data Engineering - A Technical Perspective on Web Archives
Web Data Engineering - A Technical Perspective on Web Archives
 
DSpace standard Data model and DSpace-CRIS
DSpace standard Data model and DSpace-CRISDSpace standard Data model and DSpace-CRIS
DSpace standard Data model and DSpace-CRIS
 
The Information Workbench - Linked Data and Semantic Wikis in the Enterprise
The Information Workbench - Linked Data and Semantic Wikis in the EnterpriseThe Information Workbench - Linked Data and Semantic Wikis in the Enterprise
The Information Workbench - Linked Data and Semantic Wikis in the Enterprise
 
5.15.17 Powering Linked Data and Hosted Solutions with Fedora Webinar Slides
5.15.17 Powering Linked Data and Hosted Solutions with Fedora Webinar Slides5.15.17 Powering Linked Data and Hosted Solutions with Fedora Webinar Slides
5.15.17 Powering Linked Data and Hosted Solutions with Fedora Webinar Slides
 
Mark Zöpfgen: Software-Supported Bibliographic Recording and Linked Data
Mark Zöpfgen: Software-Supported Bibliographic Recording and Linked DataMark Zöpfgen: Software-Supported Bibliographic Recording and Linked Data
Mark Zöpfgen: Software-Supported Bibliographic Recording and Linked Data
 
Web Data Engineering - A Technical Perspective on Web Archives
Web Data Engineering - A Technical Perspective on Web ArchivesWeb Data Engineering - A Technical Perspective on Web Archives
Web Data Engineering - A Technical Perspective on Web Archives
 
Incubating Apache Linda (ApacheCon Europe 2012)
Incubating Apache Linda (ApacheCon Europe 2012)Incubating Apache Linda (ApacheCon Europe 2012)
Incubating Apache Linda (ApacheCon Europe 2012)
 
Linked Statistical Data: does it actually pay off?
Linked Statistical Data: does it actually pay off?Linked Statistical Data: does it actually pay off?
Linked Statistical Data: does it actually pay off?
 
The HDF Group: Community models and outreach
The HDF Group: Community models and outreachThe HDF Group: Community models and outreach
The HDF Group: Community models and outreach
 
Scaling up Linked Data
Scaling up Linked DataScaling up Linked Data
Scaling up Linked Data
 

Viewers also liked

VRA 2014 Case Studies in International Copyright, Ciuffa
VRA 2014 Case Studies in International Copyright, CiuffaVRA 2014 Case Studies in International Copyright, Ciuffa
VRA 2014 Case Studies in International Copyright, Ciuffa
Visual Resources Association
 

Viewers also liked (7)

Indispensable: How to Buck the Generalization Trend and Keep Doing What you ...
Indispensable: How to Buck the Generalization Trend and Keep Doing What you ...Indispensable: How to Buck the Generalization Trend and Keep Doing What you ...
Indispensable: How to Buck the Generalization Trend and Keep Doing What you ...
 
Visual Resourcefulness
Visual ResourcefulnessVisual Resourcefulness
Visual Resourcefulness
 
Visual Resources as Archives: The Case of the Lane Brothers and Tracy O'Neal ...
Visual Resources as Archives: The Case of the Lane Brothers and Tracy O'Neal ...Visual Resources as Archives: The Case of the Lane Brothers and Tracy O'Neal ...
Visual Resources as Archives: The Case of the Lane Brothers and Tracy O'Neal ...
 
Dragon printer tutorial
Dragon printer tutorialDragon printer tutorial
Dragon printer tutorial
 
I Spy with My Little Eye - Teaching Visual Literacy
I Spy with My Little Eye - Teaching Visual LiteracyI Spy with My Little Eye - Teaching Visual Literacy
I Spy with My Little Eye - Teaching Visual Literacy
 
Nineteenth-Century Art Worldwide: Opportunities and Challenges of Electronic ...
Nineteenth-Century Art Worldwide: Opportunities and Challenges of Electronic ...Nineteenth-Century Art Worldwide: Opportunities and Challenges of Electronic ...
Nineteenth-Century Art Worldwide: Opportunities and Challenges of Electronic ...
 
VRA 2014 Case Studies in International Copyright, Ciuffa
VRA 2014 Case Studies in International Copyright, CiuffaVRA 2014 Case Studies in International Copyright, Ciuffa
VRA 2014 Case Studies in International Copyright, Ciuffa
 

Similar to VRA 2014 VRA Core Unbound, Arnold

Linked Data Publishing with Drupal (SWIB13 workshop)
Linked Data Publishing with Drupal (SWIB13 workshop)Linked Data Publishing with Drupal (SWIB13 workshop)
Linked Data Publishing with Drupal (SWIB13 workshop)
Joachim Neubert
 

Similar to VRA 2014 VRA Core Unbound, Arnold (20)

Latest developments in Hydra-land - Chris Awre, University of Hull
Latest developments in Hydra-land - Chris Awre, University of HullLatest developments in Hydra-land - Chris Awre, University of Hull
Latest developments in Hydra-land - Chris Awre, University of Hull
 
NIF 2.0 Phd thesis intermediate report
NIF 2.0 Phd thesis intermediate reportNIF 2.0 Phd thesis intermediate report
NIF 2.0 Phd thesis intermediate report
 
Data Interoperability
Data InteroperabilityData Interoperability
Data Interoperability
 
Get A Head on Your Repository
Get A Head on Your RepositoryGet A Head on Your Repository
Get A Head on Your Repository
 
DSpace Update from Open Repositories 2014
DSpace Update from Open Repositories 2014DSpace Update from Open Repositories 2014
DSpace Update from Open Repositories 2014
 
11.5.14 Presentation Slides, “Fedora 4.0 in Action at Penn State and Stanford”
11.5.14 Presentation Slides, “Fedora 4.0 in Action at Penn State and Stanford”11.5.14 Presentation Slides, “Fedora 4.0 in Action at Penn State and Stanford”
11.5.14 Presentation Slides, “Fedora 4.0 in Action at Penn State and Stanford”
 
From Box to Hydra via Archivematica
From Box to Hydra via ArchivematicaFrom Box to Hydra via Archivematica
From Box to Hydra via Archivematica
 
HDF Status and Development
HDF Status and DevelopmentHDF Status and Development
HDF Status and Development
 
Ukcorr hydra presentation
Ukcorr hydra presentationUkcorr hydra presentation
Ukcorr hydra presentation
 
Hdf5 parallel
Hdf5 parallelHdf5 parallel
Hdf5 parallel
 
Linked Data Publishing with Drupal (SWIB13 workshop)
Linked Data Publishing with Drupal (SWIB13 workshop)Linked Data Publishing with Drupal (SWIB13 workshop)
Linked Data Publishing with Drupal (SWIB13 workshop)
 
Wilcox - Open Source Repositories and the Future of Fedora
Wilcox - Open Source Repositories and the Future of FedoraWilcox - Open Source Repositories and the Future of Fedora
Wilcox - Open Source Repositories and the Future of Fedora
 
d:swarm - A Library Data Management Platform Based on a Linked Open Data Appr...
d:swarm - A Library Data Management Platform Based on a Linked Open Data Appr...d:swarm - A Library Data Management Platform Based on a Linked Open Data Appr...
d:swarm - A Library Data Management Platform Based on a Linked Open Data Appr...
 
SCAPE Presentation at the Elag2013 conference in Gent/Belgium
SCAPE Presentation at the Elag2013 conference in Gent/BelgiumSCAPE Presentation at the Elag2013 conference in Gent/Belgium
SCAPE Presentation at the Elag2013 conference in Gent/Belgium
 
Hydra for CNI Spring 2014 Meeting
Hydra for CNI Spring 2014 MeetingHydra for CNI Spring 2014 Meeting
Hydra for CNI Spring 2014 Meeting
 
HDF Update
HDF UpdateHDF Update
HDF Update
 
Introduction to Metadata for IDAH Fellows
Introduction to Metadata for IDAH FellowsIntroduction to Metadata for IDAH Fellows
Introduction to Metadata for IDAH Fellows
 
Take control of your PhD journey: Manage your research data according to best...
Take control of your PhD journey: Manage your research data according to best...Take control of your PhD journey: Manage your research data according to best...
Take control of your PhD journey: Manage your research data according to best...
 
10.15.14 Presentation Slides, “Fedora 4.0 in Action at The Art Institute of C...
10.15.14 Presentation Slides, “Fedora 4.0 in Action at The Art Institute of C...10.15.14 Presentation Slides, “Fedora 4.0 in Action at The Art Institute of C...
10.15.14 Presentation Slides, “Fedora 4.0 in Action at The Art Institute of C...
 
Implementing Archivematica, research data network
Implementing Archivematica, research data networkImplementing Archivematica, research data network
Implementing Archivematica, research data network
 

More from Visual Resources Association

Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...
Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...
Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...
Visual Resources Association
 
The Medieval Kingdom of Sicily Image Database Project: From Concept to Reality
The Medieval Kingdom of Sicily Image Database Project: From Concept to RealityThe Medieval Kingdom of Sicily Image Database Project: From Concept to Reality
The Medieval Kingdom of Sicily Image Database Project: From Concept to Reality
Visual Resources Association
 
Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...
Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...
Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...
Visual Resources Association
 
Cradle of Texas Gay Liberty: An Alternate History of the Alamo City
Cradle of Texas Gay Liberty: An Alternate History of the Alamo CityCradle of Texas Gay Liberty: An Alternate History of the Alamo City
Cradle of Texas Gay Liberty: An Alternate History of the Alamo City
Visual Resources Association
 
Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...
Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...
Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...
Visual Resources Association
 
Disinformation and Deepfakes: The Urgent Need for Visual Literacy
Disinformation and Deepfakes: The Urgent Need for Visual LiteracyDisinformation and Deepfakes: The Urgent Need for Visual Literacy
Disinformation and Deepfakes: The Urgent Need for Visual Literacy
Visual Resources Association
 
Jean Charlot: Artist as Archivist
Jean Charlot: Artist as ArchivistJean Charlot: Artist as Archivist
Jean Charlot: Artist as Archivist
Visual Resources Association
 
Pattern and Representation: Critical Cataloging for a New Perspective on Camp...
Pattern and Representation: Critical Cataloging for a New Perspective on Camp...Pattern and Representation: Critical Cataloging for a New Perspective on Camp...
Pattern and Representation: Critical Cataloging for a New Perspective on Camp...
Visual Resources Association
 
Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...
Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...
Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...
Visual Resources Association
 
Supporting Art History Students' Digital Projects at American University
Supporting Art History Students' Digital Projects at American UniversitySupporting Art History Students' Digital Projects at American University
Supporting Art History Students' Digital Projects at American University
Visual Resources Association
 
Material Objects and Special Collections
Material Objects and Special CollectionsMaterial Objects and Special Collections
Material Objects and Special Collections
Visual Resources Association
 
Describing Art on the Street: The Graffiti Art Community Voice
Describing Art on the Street: The Graffiti Art Community VoiceDescribing Art on the Street: The Graffiti Art Community Voice
Describing Art on the Street: The Graffiti Art Community Voice
Visual Resources Association
 
Crowdsourcing Collection Development
Crowdsourcing Collection DevelopmentCrowdsourcing Collection Development
Crowdsourcing Collection Development
Visual Resources Association
 

More from Visual Resources Association (20)

Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...
Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...
Comparative Study and Expansion of Metadata Standards for Historic Fashion Co...
 
Unsettling Collections: Bias in the Visual Canon
Unsettling Collections: Bias in the Visual CanonUnsettling Collections: Bias in the Visual Canon
Unsettling Collections: Bias in the Visual Canon
 
The Medieval Kingdom of Sicily Image Database Project: From Concept to Reality
The Medieval Kingdom of Sicily Image Database Project: From Concept to RealityThe Medieval Kingdom of Sicily Image Database Project: From Concept to Reality
The Medieval Kingdom of Sicily Image Database Project: From Concept to Reality
 
Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...
Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...
Interactive Topography with IIIF: Open Access to Photographs from the Ernest ...
 
Recreating a 19th-Century Spectacle: The 3D Glass Stereo Project
Recreating a 19th-Century Spectacle: The 3D Glass Stereo ProjectRecreating a 19th-Century Spectacle: The 3D Glass Stereo Project
Recreating a 19th-Century Spectacle: The 3D Glass Stereo Project
 
Cradle of Texas Gay Liberty: An Alternate History of the Alamo City
Cradle of Texas Gay Liberty: An Alternate History of the Alamo CityCradle of Texas Gay Liberty: An Alternate History of the Alamo City
Cradle of Texas Gay Liberty: An Alternate History of the Alamo City
 
Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...
Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...
Material Order: A Discovery Group, Shared Catalog, and Research Platform for ...
 
Personal Archiving for Undergraduate Students
Personal Archiving for Undergraduate StudentsPersonal Archiving for Undergraduate Students
Personal Archiving for Undergraduate Students
 
Disinformation and Deepfakes: The Urgent Need for Visual Literacy
Disinformation and Deepfakes: The Urgent Need for Visual LiteracyDisinformation and Deepfakes: The Urgent Need for Visual Literacy
Disinformation and Deepfakes: The Urgent Need for Visual Literacy
 
Jean Charlot: Artist as Archivist
Jean Charlot: Artist as ArchivistJean Charlot: Artist as Archivist
Jean Charlot: Artist as Archivist
 
Pattern and Representation: Critical Cataloging for a New Perspective on Camp...
Pattern and Representation: Critical Cataloging for a New Perspective on Camp...Pattern and Representation: Critical Cataloging for a New Perspective on Camp...
Pattern and Representation: Critical Cataloging for a New Perspective on Camp...
 
Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...
Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...
Stories from the Stop (and Re-Start?): Visual Resources Professionals Face Re...
 
Supporting Art History Students' Digital Projects at American University
Supporting Art History Students' Digital Projects at American UniversitySupporting Art History Students' Digital Projects at American University
Supporting Art History Students' Digital Projects at American University
 
Material Objects and Special Collections
Material Objects and Special CollectionsMaterial Objects and Special Collections
Material Objects and Special Collections
 
Digital Art History
Digital Art HistoryDigital Art History
Digital Art History
 
Assessing the use of Qualitative Data Analysis Software (QDAS) by Art Histori...
Assessing the use of Qualitative Data Analysis Software (QDAS) by Art Histori...Assessing the use of Qualitative Data Analysis Software (QDAS) by Art Histori...
Assessing the use of Qualitative Data Analysis Software (QDAS) by Art Histori...
 
Describing Art on the Street: The Graffiti Art Community Voice
Describing Art on the Street: The Graffiti Art Community VoiceDescribing Art on the Street: The Graffiti Art Community Voice
Describing Art on the Street: The Graffiti Art Community Voice
 
Photographic Glass Plates and Birthdates: Secrets to Optimizing AI-Generated ...
Photographic Glass Plates and Birthdates: Secrets to Optimizing AI-Generated ...Photographic Glass Plates and Birthdates: Secrets to Optimizing AI-Generated ...
Photographic Glass Plates and Birthdates: Secrets to Optimizing AI-Generated ...
 
Crowdsourcing Collection Development
Crowdsourcing Collection DevelopmentCrowdsourcing Collection Development
Crowdsourcing Collection Development
 
Accessibility Guidance for Digital Cultural Heritage
Accessibility Guidance for Digital Cultural HeritageAccessibility Guidance for Digital Cultural Heritage
Accessibility Guidance for Digital Cultural Heritage
 

Recently uploaded

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Recently uploaded (20)

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 

VRA 2014 VRA Core Unbound, Arnold

  • 1. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 1 Ziziphus mucronata Source: JMK / Wikimedia
  • 2. VRA Core 4 in Transcultural Studies Adopting Core 4 in a DH Environment Matthias Arnold, Heidelberg | Session VRA Core 4 Unbound | March 13, 2014 | VRA 32nd Annual Conference
  • 3. The Cluster of Excellence "Asia and Europe in a Global Context: The Dynamics of Transculturality“ Established in October 2007 as part of the Excellence Initiative by the German Federal and State Governments, carried out by the German Research Foundation (DFG) and the German Council of Science and Humanities (Wissenschaftsrat) Aim is to “enhance the understanding of the multi-layered interactions between and within Asia and Europe” Ca. 60 projects organized in 17 interdisciplinary research groups and 4 research areas; DH unit: Heidelberg Research Architecture (HRA) 5 new professorships, Graduate School, M.A. Transcultural Studies The Karl-Jaspers Centre for Advanced Transcultural Studies, Heidelberg Photo M. Arnold 2010 (Some) Research fields: Anthropology, Archaeology, Art History, Buddhist Studies, Chinese Studies, Egyptology, Historical Studies, Indology, Islam Studies, Japanese Studies, Law, Media and Communication Studies, Musicology, Public Health, Political Sciences, Religious Studies, Social Sciences, Tibetan Studies, and more Languages: English, German Chinese, Japanese, Arabic, Hindi, Bengali, Sanskrit, Russian, etc.
  • 4. The Heidelberg Research Architecture (HRA) HRA is a cooperation partner to Cluster projects providing consultation – training – development with partners on local, national, international level. Small team 6 people - 3 positions for programming Closely related to the newly established Junior Research Group “Digital Humanities - Digital Cultural Heritage” The Karl-Jaspers Centre for Advanced Transcultural Studies, Heidelberg Photo M. Arnold 2010 Main Expertise: General Digital Humanities consultancy for projects – Conceptual design for DH related tasks Digitisation, MediaLab – Workflows and documentation – Data migration – Workshops and trainings – Co-teaching Project databases – Research analysis Development: Metadata Framework Tamboti Webportal: http://hra.uni-hd.de
  • 6. Development II: Tamboti Metadata Framework A „suite of web applications that forms an integrated environment for interdisciplinary and internationally distributed studies in transcultural dynamics.“ • Modular structure, applications within eXist-db • LDAP integration, granular access control • Users can store, organise, share, and publish multilingual metadata records of different media formats: text, image, video, audio • Different intl. standardized metadata schemas (sustainability, data exchange); one search for all data/schemas currently integrated formats: MODS - VRA core - TEI, Wiki records, video annotation records (structured notes in MODS), text extracted from uploaded PDF files, name authority files (e.g. MADS) VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 6 Source code: https://github.com/eXist-db/tamboti Heidelberg instance: http://tamboti.uni-hd.de
  • 7.
  • 8. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 8
  • 9. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 9
  • 10. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 10
  • 11. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 11
  • 12. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 12
  • 13. A framework for metadata and annotations Bibliographic information in MODS Image metadata in VRA core 4 with Ziziphus Part of video and part of audio annotation with pan.do/ra Part of image annotation with HyperImage
  • 14. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 14 Ziziphus mucronata Source: JMK / Wikimedia
  • 15. Ziziphus – The VRA Core editor Digital still image metadata editor
  • 16.
  • 17. Some requirements • Integration with Tamboti Metadata Framework • Saving data writes XML (store directly into db) • Form based editing (do not expose xml to users) • Customisable interface (e.g. based on editor roles) • Integration of controlled vocabularies • Allow multilingual data • Encode agent roles • Allow agents (with roles) for descriptions • Allow alternative notation of dates • Add local data • Keep code for editing forms simple VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 17 local extension of VRA Core
  • 18. 1) Multilingual data VRA Core allows xml:lang Problem: encoding more complex data xml:lang="ja-Latn-x-ala“ => new global attributes: • @language three-character code according to ISO 639-2b (e.g. eng, ger, chi, hin) • @script four-character code according to ISO 15924 (e.g. Latn, Arab, Hans, Deva) • @transliteration list of “transliteration schemas” based on ALA-LC (e.g. “Arabic/ALA-LC”, “Chinese/modified Wade-Giles”) VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 18
  • 19. 2) Agents: roles and „description-authors“ • additional @vocab and @type to accommodate list of MARC relator terms • allow repeatable agents (“author”) within <description> <description> <text lang="eng" script="Latn">some description</text> <author> <name vocab="local" type="personal" refid="uuid of person"> name of author</name> <role vocab="marcrelator" type="code">aut</role> </author> <author> <name vocab="local" type="personal" refid="uuid of person"> name of editor</name> <role vocab="marcrelator" type="code">edt</role> </author> </description> VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 19
  • 20. 3) Dates: uncertainty and alternativeNotation • based on recommendations in CCO: additional @type: about, before, after, active ->will allow better computing of numerical date values <earliestDate type="before">1256</earliestDate> • subelement <alternativeNotation> for non-western calendar data <date> <earliestDate>1941-03-06 <alternativeNotation lang=”chi” script=”Hant”>民國三十年三月六日 </alternativeNotation> <alternativeNotation lang=”chi” transliteration=”Chinese/ALA-LC”> Minguo 30 nian 3 yue 6 ri</alternativeNotation> </earliestDate> </date> VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 20
  • 21. 4) Avoid „code explosion“ VRA Core 4 very flexible: • all global attributes may be attached to every element • we even added more global attributes • for automatically generated forms: editor too flexible! => restriction: global attributes may only be used below <elementSet> level VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 21
  • 22. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 22 Ziziphus mucronata Source: JMK / Wikimedia
  • 24. Watch the video online: http://kjc-sv030.kjc.uni-heidelberg.de/OM/480p.webm
  • 25. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 25 Ziziphus mucronata Source: JMK / Wikimedia
  • 27. Ziziphus Next steps in development: • Implement controlled vocabularies: VIAF (ongoing), Getty AAT • Improve batch upload • Relations editor • Group editing: viewer (ongoing) -> editor • Documentation Medium-term plans • Read/write embedded metadata • Export to RDF • Standalone editor VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 27
  • 28. Ziziphus Currently working on Beta 2 version (v0.30): https://github.com/betterFORM/ziziphus/ Access Tamboti/Ziziphus for testing: • testuser accounts (name is password) • testuser1 - testuser2 - testuser3 • documentation in preparation • http://ziziphus-help.uni-hd.de VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 28
  • 29. Ziziphus Currently working on Beta 2 version (v0.30): https://github.com/betterFORM/ziziphus/ Access Tamboti/Ziziphus for testing: • testuser accounts (name is password) • testuser1 - testuser2 - testuser3 • documentation in preparation • http://ziziphus-help.uni-hd.de Are you interested in working with us on the VRA editor? We are seeking collaboration partners to further develop Ziziphus. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 29
  • 30.
  • 31. VRA Core Documentation of our VRA Core 4 extensions: Google docs VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 31
  • 32. VRA Core Possible further additions/modifications • Grouping of elements • put original script, transliteration, and translation in one element, e.g. inscription, title • Calendar information • Identify the calendar, e.g. Julian/Gregorian, Minguo, Japan, Hindu, Coptic, Buddhist… • Dealing with user-defined elements • not all variants of data can be covered by the core – how to allow users to add their own elements? VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 32
  • 33. VRA Core Expanding the use of VRA Core Tamboti • Wiki and slideshow modules use images from Zizphus Next step: use VRA Core metadata (e.g. title, description) External applications • HyperImage (part-of-image-annotation): add VRA core as metadata schema • pan.do/ra (part-of-video annotation): include image metadata Provide sample records • from Priya Paul Collection: whole collection is available http://priyapaulcollection.uni-hd.de/ • in preparation: 10 records as full metadata samples VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 33
  • 34. VRA 32nd Annual Conference | 2014/03/13 | Session 8: VRA Core 4 Unbound | Matthias Arnold, Heidelberg 34