Title: Creating Public Websites from Specialized Voyager Data
1Creating Public Websites from Specialized
Voyager Data
- Sai Deng, Nancy Deyoe, Gemma Blackburn and
Tse-Min Wang - Wichita State University Libraries
2Beyond MARC note fields
- Most of our abilities in the past have been
limited to notes/local notes in our MARC data. - We have done local notes for years for donor
notes and collection information - While this information was searchable via
keyword, searchers had to be in our OPAC.
3Web options wanted!
- Greater exposure
- New audiences
- Publicity for a topic / program
- Can create something new reasonably quickly
- As long as information continues to be added, the
featured collection can grow
4Examples of collections we hoped to feature
- Shocker Scholar Festival
- Bestsellers/Current interest books (our Leisure
Reading collection) - Featured authors or subjects (to tie in with
public programming events) - Also titles from specialized collections (such as
the Wichita Art Museum Research Library)
5One featured collection the Shocker Scholars
Festival
- Annual event hosted by the WSU Libraries
- Information is collected from all colleges of
faculty/departmental scholarly activity - Colleges are getting better, but this can still
be challenging! - Do the Libraries hold copies of the titles? The
process may begin at Acquisitions
6Customizing and using the data
- WSU faculty author note is added during the
cataloging process this helps build the data - We subscribe to Syndetics, so cover images will
appear in our catalog and website - Gemma will now describe how the OPAC data is
utilized for the web display
7How to draw the data from the library catalog to
display on the web
- WSU uses
- Ex Libris Voyager 7.0.4 ILS
- Sun Solaris 10 server
- Oracle 10g database
- Two ways that we use to pull data from the
database - Using Voyager Analyzer
- Using an ODBC connection
8How to draw the data from the library catalog to
display on the web
- Voyager Database
- Contains data arranged into tables, each
containing several related fields - For example, the Bib_Text table
- There are hundreds of tables in
- the Voyager database
9How to draw the data from the library catalog to
display on the web
- Data is pulled from the database for various
reasons - To prepare reports
- Number of circulations
- Number of items purchased by fund code
- To identify records
- All records with specific donor notes
- Records with multiple 245 fields
- To display records in alternative ways
- Websites like the Faculty Showcase
- RSS feeds
- And many others
10How to draw the data from the library catalog to
display on the web
- Voyager Analyzer
- Cognos Business Intelligence environment connects
to Voyager database and allows the creation of
reports using a web-based, end-user friendly
environment - Data is rearranged from the Voyager table
structure into a new arrangement of layers and
folders of related fields for easier reporting
creation - Data from reports can be prepared in XML format
and displayed on a website using XSLT stylesheets
11How to draw the data from the library catalog to
display on the web
Web Access to Analyzer
Ex Libris Servers
Solaris Server
Cognos Analyzer Logic
Voyager Oracle Database
Logic
Data
Web Access to Analyzer
Cognos
12How to draw the data from the library catalog to
display on the web
- ODBC Open Database Connectivity
- A standard API to access data in a database
remotely using SQL queries - Requires ODBC drivers to be installed on users
machine as well as connection information to
connect to the database - Data can be used through Microsoft Access or
other databases - Data in the secondary database can be displayed
on the web using a language such as ASP, PHP,
etc.
13How to draw the data from the library catalog to
display on the web
Local Machine
Solaris Server
ODBC Drivers
Voyager Oracle Database
Microsoft Access
Voyager Tables
14How to draw the data from the library catalog to
display on the web
- SQL Structured Query Language
- SQL is the language used to communicate with most
databases - SQL queries can be used to pull specified data
from a database through an ODBC connection - Data can be identified from specific fields that
meets defined criteria
15How to draw the data from the library catalog to
display on the web
- Blob Binary Large Object
- The Voyager database does not contain most MARC
information. The MARC records are stored
independently as binary data on the server, so
many MARC fields (such as 590) cannot be
extracted with regular SQL queries - Blob queries can be used to extract MARC fields
from this binary data using an Access module
containing Visual Basic code that has been
written for Voyager
16Query to identify faculty publications in the
library catalog
- SELECT DISTINCTROW RO_WSUDB_BIB_TEXT.BIB_ID,
RO_WSUDB_BIB_TEXT.AUTHOR, RO_WSUDB_BIB_TEXT.TITLE,
RO_WSUDB_BIB_TEXT.EDITION, RO_WSUDB_BIB_TEXT.ISBN
, RO_WSUDB_BIB_TEXT.PUBLISHER_DATE,
RO_WSUDB_BIB_TEXT.IMPRINT, RO_WSUDB_BIB_LOCATION.L
OCATION_ID, GetFieldAll(GetBibBlob(RO_WSUDB_BIB_T
EXT.BIB_ID),"590") AS Expr1, GetFieldAll(GetBibBl
ob(RO_WSUDB_BIB_TEXT.BIB_ID),"700") AS Expr2
INTO query590view - FROM RO_WSUDB_BIB_TEXT INNER JOIN
RO_WSUDB_BIB_LOCATION ON RO_WSUDB_BIB_TEXT.BIB_ID
RO_WSUDB_BIB_LOCATION.BIB_ID - WHERE ((GetFieldAll(GetBibBlob(RO_WSUDB_BIB_TEXT.
BIB_ID),"590")) Like "WSU Faculty")
17Other queries to draw specialized data from
Voyager
- Query to identify Leisure Reading books
- SELECT LOCATION.LOCATION_NAME, BIB_TEXT.TITLE,
WSUDB_MFHD_MASTER.DISPLAY_CALL_NO,
BIB_LOCATION.LOCATION_ID, BIB_TEXT.BIB_ID - FROM WSUDB_MFHD_MASTER INNER JOIN ((BIB_TEXT
INNER JOIN (BIB_LOCATION INNER JOIN LOCATION ON
BIB_LOCATION.LOCATION_ID LOCATION.LOCATION_ID)
ON BIB_TEXT.BIB_ID BIB_LOCATION.BIB_ID) INNER
JOIN WSUDB_BIB_MFHD ON BIB_TEXT.BIB_ID
WSUDB_BIB_MFHD.BIB_ID) ON WSUDB_MFHD_MASTER.MFHD_I
D WSUDB_BIB_MFHD.MFHD_ID - WHERE (((BIB_LOCATION.LOCATION_ID)"99"))
- Query to identify Goldbarth poems
- SELECT DISTINCTROW RO_WSUDB_BIB_TEXT.BIB_ID,
RO_WSUDB_BIB_TEXT.AUTHOR, RO_WSUDB_BIB_TEXT.TITLE,
RO_WSUDB_BIB_TEXT.EDITION, RO_WSUDB_BIB_TEXT.ISBN
, RO_WSUDB_BIB_TEXT.PUBLISHER_DATE,
RO_WSUDB_BIB_TEXT.IMPRINT, RO_WSUDB_BIB_LOCATION.L
OCATION_ID, GetFieldAll(GetBibBlob(RO_WSUDB_BIB_T
EXT.BIB_ID),730") - FROM RO_WSUDB_BIB_TEXT INNER JOIN
RO_WSUDB_BIB_LOCATION ON RO_WSUDB_BIB_TEXT.BIB_ID
RO_WSUDB_BIB_LOCATION.BIB_ID - WHERE ((GetFieldAll(GetBibBlob(RO_WSUDB_BIB_TEXT.
BIB_ID),730")) Like "Albert Goldbarth
Collection")
18Other queries to draw specialized data from
Voyager
- Query to identify Wichita Art Museum collections
- SELECT LOCATION.LOCATION_NAME, BIB_TEXT.TITLE,
WSUDB_MFHD_MASTER.DISPLAY_CALL_NO,
BIB_LOCATION.LOCATION_ID, BIB_TEXT.BIB_ID - FROM WSUDB_MFHD_MASTER INNER JOIN ((BIB_TEXT
INNER JOIN (BIB_LOCATION INNER JOIN LOCATION ON
BIB_LOCATION.LOCATION_ID LOCATION.LOCATION_ID)
ON BIB_TEXT.BIB_ID BIB_LOCATION.BIB_ID) INNER
JOIN WSUDB_BIB_MFHD ON BIB_TEXT.BIB_ID
WSUDB_BIB_MFHD.BIB_ID) ON WSUDB_MFHD_MASTER.MFHD_I
D WSUDB_BIB_MFHD.MFHD_ID - WHERE (((BIB_LOCATION.LOCATION_ID)122"))
19Website created from query results
- Run blob query to draw faculty author data
through ODBC (as Gemma discussed) - Query results saved in an Access table
- Fields BIB_ID, AUTHOR, TITLE, EDITION, ISBN,
PUBLISHER_DATE, IMPRINT, LOCATION_ID, Expr1,
Expr2 - Expr 1 590 notes field data
- Expr 2 700 (other author) field data
- Added a localCover field to handle local cover
images (when ISBN and Syndetic cover are not
available) - Website created via web programming.
- http//library.wichita.edu/techserv/WSU_faculty/in
dex.asp
20Web delivery and dataflow
Syndetic Cover Images
Web
If available
RSS Feed
If not available
ISBN
Display
ASP
BibID
Local Cover Images
Search
Access (Query Results)
ODBC Blob Query
Voyager Oracle Database
21Browse
- Browse
- by Name
- by Title
- by Year
- Retrieve data
- SELECT Fields FROM Table ORDER BY
22Search
23Issues to consider in web delivery
- What to display? In which format?
- Fields Author/Editor, Title, Publication Year,
Publisher - Decide to use Author/Editor (100 field/700
field) to avoid too many blank fields (no 100) - Field names were changed from all uppercase to
make them easy to read - Added local cover images link.
- Added link to OPAC for original records display.
24One step further possible data transformation
and web delivery
- Alternatively, we can transform Access table data
to Dublin Core in XML, and display it online with
style sheet. - MARC (in Voyager table) to DC mapping
- Marc field
Simplified DC Qualified DC - 001 BIB_ID Not
mapped - 020 ISBN
Identifier - 100 AUTHOR
Contributor - 245 TITLE
Title - 250 EDITION
Description - 260ab IMPRINT Publisher
- 260c PUBLISHER_DATE Date
Date.issued - 852b LOCATION(_ID) Relation
Relation.ispartof (housing at) - 590 notes (Expr1 in query) Description
- 700 other author (Expr 2 in query) Contributor
- Additional fields Added
- Link to OPAC/library catalog Relation
Relation.isbasedon (source) - Cover image link
Relation Relation.haspart (contained
item)
25Adding Syndetic cover and local cover images
- Added some local covers for books without
Syndetic covers - If local covers are available, use local images
(thumbnail linked to large covers) - If local covers not available,
- If ISBN available, use Syndetic covers
- Either show Syndetic covers or show blank
- If no ISBN, use a generic local cover
26Local cover images scanning guideline
Master Access Thumbnail
File Format TIFF JPEG JPEG
Bit Depth 48 bit color 24 bit color 24 bit color
Spatial Resolution 400-600 dpi 300 dpi 144 dpi
Spatial Dimensions 4000 pixels across the long dimension 400 pixels across the long dimension 100 pixels across the long dimension
- Based on BCRs CDP Digital Imaging Best Practices
and Western States Digital Imaging Best
Practices - Dimensions of images were set to be consistent to
Syndetic covers but with higher resolutions.
27Local cover images digitization
- Issues to consider in digitizing old cover
images - Extra hard drive to save master image files
- Image editing and touch-up erase barcode, image
clean-up, image repair - Whats behind the barcode area? Do not make up
images if a pattern cannot be found.
28Code to add local and Syndetic cover images
- From browse.asp
- lttd class"image" rowspan"6"gt
- lt If ((Recordset1.Fields.Item("localCove
r").Value ltgt "") AND (Recordset1.Fields.Item("loca
lCover").Value ltgt " ")) Then gt - lta href"localcover\lt(Recordset1.Fields
.Item("localCover").Value)gtL.jpg"
target"_blank"gt - ltimg border0 src"localcover\lt(Reco
rdset1.Fields.Item("localCover").Value)gt.jpg"
/gtlt/agt - lt Else gt
- lt If ((Recordset1.Fields.Item("ISBN").Va
lue ltgt "") AND (Recordset1.Fields.Item("ISBN").Val
ue ltgt " ")) Then gt - lta href"http//syndetics.com/hw7.pl?isb
nlt(Recordset1.Fields.Item("ISBN").Value)gt/lc.j
pgclientwichitasu" target"_blank"gt - ltimg border0 src"http//syndetics.com/
hw7.pl?isbnlt(Recordset1.Fields.Item("ISBN").Val
ue)gt/sc.gifclientwichitasu" /gtlt/agt - lt Else gt
- ltimg alt"book cover" srclocalCover/cov
er.jpg" /gt - lt End If gt
- lt End If gt
- lt/tdgt
Add specific large and small local covers
Image link to add Syndetic covers
Add local generic cover
29Adding RSS feed
RSS feed icon
30RSS feed display
31Code to add RSS feed
- lt?xml version"1.0" encoding"UTF-8"?gt
- ltrss version"2.0"gt
- ltchannelgt
- lttitlegtWSU Libraries Faculty Author Published
Books Updatelt/titlegt - ltlinkgthttp//library.wichita.edu/techserv/WSU_Fa
culty/index.asplt/linkgt - ltdescriptiongtUpdate on published books of
Faculty Author available at WSU
Librarieslt/descriptiongt - ltlanguagegten-uslt/languagegt
- ltpubDategtFri, 6 Mar 2009 040000 GMTlt/pubDategt
- ltlastBuildDategtFri, 6 Mar 2009 040000
GMTlt/lastBuildDategt - ltdocsgthttp//library.wichita.edu/RSSlt/docsgt
- ltmanagingEditorgt_at_wichita.edult/managingEditorgt
- ltwebMastergt_at_wichita.edult/webMastergt
- ltitemgt
- lttitlegtIt grows in winter and other poems /
Chinyere Okafor. lt/titlegt
ltlinkgthttp//library.wichita.edu/techserv/WSU_facu
lty/browse.asp?browse_typePUBLISHER_DATElt/linkgt - ltdescriptiongtGet more information on this
book and other WSU faculty publications at
Faculty Research Showcase Website.lt/descriptiongt - ltpubDategtThu, 5 Mar 2009 040000
GMTlt/pubDategt - lt/itemgt
-
- lt/Channelgt
pubupdate.rss
Required Channel elements title, link,
description
added to the webpage header
ltlink rel"alternate" type"application/rssxml"
title"Faculty Author - Recent Books RSS"
href"http//library.wichita.edu/techserv/WSU_facu
lty/pubupdate.rss"gt
32Final thoughts
- Other project possibilities for featuring
specialized Voyager data - Dynamic websites can be created based on the
current model - One step further using Dublin Core metadata
schema to present data via web to facilitate data
harvesting - One more possibility Add local covers to
Voyager
33Contact information
- Sai Deng, Metadata Cataloger, Wichita State
University Libraries, Sai.Deng_at_wichita.edu - Nancy Deyoe, Assistant Dean for Technical
Services, Nancy.Deyoe_at_wichita.edu - Gemma Blackburn, Systems Developer, Wichita State
University Libraries, Gemma.Blackburn_at_wichita.edu - Tse-Min Wang, WSU Graduate Student in Computer
Science, txwang_at_wichita.edu
34