SlideShare a Scribd company logo
1 of 76
NYU – MIAP Advanced Topics Class
1
Outline
I. The Basics
II. Finding Aid
III. Implementation
IV. Exercises
2
I. The Basics
3
What are archives?
I. Basics
4
“Archival collections are the natural
result of the activities of individuals and
organizations and serve as the recorded
memory thereof. This distinctive
relationship between records and the
activities that generated them
differentiates archives from other
documentary resources.” (DACS)
DACS
Describing Archives: A Content Standard
“rules to ensure the creation of
consistent, appropriate, and self-
explanatory descriptions of archival
material.”
I. Basics
5
DACS
Principle 1: Records in archives possess unique
characteristics.
Principle 2: The principle of respect des fonds is the basis
of archival arrangement and description.
Principle 3: Arrangement involves the identification of
groupings within the material.
Principle 4: Description reflects arrangement.
I. Basics
6
DACS
Principle 5: The rules of description apply to all archival
materials, regardless of form or medium.
Principle 6: The principles of archival description apply
equally to records created by corporate bodies,
individuals, or families.
Principle 7: Archival descriptions may be presented at
varying levels of detail to produce a variety of outputs.
I. Basics
7
I. Basics
8
I. Basics
What is EAD?
XML standard for encoding archival
description (“finding aids”)
I. Basics
9
10
XML standard for encoding finding aids
I. Basics - What is EAD?
XML (eXtensible Markup Language):
a set of rules for structuring data via markup
11
XML standard for encoding finding aids
I. Basics - What is EAD?
Tag:
<unitdate era=“ce”>2011</unitdate>
Attribute:
<unitdate era=“ce”>2011</unitdate>
Element:
<unitdate era=“ce”>2011</unitdate>
Elements and attributes defined by a
Document Type Definition (DTD) or a
Schema
<bioghist> <bionote>
12
I. Basics - What is EAD?
XML standard for encoding finding aids
<ead>
<eadheader>
<titleproper>Guide to the
Papers of Joseph Roth
</titleproper>
</eadheader>
</ead>
13
XML standard for encoding finding aids
I. Basics - What is EAD?
XML standard for encoding finding aids
Defined set of containers for descriptive data
EAD : DACS = MARC : AACR2
14
I. Basics - What is EAD?
XML standard for encoding finding aids
A description of records that gives the
repository physical and intellectual control over
the materials and that assists users to gain
access to and understand the materials (SAA)
15
I. Basics - What is EAD?
What is EAD?
XML standard for encoding finding aids
I. Basics
16
What is EAD?
EAD encoding is not a substitute for
sound archival description!
I. Basics
17
Where does EAD fit?
MARC, MODS, DC
METS, PREMIS, JSON
I. Basics
18
II. Finding Aid
19
EAD Finding Aid Structure
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ead SYSTEM "ead.dtd">
or
<ead xsi:schemaLocation="urn:isbn:1-931666-22-9
http://www.loc.gov/ead/ead.xsd">
<?xml-stylesheet type="text/xsl" href="lbi2010.xsl"?>
II. Finding Aid
20
EAD Finding Aid Structure
<ead>
<eadheader>Information about repository and
finding aid</eadheader>
<archdesc>Description of archival
materials</archdesc>
</ead>
II. Finding Aid
21
Common Tags <archdesc>
• Minimum required description – “high-level did”
<did>
<origination>Roth, Joseph</origination>
<unittitle>Joseph Roth Collection</unittitle>
<unitdate>undated, 1890-2005</unitdate>
<abstract>[short descriptive text]</abstract>
[…]
II. Finding Aid
22
Common Tags <archdesc>
• Minimum required description – “high-level did”
<did>
[…]
<langmaterial>In German and English</langmaterial>
<physdesc>1 linear foot</physdesc>
<unitid>AR 10254</unitid>
<repository>Leo Baeck Institute</repository>
<physloc>V 11/2</physloc>
</did>
II. Finding Aid
23
Common Tags <archdesc>
• Biographical information
<bioghist><p>Joseph Roth was one of the most prominent
Austrian writers of the first half of the 20th
century.</p></bioghist>
• Controlled vocabulary
<controlaccess>
<geogname encodinganalog="651$a" source="lcsh"
authfilenumber="n 79040121">Austria</geogname>
</controlaccess>
II. Finding Aid
24
Common Tags <archdesc>
• Description of Subordinate Components
<dsc>
<c01 level="series">
<c02>Folder 1
<c03>Item 1</c03>
<c03>Item 2</c03>
</c02>
<c02>Folder 2</c02>
</c01>
II. Finding Aid
25
Common Tags <archdesc>
• Description of Subordinate Components
A Component <c> provides information about the content,
context, and extent of a subordinate body of materials.
Each <c> element identifies an intellectually logical section
of the described materials. The physical filing
separations between components do not always
coincide with the intellectual separations.
From EAD Tag library <http://www.loc.gov/ead/tglib/elements/c.html>
II. Finding Aid
26
Common Tags <archdesc>
• Description of Subordinate Components
<dsc>
<c01 level="series">
<did>
<unittitle id="serII">Series II: Addenda</unittitle>
<unitdate normal="1985/1996">1985-1996</unitdate>
</did>
<c02>Subordinate elements, such as folders</c02>
</c01>
II. Finding Aid
27
Common Tags <archdesc>
• Description of Subordinate Components
<c02>
<did>
<container type="box">2</container>
<container type="folder">1</container>
<unittitle>Articles</unittitle>
<unitdate>1985-1994</unitdate>
</did>
</c02>
II. Finding Aid
28
Common Tags <archdesc>
• Digital Archival Object (<dao>)
<c02>
<did> […]
<unittitle>Articles</unittitle>
</did>
<dao
href="http://www.archive.org/stream/josephroth_07_r
eel07#page/n218/mode/1up" actuate="onrequest"
linktype="simple" show="new"/>
</c02>
II. Finding Aid
29
EAD Finding Aid
II. Finding Aid
30
III. Implementation
31
III. Implementation:
Creating EAD
32
III. Implementation: Creating EAD
33
Archivists’ Toolkit Archon
ArchivesSpace
III. Implementation: Creating EAD
34
NoteTab Dreamweaver
EADitor Note Pad
My (old) Workflow
III. Implementation: Creating EAD
35
III. Implementation:
Using EAD
36
Now What?
III. Implementation: Using EAD
37
XSLT
38
III. Implementation: Using EAD
XSLT Starter Example
Original Document XSLT Stylesheet
Output Document
<book>
<title>Hello World
Book</title>
<date>1997</date>
</book>
<xsl:stylesheet>
<xsl:template match=“book”>
The title of my book is <value-of
select=“title”>.
</xsl:template>
</xsl:stylesheet>
The title of my book is Hello World Book.
III. Implementation: Using EAD
EAD to HTML
III. Implementation: Using EAD
40
EAD to HTML with microdata
III. Implementation: Using EAD
41
EAD to PDF
III. Implementation: Using EAD
42
EAD to MARC
III. Implementation: Using EAD
43
Other Uses
• Integration with other standards (e.g. EAC-CPF)
• Open Archives Initiative – Protocol for Metadata
Harvesting (OAI-PMH)
• EAD consortia
• Metadata for digitized collections
III. Implementation: Using EAD
44
Other Uses
• Flexible search and display
III. Implementation: Using EAD
45
The Future of EAD: EAD3
III. Implementation: Using EAD
46
EAD 2002: <unitdate>1905-1993</unitdate>
EAD3: <unitdatestructured>
<daterange>
<fromdate>1905</fromdate>
<todate>1993</todate>
</daterange>
</unitdatestructured>
The Future of EAD: EAD3
“In an ideal world, EAD and EAC-CPF would be
opaque to all but a few expert users, created when
needed as secondary outputs from efficient and
adaptable software tools with archivist-optimized
interfaces.”
Thirty Years On: SAA and Descriptive Standards
III. Implementation: Using EAD
47
The Future of EAD: EAD3
“This next wave [of archival standards] is going to
push beyond online versions of print-based
document genres and embrace the Web as the
native format for description—dynamic, diverse,
and discoverable description.”
Thirty Years On: SAA and Descriptive Standards
III. Implementation: Using EAD
48
Relax!
III. Implementation: Using EAD
49
IV. Exercises
50
Exercise Setup
51
IV. Exercises
1. Start the oXygen XML Editor program
2. Open “JacobBarosin.xml” found in the
downloaded and unzipped folder
Exercise How To
52
IV. Exercises
Exercise How To
53
IV. Exercises
Exercise How To
54
IV. Exercises
Exercise How To
55
IV. Exercises
How does this work? XSLT!
56
IV. Exercises
Exercise How To
57
IV. Exercises
1. Make the change in the XML
2. Hit the red arrow to transform the XML to
HTML
3. Examine the HTML in the browser
IV. Exercises
Exercise How To - Tips
1. Be very careful with quotation marks and
angle brackets
<unitdate era="ce">2011</unitdate>
2. Copy and paste carefully - know where the
cursor is
3. O/o are not the same as 0
4. Look up while typing
IV. Exercises
Exercise How To - Tips
Check for
error
messages
Processing the
Jacob Barosin Addendum
You are the new AV archivist at the Leo Baeck
Institute in New York. You have been asked
to process an addendum to the Jacob Barosin
Collection, and to update the EAD finding aid
accordingly.
IV. Exercises
60
Exercise 1: Housekeeping
Update the information in the <eadheader>
section to reflect your contribution.
IV. Exercises
61
Exercise 1: Housekeeping
<ead><eadheader><filedesc><titlestmt>
<author>Processed by Kevin Schlottmann.
Addendum processed by [your name].</author>
IV. Exercises
62
The head archivist tells you that there is an error in
the biographical information. Barosin was born in
1907, not 1906.
Fix this wherever it occurs.
IV. Exercises
63
Exercise 2:
Biographical Information
IV. Exercises
64
Exercise 2:
Biographical Information
The addendum you are given is a box of unsorted
obsolete AV media.
IV. Exercises
65
Exercise 3:
Adding New Series
Series level? “Folder” level? Format level? Item
level?
IV. Exercises
66
Exercise 3:
Adding New Series
Copy and paste an existing <c01>-level series
IV. Exercises
67
Exercise 3:
Adding New Series
IV. Exercises
68
Exercise 4:
Moving Description Around
"
IV. Exercises
69
Exercise 4:
Moving Description Around
"
Update the series IV scope note reflecting the
removed items.
Update the collection–level information: extent,
dates, access information, formats, dates.
(This is where doing it manually is really painful.)
IV. Exercises
70
Exercise 5:
Housekeeping
Series-level, collection level (high-level did), in the
arrangement note, and in the title.
IV. Exercises
71
Exercise 5:
Housekeeping: Dates
IV. Exercises
72
Questions?
Resources
73
EAD Tools
Resources
74
Tinker!
• Gentle Introduction to XML
• EAD Cookbook
• A free XML editor
• Library of Congress EAD files
Resources
75
Download via Slideshare:
http://www.slideshare.net/archivistkevin
Thank you!
76

More Related Content

Similar to EAD_MIAP_20161128

DRI Repository Training Overview
DRI Repository Training OverviewDRI Repository Training Overview
DRI Repository Training Overviewdri_ireland
 
Using the Archivists' Toolkit: Hands-on practice and related tools
Using the Archivists' Toolkit: Hands-on practice and related toolsUsing the Archivists' Toolkit: Hands-on practice and related tools
Using the Archivists' Toolkit: Hands-on practice and related toolsAudra Eagle Yun
 
Handout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODS
Handout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODSHandout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODS
Handout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODSJenn Riley
 
AAT LOD Microthesauri
AAT LOD MicrothesauriAAT LOD Microthesauri
AAT LOD MicrothesauriMarcia Zeng
 
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...Ricard de la Vega
 
ArchivesSpace - Scott Renton, University of Edinburgh
ArchivesSpace - Scott Renton, University of EdinburghArchivesSpace - Scott Renton, University of Edinburgh
ArchivesSpace - Scott Renton, University of EdinburghRepository Fringe
 
Managing Software Selection and Acquisition: From Problem to Solution
Managing Software Selection and Acquisition: From Problem to SolutionManaging Software Selection and Acquisition: From Problem to Solution
Managing Software Selection and Acquisition: From Problem to Solutionsuyu22
 
Handout for Metadata for your Digital Collections
Handout for Metadata for your Digital CollectionsHandout for Metadata for your Digital Collections
Handout for Metadata for your Digital CollectionsJenn Riley
 
Handout for Applying Digital Library Metadata Standards
Handout for Applying Digital Library Metadata StandardsHandout for Applying Digital Library Metadata Standards
Handout for Applying Digital Library Metadata StandardsJenn Riley
 
Catalog enrichment: importing Dewey Decimal Classification from external sour...
Catalog enrichment: importing Dewey Decimal Classification from external sour...Catalog enrichment: importing Dewey Decimal Classification from external sour...
Catalog enrichment: importing Dewey Decimal Classification from external sour...Stefano Bargioni
 
Towards Computational Research Objects
Towards Computational Research ObjectsTowards Computational Research Objects
Towards Computational Research ObjectsDavid De Roure
 
Fergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD Workshop
Fergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD WorkshopFergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD Workshop
Fergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD Workshopdri_ireland
 

Similar to EAD_MIAP_20161128 (20)

Introduction to EAD
Introduction to EADIntroduction to EAD
Introduction to EAD
 
Pratt EAD -
Pratt EAD -Pratt EAD -
Pratt EAD -
 
EAD at Metro 09-25-13
EAD at Metro 09-25-13EAD at Metro 09-25-13
EAD at Metro 09-25-13
 
DRI Repository Training Overview
DRI Repository Training OverviewDRI Repository Training Overview
DRI Repository Training Overview
 
Using the Archivists' Toolkit: Hands-on practice and related tools
Using the Archivists' Toolkit: Hands-on practice and related toolsUsing the Archivists' Toolkit: Hands-on practice and related tools
Using the Archivists' Toolkit: Hands-on practice and related tools
 
Handout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODS
Handout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODSHandout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODS
Handout for Alphabet Soup: Choosing Among DC, QDC, MARC, MARCXML, and MODS
 
AAT LOD Microthesauri
AAT LOD MicrothesauriAAT LOD Microthesauri
AAT LOD Microthesauri
 
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
 
Registry slides for Se@m Workshop
Registry slides for Se@m Workshop Registry slides for Se@m Workshop
Registry slides for Se@m Workshop
 
ArchivesSpace - Scott Renton, University of Edinburgh
ArchivesSpace - Scott Renton, University of EdinburghArchivesSpace - Scott Renton, University of Edinburgh
ArchivesSpace - Scott Renton, University of Edinburgh
 
Managing Software Selection and Acquisition: From Problem to Solution
Managing Software Selection and Acquisition: From Problem to SolutionManaging Software Selection and Acquisition: From Problem to Solution
Managing Software Selection and Acquisition: From Problem to Solution
 
Handout for Metadata for your Digital Collections
Handout for Metadata for your Digital CollectionsHandout for Metadata for your Digital Collections
Handout for Metadata for your Digital Collections
 
Linux Directory Structure
Linux Directory StructureLinux Directory Structure
Linux Directory Structure
 
Handout for Applying Digital Library Metadata Standards
Handout for Applying Digital Library Metadata StandardsHandout for Applying Digital Library Metadata Standards
Handout for Applying Digital Library Metadata Standards
 
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
 
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
Technical Challenges and Approaches to Build an Open Ecosystem of Heterogeneo...
 
UAEU_MDL_Slides_rev1.ppt
UAEU_MDL_Slides_rev1.pptUAEU_MDL_Slides_rev1.ppt
UAEU_MDL_Slides_rev1.ppt
 
Catalog enrichment: importing Dewey Decimal Classification from external sour...
Catalog enrichment: importing Dewey Decimal Classification from external sour...Catalog enrichment: importing Dewey Decimal Classification from external sour...
Catalog enrichment: importing Dewey Decimal Classification from external sour...
 
Towards Computational Research Objects
Towards Computational Research ObjectsTowards Computational Research Objects
Towards Computational Research Objects
 
Fergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD Workshop
Fergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD WorkshopFergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD Workshop
Fergus Fahey - DRI/ARA(I) Training: Introduction to EAD - EAD Workshop
 

Recently uploaded

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Q4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxQ4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxnelietumpap1
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 

Recently uploaded (20)

YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Q4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxQ4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptx
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 

EAD_MIAP_20161128

  • 1. NYU – MIAP Advanced Topics Class 1
  • 2. Outline I. The Basics II. Finding Aid III. Implementation IV. Exercises 2
  • 4. What are archives? I. Basics 4 “Archival collections are the natural result of the activities of individuals and organizations and serve as the recorded memory thereof. This distinctive relationship between records and the activities that generated them differentiates archives from other documentary resources.” (DACS)
  • 5. DACS Describing Archives: A Content Standard “rules to ensure the creation of consistent, appropriate, and self- explanatory descriptions of archival material.” I. Basics 5
  • 6. DACS Principle 1: Records in archives possess unique characteristics. Principle 2: The principle of respect des fonds is the basis of archival arrangement and description. Principle 3: Arrangement involves the identification of groupings within the material. Principle 4: Description reflects arrangement. I. Basics 6
  • 7. DACS Principle 5: The rules of description apply to all archival materials, regardless of form or medium. Principle 6: The principles of archival description apply equally to records created by corporate bodies, individuals, or families. Principle 7: Archival descriptions may be presented at varying levels of detail to produce a variety of outputs. I. Basics 7
  • 9. What is EAD? XML standard for encoding archival description (“finding aids”) I. Basics 9
  • 10. 10 XML standard for encoding finding aids I. Basics - What is EAD? XML (eXtensible Markup Language): a set of rules for structuring data via markup
  • 11. 11 XML standard for encoding finding aids I. Basics - What is EAD? Tag: <unitdate era=“ce”>2011</unitdate> Attribute: <unitdate era=“ce”>2011</unitdate> Element: <unitdate era=“ce”>2011</unitdate>
  • 12. Elements and attributes defined by a Document Type Definition (DTD) or a Schema <bioghist> <bionote> 12 I. Basics - What is EAD? XML standard for encoding finding aids
  • 13. <ead> <eadheader> <titleproper>Guide to the Papers of Joseph Roth </titleproper> </eadheader> </ead> 13 XML standard for encoding finding aids I. Basics - What is EAD?
  • 14. XML standard for encoding finding aids Defined set of containers for descriptive data EAD : DACS = MARC : AACR2 14 I. Basics - What is EAD?
  • 15. XML standard for encoding finding aids A description of records that gives the repository physical and intellectual control over the materials and that assists users to gain access to and understand the materials (SAA) 15 I. Basics - What is EAD?
  • 16. What is EAD? XML standard for encoding finding aids I. Basics 16
  • 17. What is EAD? EAD encoding is not a substitute for sound archival description! I. Basics 17
  • 18. Where does EAD fit? MARC, MODS, DC METS, PREMIS, JSON I. Basics 18
  • 20. EAD Finding Aid Structure <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE ead SYSTEM "ead.dtd"> or <ead xsi:schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd"> <?xml-stylesheet type="text/xsl" href="lbi2010.xsl"?> II. Finding Aid 20
  • 21. EAD Finding Aid Structure <ead> <eadheader>Information about repository and finding aid</eadheader> <archdesc>Description of archival materials</archdesc> </ead> II. Finding Aid 21
  • 22. Common Tags <archdesc> • Minimum required description – “high-level did” <did> <origination>Roth, Joseph</origination> <unittitle>Joseph Roth Collection</unittitle> <unitdate>undated, 1890-2005</unitdate> <abstract>[short descriptive text]</abstract> […] II. Finding Aid 22
  • 23. Common Tags <archdesc> • Minimum required description – “high-level did” <did> […] <langmaterial>In German and English</langmaterial> <physdesc>1 linear foot</physdesc> <unitid>AR 10254</unitid> <repository>Leo Baeck Institute</repository> <physloc>V 11/2</physloc> </did> II. Finding Aid 23
  • 24. Common Tags <archdesc> • Biographical information <bioghist><p>Joseph Roth was one of the most prominent Austrian writers of the first half of the 20th century.</p></bioghist> • Controlled vocabulary <controlaccess> <geogname encodinganalog="651$a" source="lcsh" authfilenumber="n 79040121">Austria</geogname> </controlaccess> II. Finding Aid 24
  • 25. Common Tags <archdesc> • Description of Subordinate Components <dsc> <c01 level="series"> <c02>Folder 1 <c03>Item 1</c03> <c03>Item 2</c03> </c02> <c02>Folder 2</c02> </c01> II. Finding Aid 25
  • 26. Common Tags <archdesc> • Description of Subordinate Components A Component <c> provides information about the content, context, and extent of a subordinate body of materials. Each <c> element identifies an intellectually logical section of the described materials. The physical filing separations between components do not always coincide with the intellectual separations. From EAD Tag library <http://www.loc.gov/ead/tglib/elements/c.html> II. Finding Aid 26
  • 27. Common Tags <archdesc> • Description of Subordinate Components <dsc> <c01 level="series"> <did> <unittitle id="serII">Series II: Addenda</unittitle> <unitdate normal="1985/1996">1985-1996</unitdate> </did> <c02>Subordinate elements, such as folders</c02> </c01> II. Finding Aid 27
  • 28. Common Tags <archdesc> • Description of Subordinate Components <c02> <did> <container type="box">2</container> <container type="folder">1</container> <unittitle>Articles</unittitle> <unitdate>1985-1994</unitdate> </did> </c02> II. Finding Aid 28
  • 29. Common Tags <archdesc> • Digital Archival Object (<dao>) <c02> <did> […] <unittitle>Articles</unittitle> </did> <dao href="http://www.archive.org/stream/josephroth_07_r eel07#page/n218/mode/1up" actuate="onrequest" linktype="simple" show="new"/> </c02> II. Finding Aid 29
  • 30. EAD Finding Aid II. Finding Aid 30
  • 33. III. Implementation: Creating EAD 33 Archivists’ Toolkit Archon ArchivesSpace
  • 34. III. Implementation: Creating EAD 34 NoteTab Dreamweaver EADitor Note Pad
  • 35. My (old) Workflow III. Implementation: Creating EAD 35
  • 39. XSLT Starter Example Original Document XSLT Stylesheet Output Document <book> <title>Hello World Book</title> <date>1997</date> </book> <xsl:stylesheet> <xsl:template match=“book”> The title of my book is <value-of select=“title”>. </xsl:template> </xsl:stylesheet> The title of my book is Hello World Book. III. Implementation: Using EAD
  • 40. EAD to HTML III. Implementation: Using EAD 40
  • 41. EAD to HTML with microdata III. Implementation: Using EAD 41
  • 42. EAD to PDF III. Implementation: Using EAD 42
  • 43. EAD to MARC III. Implementation: Using EAD 43
  • 44. Other Uses • Integration with other standards (e.g. EAC-CPF) • Open Archives Initiative – Protocol for Metadata Harvesting (OAI-PMH) • EAD consortia • Metadata for digitized collections III. Implementation: Using EAD 44
  • 45. Other Uses • Flexible search and display III. Implementation: Using EAD 45
  • 46. The Future of EAD: EAD3 III. Implementation: Using EAD 46 EAD 2002: <unitdate>1905-1993</unitdate> EAD3: <unitdatestructured> <daterange> <fromdate>1905</fromdate> <todate>1993</todate> </daterange> </unitdatestructured>
  • 47. The Future of EAD: EAD3 “In an ideal world, EAD and EAC-CPF would be opaque to all but a few expert users, created when needed as secondary outputs from efficient and adaptable software tools with archivist-optimized interfaces.” Thirty Years On: SAA and Descriptive Standards III. Implementation: Using EAD 47
  • 48. The Future of EAD: EAD3 “This next wave [of archival standards] is going to push beyond online versions of print-based document genres and embrace the Web as the native format for description—dynamic, diverse, and discoverable description.” Thirty Years On: SAA and Descriptive Standards III. Implementation: Using EAD 48
  • 51. Exercise Setup 51 IV. Exercises 1. Start the oXygen XML Editor program 2. Open “JacobBarosin.xml” found in the downloaded and unzipped folder
  • 56. How does this work? XSLT! 56 IV. Exercises
  • 57. Exercise How To 57 IV. Exercises 1. Make the change in the XML 2. Hit the red arrow to transform the XML to HTML 3. Examine the HTML in the browser
  • 58. IV. Exercises Exercise How To - Tips 1. Be very careful with quotation marks and angle brackets <unitdate era="ce">2011</unitdate> 2. Copy and paste carefully - know where the cursor is 3. O/o are not the same as 0 4. Look up while typing
  • 59. IV. Exercises Exercise How To - Tips Check for error messages
  • 60. Processing the Jacob Barosin Addendum You are the new AV archivist at the Leo Baeck Institute in New York. You have been asked to process an addendum to the Jacob Barosin Collection, and to update the EAD finding aid accordingly. IV. Exercises 60
  • 61. Exercise 1: Housekeeping Update the information in the <eadheader> section to reflect your contribution. IV. Exercises 61
  • 62. Exercise 1: Housekeeping <ead><eadheader><filedesc><titlestmt> <author>Processed by Kevin Schlottmann. Addendum processed by [your name].</author> IV. Exercises 62
  • 63. The head archivist tells you that there is an error in the biographical information. Barosin was born in 1907, not 1906. Fix this wherever it occurs. IV. Exercises 63 Exercise 2: Biographical Information
  • 65. The addendum you are given is a box of unsorted obsolete AV media. IV. Exercises 65 Exercise 3: Adding New Series
  • 66. Series level? “Folder” level? Format level? Item level? IV. Exercises 66 Exercise 3: Adding New Series
  • 67. Copy and paste an existing <c01>-level series IV. Exercises 67 Exercise 3: Adding New Series
  • 68. IV. Exercises 68 Exercise 4: Moving Description Around "
  • 69. IV. Exercises 69 Exercise 4: Moving Description Around "
  • 70. Update the series IV scope note reflecting the removed items. Update the collection–level information: extent, dates, access information, formats, dates. (This is where doing it manually is really painful.) IV. Exercises 70 Exercise 5: Housekeeping
  • 71. Series-level, collection level (high-level did), in the arrangement note, and in the title. IV. Exercises 71 Exercise 5: Housekeeping: Dates
  • 75. Tinker! • Gentle Introduction to XML • EAD Cookbook • A free XML editor • Library of Congress EAD files Resources 75

Editor's Notes

  1. http://www.flickr.com/photos/carowallis1/2314716161/sizes/m/in/photostream/ Will be available on slideshare – many links on images and in text in the later portion of the presentation
  2. Familiar with html? Similar (tags aka mark-up), but data structure, not display XML (eXtensible Markup Language): set of rules for structuring data via markup
  3. DTD and schema define the buckets; the list of tags in the tag library (we’ll see later) is defined here. Move to schema is coming; more flexible; not something you need to know right away http://www.flickr.com/photos/linneberg/4481309196/sizes/m/in/photostream/
  4. http://www.flickr.com/photos/johnkay/3539126525/sizes/m/in/photostream/ Note that it is hierarchical – nested. Parent elements apply to child elements.
  5. Encoding standards are rules for defining buckets; content standards are rules for the information inside http://www.flickr.com/photos/linneberg/4481309196/sizes/m/in/photostream/ Xml, EAD, MARC are ways to structure your data, they are not the same as the descriptive data such as the finding aid, the catalog record, etc.
  6. http://www.archivists.org/glossary/term_details.asp?DefinitionKey=66 http://www.flickr.com/photos/osuarchives/3427510628/sizes/m/in/photostream/
  7. EAD cookbook
  8. An EAD-encoded finding aid is split into info about institution/FA (metametadata) and info about materials (the finding aid)
  9. id.loc.gov <p> to structure text
  10. So-called “empty element” – all the data is within the tag
  11. Looking at the real thing
  12. Extremely unlikely you will be asked to type it all out by hand. Temples, programs, guidance.
  13. Software is free (like kittens, not like beer) Designed by archivists: interface is intuitive Manages most common archival processes Designed for metadata standards Output – html, ead Built on a database (MySQL)
  14. Software is free (like kittens, not like beer) Designed by archivists: interface is intuitive Manages most common archival processes Designed for metadata standards Output – html, ead Built on a database (MySQL)
  15. http://www2.archivists.org/standards
  16. XSLT (Extensible Stylesheet Language Transformations) is a declarative, XML-based language used for the transformation of XML documents. Here, the EAD tag processinfo is converted into HTML.
  17. Results returned a correct level of hierarchy, linking back to full finding aid.
  18. http://www.slideshare.net/mikerush/ead-revision-progress-report-20120808
  19. Thirty Years On: SAA and Descriptive Standards
  20. Thirty Years On: SAA and Descriptive Standards
  21. https://secure.flickr.com/photos/flik/172629460/sizes/z/in/photostream/
  22. http://www.loc.gov/pictures/collection/cph/item/2005681364/resource/
  23. XSLT (Extensible Stylesheet Language Transformations) is a declarative, XML-based language used for the transformation of XML documents. Here, the EAD tag processinfo is converted into HTML.
  24. We’ll be logically consistent, but in real world there are more things to correct and consider.
  25. https://secure.flickr.com/photos/loneblackrider/315302588/sizes/l/in/photostream/
  26. https://secure.flickr.com/photos/elnegro/233434144/sizes/z/in/photostream/
  27. http://www.oclc.org/research/publications/library/2010/2010-04.pdf
  28. Links are in comments and in slides