<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>North Carolina Digital Collections Collaboratory &#187; State Library of North Carolina</title>
	<atom:link href="http://digital.lib.ecu.edu/collaboratory/index.php?feed=rss2&#038;cat=8" rel="self" type="application/rss+xml" />
	<link>http://digital.lib.ecu.edu/collaboratory</link>
	<description>Bringing North Carolina Digital Collections Together</description>
	<lastBuildDate>Wed, 26 Jan 2011 20:56:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>An opportunity to SPAM YOUR FRIENDS!</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=497</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=497#comments</comments>
		<pubDate>Mon, 11 Oct 2010 12:43:52 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[evaluation]]></category>
		<category><![CDATA[state government]]></category>
		<category><![CDATA[assessment]]></category>
		<category><![CDATA[measurement]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=497</guid>
		<description><![CDATA[The State of North Carolina is redesigning its main website (www.nc.gov) and is seeking public input.   We want to hear from a wide range of people about what they want and need from the new site.  The goal is to build a site that makes it easier for everyone to obtain information about and perform [...]]]></description>
			<content:encoded><![CDATA[<p>The State of North Carolina is redesigning its main website (<a title="http://www.nc.gov/" href="http://www.nc.gov/">www.nc.gov</a>) and is seeking public input.   We want to hear from a wide range of people about what they want and need from the new site.  The goal is to build a site that makes it easier for everyone to obtain information about and perform transactions with NC state government.</p>
<p>Please consider taking a few minutes to answer a 9-question survey.  Feel free to share this survey through your social networks.</p>
<p>The survey closes at 5pm on Friday, November 5.</p>
<p><a title="http://www.surveymonkey.com/s/ncgovwebdesign" href="http://www.surveymonkey.com/s/ncgovwebdesign">http://www.surveymonkey.com/s/ncgovwebdesign</a></p>
<p>Thank you for your time.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=497</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginning Google Maps API 3</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=481</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=481#comments</comments>
		<pubDate>Wed, 29 Sep 2010 15:17:57 +0000</pubDate>
		<dc:creator>farrelll</dc:creator>
				<category><![CDATA[CONTENTdm]]></category>
		<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[the web]]></category>
		<category><![CDATA[web browsers]]></category>
		<category><![CDATA[Book Reviews]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=481</guid>
		<description><![CDATA[While recently developing a fairly involved Google Maps application, I quickly discovered that JavaScript libraries, such as jQuery, can only get you so far. None of them offered the level of specific mapping functionality I needed, and all the mapping plug-ins I looked at relied on the recently deprecated version 2 of the Google maps [...]]]></description>
			<content:encoded><![CDATA[<p>While recently developing a fairly involved Google <a>Maps</a> application, I quickly discovered that JavaScript libraries, such as jQuery, can only get you so far.  None of them offered the level of specific mapping functionality I needed, and all the mapping plug-ins I looked at relied on the recently deprecated version 2 of the Google maps API.  The only way to extend them was to rewrite large swathes of their code so they would work with the new API, which sort of defeats the purpose of using a plug-in for rapid development.   I figured out what I needed via tutorials on Google’s website and several other sites, including &#8220;<a href="http://www.svennerberg.com">In usability we trust</a>&#8221; maintained by Gabriel Svennerberg.</p>
<p>He&#8217;s written a series of tutorials on using the new Google Maps API, which he&#8217;s expanded into the recently published book: Beginning Google Maps API 3.  All of the code demonstrated in the book is available for free download.  I wish I&#8217;d had this book when I’d started the project &#8211; it would have saved a great deal of trial and error on my part.  The author says that even those without much web development experience should be able to get a Google Map up and running.  While I don&#8217;t disagree with this, the author introduces some advanced JavaScript fairly early in the book.  Library staff members can follow the tried and true, copy and paste method, but some of the concepts, like anonymous and self-executing functions, might leave them scratching their heads a bit.</p>
<p>The author begins with a brief history of the Google Maps API and then takes a detour into upgrading from Version 2 of the API to Version 3, which the author recommends skipping if you don&#8217;t have any legacy applications to upgrade.  However, I found it a useful general overview of the concepts discussed later in the book.</p>
<p>The rest of the book starts with the development of a very simple map.  Then each chapter builds on the previous chapter in terms of map features and complexity; including such common mapping tasks as creating clickable markers that open information bubbles and creating polylines and polygons, used to create such things as driving directions, or to highlight specific geographical areas.  The author follows the pattern of introducing a chapter&#8217;s main concepts and then working through them bit by bit, ending each chapter with the completed code for that chapter.  I found this practice quite helpful as I didn’t have to flip back and forth as I have in other technical books to figure out the totality of what was going on.</p>
<p>The author also discusses several other often used features such as using Google&#8217;s<br />
Geocoding service to find a user&#8217;s location as well as how to create custom markers.  One particularly useful feature the author discusses deals with maps with large number of  markers, anything above 1000, at which point a map’s performance starts to seriously degrade, particularly in Internet Explorer.  This was something I ran up against very early in the development process.  The author discusses the pro and cons of the various methods to deal with this problem, enabling a developer to easily choose the one that’s right for his or her particular application without having to code up each option and see what happens.</p>
<p>The book concludes with a very helpful overview of the API features discussed in the book, going over exactly how to use each class and method.</p>
<p>One concept I wish had been discussed in the book was dynamic sidebars, where a user can click a sidebar link to open the info window for a particular point.  I found this one of the trickiest parts of developing our application.</p>
<p>All in all, I&#8217;d highly recommend Beginning Google Maps API 3 to those looking to develop Google Maps applications with the new API.  It&#8217;s clearly written with lots of examples and pictures of exactly what the code’s output looks like.  If you&#8217;re merely looking to embed the location of your library/institution in a Google Map this book is definitely overkill.  However, if you plan on working on anything beyond the very basics this book is a definite plus.  It will be particularly helpful to those with some previous JavaScript experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=481</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Up &amp; Out</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=439</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=439#comments</comments>
		<pubDate>Thu, 22 Jul 2010 13:16:28 +0000</pubDate>
		<dc:creator>gregoryl</dc:creator>
				<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[digitization]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=439</guid>
		<description><![CDATA[The State Library of North Carolina is pleased to announce its newest digital collection, Up &#38; Out: Urban Development in North Carolina. This is the collection I hinted at way back in March (and yes, I&#8217;m as enthusiastic about these reports today as I was then).  I haven&#8217;t come up with any secrets regarding how [...]]]></description>
			<content:encoded><![CDATA[<p>The State Library of North Carolina is pleased to announce its newest digital collection, <a href="http://statelibrary.ncdcr.gov/digital/upandout/index.html" target="_blank">Up &amp; Out: Urban Development in North Carolina</a>.</p>
<div class="wp-caption alignright" style="width: 244px"><a title="Neighborhood Analysis, Hamlet cover" href="http://digital.ncdcr.gov/u?/p249901coll22,56178"><img title="Neighborhood Analysis, Hamlet, NC" src="http://farm5.static.flickr.com/4136/4818183612_e6fa1e697d.jpg" alt="nahamlet" width="234" height="205" /></a><p class="wp-caption-text">This report describes blight in Hamlet, NC.</p></div>
<p>This is the collection I hinted at way back in <a href="http://digital.lib.ecu.edu/collaboratory/?p=355" target="_blank">March</a> (and yes, I&#8217;m as enthusiastic about these reports today as I was then).  I haven&#8217;t come up with any secrets regarding how to quickly and efficiently draw people to what&#8217;s inside; most of my ideas involve a lot of loving description, as I speculated months back. For now, I&#8217;m relying on a relatively straightforward web site and word of mouth.</p>
<p>We&#8217;re still in the process of scanning and uploading materials, but there&#8217;s plenty for people to explore at this point. We won&#8217;t get through scanning all of the printed reports as a part of this grant project, but should end up with at least 200-250 in the collection.</p>
<p>I&#8217;ve listed some complementary North Carolina collections and resources on the &#8220;<a href="http://statelibrary.ncdcr.gov/digital/upandout/more.html" target="_blank">More Resources</a>&#8221; page, but if you know of and can recommend any others send them my way and I&#8217;ll make sure they get on the site.  As always, we&#8217;d love any feedback you might have.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=439</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exciting News Alert &amp; Let&#8217;s Crowdsource, People!</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=424</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=424#comments</comments>
		<pubDate>Fri, 02 Jul 2010 15:14:22 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[North Carolina State Archives]]></category>
		<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[crowdsourcing]]></category>
		<category><![CDATA[digitization]]></category>
		<category><![CDATA[institutional repositories]]></category>
		<category><![CDATA[repositories]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=424</guid>
		<description><![CDATA[As of late this spring, the State Library and State Archives have merged efforts to provide a single point of access to our digital collections. We&#8217;re taking baby steps to do this, but as we move more collections online and the repository gets a much-needed facelift, we need to come up with a new name [...]]]></description>
			<content:encoded><![CDATA[<p>As of late this spring, the State Library and State Archives have merged efforts to provide a single point of access to our digital collections. We&#8217;re taking baby steps to do this, but as we move more collections online and the repository gets a <a href="http://digital.ncdcr.gov" target="_blank">much-needed facelift</a>, we need to come up with a new name for this endeavor.</p>
<p>Here&#8217;s where we need your help (and I was able to work in reference to the term &#8220;crowdsourcing&#8221;).</p>
<p>We need a name that makes it clear that we aren&#8217;t NC ECHO, the Digital Heritage Center, or NC State (all of which either are in some way related to the State Library or State Archives or have the words &#8220;North Carolina&#8221; and &#8220;State&#8221;  in their name). The name should (a) make reference to the Archives &amp; Library or (b) be completely neutral (and I think that we prefer a &#8220;neutral&#8221;  name as it allows our partnerships to grow, potentially).  We&#8217;ll be providing access to the historic and contemporary records and publications of state government (as we do now), and the name needs to reflect that (probably).  These materials can be as diverse as the Library&#8217;s 2003 document about <a href="http://digital.ncdcr.gov/u?/p249901coll22,4865" target="_blank">prosecuting computer crimes</a> from the Department of Crime Control and Public Safety to the Archives&#8217;s <a href="http://digital.ncdcr.gov/cdm4-p15012coll5/browse.php?CISOROOT=%2Fp249901coll44" target="_blank">Black Mountain College publications</a> and <a href="http://digital.ncdcr.gov/cdm4-p15012coll5/results.php?&amp;CISORESTMP=results.php&amp;CISOVIEWTMP=item_viewer.php&amp;CISOMODE=grid&amp;CISOGRID=thumbnail,A,1;title,A,1;subjec,A,0;coveraa,200,0;dated,A,1;20;title,title,none,none,none&amp;CISOBIB=title,A,1,N;titlea,A,0,N;creato,200,0,N;none,A,0,N;none,A,0,N;20;title,none,none,none,none&amp;CISOTHUMB=20%20%284x5%29;title,none,none,none,none&amp;CISOTITLE=20;title,none,none,none,none&amp;CISOHIERA=20;titlea,title,none,none,none&amp;CISOSUPPRESS=1&amp;CISOTYPE=browse&amp;CISOROOT=%2Fp15012coll5" target="_blank">promotional photographs</a> from the Department of Tourism. And, we&#8217;re both divisions within the Department of Cultural Resources, so there is some question as to whether we need to work a reference to that in?</p>
<p>Now, I realize that a name containing all of this information would be ridiculous, but I&#8217;m providing this information to give you some background.</p>
<p>OK. Let the crowdsourcing begin&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=424</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>On the Inside, Looking Out</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=355</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=355#comments</comments>
		<pubDate>Wed, 10 Mar 2010 19:45:32 +0000</pubDate>
		<dc:creator>gregoryl</dc:creator>
				<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[digitization]]></category>
		<category><![CDATA[metadata]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=355</guid>
		<description><![CDATA[This is my first post here, so I’ll briefly introduce myself. Since November 2009, I’ve been the Digital Projects Liaison at the State Library of North Carolina. I get to work on a spectrum of things, including preservation, web site archiving, and digital collection building. Recently, I’ve been mulling over a collection we’re in the [...]]]></description>
			<content:encoded><![CDATA[<p>This is my first post here, so I’ll briefly introduce myself.  Since November 2009, I’ve been the Digital Projects Liaison at the State Library of North Carolina. I get to work on a spectrum of things, including preservation, web site archiving, and digital collection building.</p>
<p>Recently, I’ve been mulling over a collection we’re in the process of digitizing through our <a href="http://statelibrary.ncdcr.gov/digidocs/index.html" target="_blank">ASGII grant</a>.  It’s a group of 1960s urban development reports from our state publications collection.  Partially funded through a federal urban planning grant under the <a href="http://www.hud.gov/offices/adm/about/admguide/history.cfm#1950">Housing Act of 1954</a>, these reports were the product of efforts by the Division of Community Planning under the North Carolina Department of Conservation (now the <a href="http://www.enr.state.nc.us/">Department of Environment and Natural Resources</a>).  These reports deal with local areas – counties, towns, and even lakes or neighborhoods. They have titles like “Land use plan, Goldsboro, North Carolina” and “Population and economy of Forest City, N.C.”</p>
<p>Have your eyes glazed over yet? <span id="more-355"></span> Here’s the issue – these reports are great! Urban planners went out and scrutinized a community, reporting back with demographics, maps, photographs, personal interviews, and projections for the future that included jaunty stick figures walking down updated main streets.  The reports talk about areas of urban blight, have high level surveys of historic buildings, and even include soil and traffic maps.  If you want to see what downtown Graham was like in 1967 (someone does, right?) and what they predicted for that area at that point in time, these reports are a valuable resource.  The materials inside could really be of interest to genealogists, archaeologists, historians, local leaders – all user groups whose eyes will probably slide right over the words “land use plan.”</p>
<p>So what have I been mulling over? How do we draw people into a collection like this?  More specifically:  with mass digitization, or even moderately-large-scale digitization, how do we leverage information inside of digital objects when the usual amount of metadata won’t cut it?  In some ways, this is the traditional archival processing conundrum of item-level vs. folder-level vs. collection-level description.  But I’m not trying to justify item-level description here, I’m trying to bend my brain to think of ways we can draw the inside information out.</p>
<p>My first thoughts centered on doing some TLD (tender loving description) on the maps, which represent a pretty significant and useful subset of pages within these reports.  But that sort of care isn’t something I believe should be part of our priorities here. Then I thought “What I really need is more progressive OCR and presentation of digitized statistics.”  This sort of technology development is pretty well beyond my current capabilities and resources.  Finally, I pondered the current go-to idea for digital librarians:  tagging and other social phenomena that shift some of the description burden to the users.  While interesting in many respects, it wouldn’t get me the high quality, across-the-board coverage I’m after (assuming our users would even help us out).</p>
<p>As you can see, my first reaction is to throw more words at this challenge.  I think we sometimes try to tack on as much metadata as we can, as quickly as we can, all in the hopes of vying for fickle user attention.  I’m not sure throwing words at the items or the users is truly the most effective way to make inroads into our digital collections, but I certainly haven’t figured out what the most effective way is.  I’m still negotiating the line between a level of curatorial care that I don’t believe we can or should maintain, and the library equivalent of those web pages that simply load their white space with words to catch the search engines.  I’m sure these urban development reports won’t be the last things I see that make me think “There’s great stuff in here!”  I’m sure some librarian standing in front of a stack of scrolls thought the same thing.  What I’m not sure about, but am still working on, is how to get that inside information out.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=355</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>UNC University Library partnership with ECU and SLNC</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=239</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=239#comments</comments>
		<pubDate>Fri, 17 Jul 2009 19:14:13 +0000</pubDate>
		<dc:creator>rita</dc:creator>
				<category><![CDATA[ECU]]></category>
		<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[UNC Chapel Hill]]></category>
		<category><![CDATA[UNC-CH]]></category>
		<category><![CDATA[digitization]]></category>
		<category><![CDATA[grants]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[the profession]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=239</guid>
		<description><![CDATA[The UNC University Library is honored to serve as a partner on the recently awarded Ensuring Democracy through Digital Access NC ECHO grant. We look forward to working with the lead institution, East Carolina University, and the State Library of North Carolina, on this project. In addition, the North Carolina Supreme Court Library and the [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.lib.unc.edu/">UNC University Library</a> is honored to serve as a partner on the recently awarded <em>Ensuring Democracy through Digital Access</em> NC ECHO grant. We look forward to working with the lead institution, <a href="http://www.ecu.edu/">East Carolina University</a>, and the <a href="http://statelibrary.ncdcr.gov/">State Library of North Carolina</a>, on this project. In addition, the North Carolina Supreme Court Library and the Legislative Library (State Agency Libraries) will participate as contributing partners.</p>
<p>In addition to the existing <a href="http://www.archive.org/details/unclibraries">UNC Scribe digitization program</a>, this project will produce the most comprehensive digital collection to date of core North Carolina state government documents, offering researchers a historical view of the development of the state&#8217;s government and infrastructure in the 19th and early 20th centuries. It will enrich the lives of citizens of the State of North Carolina by providing online, 24/7 access to vast offerings of historical, geographic, social, and political information using digitization technology developed by the <a href="http://www.archive.org/">Internet Archive</a>.</p>
<p>Housed in the Digital Production Center of the <a href="http://cdla.unc.edu/index.html">Carolina Digital Library and Archives</a>, the UNC Library&#8217;s Scribe digitization program has contributed over 4,000 titles to the Internet Archive since December 2007.  As a result of the <em>Ensuring Democracy through Digital Access</em>grant, a second <a href="http://cdla.unc.edu/index.html?page=dpctech#scribe">Scribe scanning station</a> will be added to the Library&#8217;s digitization program in July 2009.</p>
<p>This project is in keeping with the UNC Library&#8217;s strategic goals to support collaborative collection development and investigation of innovative technologies, including large-scale digitization, to become a regional digitization service center for other libraries and archives, especially in North Carolina, and to develop projects and partnerships that emphasize the potential uses of digital content.</p>
<p>We are excited to partner with East Carolina University and the State Library of North Carolina on this project, and to contribute material from our collections and expertise in the digital area.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=239</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The true meaning of “mass digitization”</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=217</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=217#comments</comments>
		<pubDate>Mon, 22 Jun 2009 13:15:05 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[NC ECHO]]></category>
		<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[UNC-CH]]></category>
		<category><![CDATA[digitization]]></category>
		<category><![CDATA[grants]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[the profession]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=217</guid>
		<description><![CDATA[OK. The title of this entry is misleading. I don’t know the true meaning of the phrase “mass digitization,” but I’ve been wondering about it for a while. Google is digitizing en masse, I suppose, and so, in a sense is the Internet Archive. But are any of the rest of us?

 

I think of mass digitization as scanning from A to Z, churning through large quantities of volumes with little or no thought to selection. This idea may be colored a bit by my understanding of Google’s approach to digitization, which has meant, more or less: Find some libraries, agree on some terms (that seem to mostly benefit Google), and start scanning whatever makes its way from the shelf to the cart to the scanner’s hands. I don’t think I’m alone in this belief. In 2006, for example, Karen Coyle defined the phrase  as the “conversion of whole libraries without making a selection of individual materials.”]]></description>
			<content:encoded><![CDATA[<p>OK. The title of this entry is misleading. I don’t know the true meaning of the phrase “mass digitization,” but I’ve been wondering about it for a while. Google is digitizing <em>en masse</em>, I suppose, and so, in a sense is the Internet Archive. But are any of the rest of us?</p>
<p>I think of mass digitization as scanning from A to Z, churning through large quantities of volumes with little or no thought to selection. This idea may be colored a bit by my understanding of Google’s approach to digitization, which has meant, more or less: Find some libraries, agree on some terms (that seem to mostly benefit Google), and start scanning whatever makes its way from the shelf to the cart to the scanner’s hands. I don’t think I’m alone in this belief. In 2006, for example, <a href="http://www.kcoyle.net/jal-32-6.html" target="_blank">Karen Coyle</a> defined the phrase as the “conversion of whole libraries without making a selection of individual materials.”</p>
<p><span id="more-217"></span></p>
<p>ECU, the Digital Information Management Program at the State Library, and UNC-Chapel Hill’s CDLA were just awarded an <a href="http://statelibrary.ncdcr.gov/lsta/Awardslist09-10.htm#DIG" target="_blank">NC ECHO grant</a> to digitize 165,000 pages (about 2,500 volumes) of historic state documents over the next two years. That’s pretty large scale for North Carolina. Heck, it’s pretty large scale for just about anyone (minus the big players – Cornell, Michigan, et al.). So, is <em>it</em> mass digitization?</p>
<p>Compared to Google’s approach, ECU, SLNC, and UNC have (and will continue to) carefully vet the books that will get digitized as part of the grant. The best copy from the three institutions will find its way onto the Scribe book scanner, and ultimately into the <a href="http://www.archive.org/details/americana" target="_blank">American Libraries</a> section of the Internet Archive’s website. We have selected books based on priorities defined through a survey of state agency personnel, by representatives from depository libraries around the state, and from librarians working closely with these materials. Once scanned, each volume will undergo careful quality control to ensure that the best digital capture possible was performed. Full color reproductions, <a href="http://www.techcrunch.com/2007/12/06/google-books-adds-hand-scans/" target="_blank">no fingers covering text</a>, no missing pages.</p>
<p>It is our hope to create and provide public access to the best and largest “virtual collection” of historic North   Carolina state documents. All of this means a lot of work and care will need to go into the project. But, it also means working fast to ensure that the scanners always have another volume to grab off the cart. It means that many, many books will be available in a short period of time.</p>
<p>But, does it mean “mass digitization”? Stepping waaaaay back and looking at libraries, Google, and similar book digitization undertakings, it is safe to say, I think, that the collective “we” are, in fact, mass digitizing books. If, however, we put that “we” under a microscope to look at all of the individual digitization programs around the library world, our approaches lose their uniformity. I think too many of us care too much about the quality of output and the artifactual nature of the volumes. We are constrained by the per-page scanning costs to even consider the Google approach. So, we’re all finding our own way to digitize what we can, however we can, to the best of our institution’s abilities, whether that’s hundreds of thousands of pages per year or just a couple of books.</p>
<p>I guess I’m proposing a synthesis of traditional librarianship and large scale digitization. In addition to greater access that the Google model offers, how about incorporating our role as collection <a href="http://en.wikipedia.org/wiki/Digital_curation" target="_blank">curators</a> into this mix? Call me what you will, but I like the collective nature of the library world’s approach to digitization. It might take a little longer, it probably won’t be the largest collection, and some might even consider our approach “precious” at times. But, in the end, I think, just as we have always done, we’ll create the most useful collection of resources for the broadest audience of researchers.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=217</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Migration/Revitalization Survey &#8211; Your Input Needed!</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=200</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=200#comments</comments>
		<pubDate>Tue, 02 Jun 2009 12:08:38 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[evaluation]]></category>
		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=200</guid>
		<description><![CDATA[The State Library of North Carolina is beginning the process of overhauling its eNCyclopedia, a web-based information product that was developed by the State Library of North Carolina over a decade ago to assist students with frequently asked questions about North Carolina history, culture, and society. It has since expanded to include other topics about [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://statelibrary.ncdcr.gov/index.html" target="_blank">State Library of North Carolina</a> is beginning the process of overhauling its eNCyclopedia, a web-based information product that was developed by the State Library of North Carolina over a decade ago to assist students with frequently asked questions about North Carolina history, culture, and society.  It has since expanded to include other topics about which the State Library frequently receives questions. Even in its current state, it is one of the most frequently used products on our website. (It may be viewed online at <a href="http://statelibrary.ncdcr.gov/nc/cover.htm">http://statelibrary.ncdcr.gov/nc/cover.htm</a>.)</p>
<p>Content, appearance, and functionality are all being addressed in the overhaul, which is planned to begin this summer and continue for the next year or so. Changes will be prioritized based on feedback from users. We&#8217;re hoping to spread the word about the survey, and so I am posting about it here (although it may be slightly off topic) in hopes that readers will (1) take the survey and (2) share the survey with others, especially K12 and undergraduate educators and students. By filling out the brief online survey about interests or information needs as they relate to North Carolina, we hope it will help to improve the eNCyclopedia.</p>
<p>Separate surveys have been developed for adults and for students.</p>
<ul>
<li> The main survey, for researchers, librarians, educators and other adults may be found online at <a href="http://tinyurl.com/ncency">http://tinyurl.com/ncency</a>.</li>
<li> The survey for students is available at <a href="http://tinyurl.com/ncstudent">http://tinyurl.com/ncstudent</a>.</li>
</ul>
<p>The surveys will be open through <strong>Sunday, June 21, 2009</strong>. If you have any questions, please do not hesitate to contact Michelle Czaikowski at the State Library (<a href="mailto:Michelle.Czaikowski@ncdcr.gov">Michelle.Czaikowski@ncdcr.gov</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=200</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Repositories &amp; the Economy</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=42</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=42#comments</comments>
		<pubDate>Tue, 03 Mar 2009 18:12:13 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[digital preservation]]></category>
		<category><![CDATA[digitization]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[employment]]></category>
		<category><![CDATA[repositories]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=42</guid>
		<description><![CDATA[I’ve been thinking a lot about my job and whether I’ll have it a year from now. I think I’m a good employee – efficient, take charge, responsible, etc. But, with all the talk of job cuts at all strata of society – even Duke University has mentioned job cuts (and the fact that they [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been thinking a lot about my job and whether I’ll have it a year from now. I think I’m a good employee – efficient, take charge, responsible, etc. But, with all the talk of job cuts at all strata of society – even Duke University has mentioned job cuts (and the fact that they don’t need to consider them, just yet [see this news article from March 2: <a href="http://news14.com/content/local_news/triangle/605750/duke-university-makes-big-budget-cuts/Default.aspx">http://news14.com/content/local_news/triangle/605750/duke-university-makes-big-budget-cuts/Default.aspx</a>]) – I have been thinking about the <em>value</em> of what I do. What is it I do, you ask? I work to “identify and promote solutions to ensure long-term preservation and ready and permanent public access to born-digital and digitized information produced by (or on behalf of) North   Carolina state government.” The State Library of North Carolina has a mandate to provide access to government publications, and since May of last year we have been doing just that.<span id="more-42"></span> Several branches of the Library have worked diligently to begin providing online, 24-hour web access to born-digital content through two different sources. Our (CONTENTdm) Digital Repository (<a href="http://digitalstatelibnc.cdmhost.com/cdm4/index.php">http://digitalstatelibnc.cdmhost.com/cdm4/index.php</a>) provides access to curated (History of Raleigh; History of Public Libraries in North Carolina) and non-curated (Digital State Publications) collections. In addition, with the North Carolina State Archives, we provide access to North Carolina state government websites (<a href="http://www.archives.ncdcr.gov/webarchives/index.html">http://www.archives.ncdcr.gov/webarchives/index.html</a>) from 2005 to present.</p>
<p class="MsoNormal">
<p class="MsoNormal">This work is relevant for several reasons. Someday, these contemporary documents will be <em>historical</em> documents. That is, if they exist at all. If they are not saved, our history goes with them. That’s just a simple fact. But the value of this work goes far deeper. I mean, we preserve the physical (read: paper) copy of the Declaration of Independence to ensure that we do not forget our ideals of democratic government; we preserve Abraham Lincoln’s letters not only as a testament to his strength, influence, and unconquerable spirit, but also for the historical importance of their content in documenting the activities of a sitting president. It is no less important to preserve the intellectual output of our public servants today because they create it with computers and not quill pens. In 2008, we elected the first female governor in North Carolina’s history. Shouldn’t her tenure be documented and saved?</p>
<p class="MsoNormal">
<p class="MsoNormal">On another level, this work is important for those who cannot (or can no longer) afford to travel to pursue their research. Because of budget cuts, many of us cannot travel right now, no matter how important it is to the work we do. This will continue to worsen before it gets better. For researchers, limiting funds for travel can be devastating. Content offered through digital repositories can play a huge part in aiding these patrons. And, as more researchers opt for online over in-person visits, many of us have begun tracking their needs and digitizing in response to them.</p>
<p class="MsoNormal">
<p class="MsoNormal">The problem is that many libraries around the country are facing significant budget and staffing cuts. Our own Library is, as well. The funny thing is that many indicators* point to library usage increasing during economic downturns. In this era of online everything, will our web stats increase as much, or more, than our turnstile counts? And if so, are we ready to respond to that usage? How do we offer the services that patrons need with a smaller budget and fewer staff? I’m betting on our online services to help us weather this storm. And, we&#8217;ll continue to do our part in preserving democracy by providing free access to government information.</p>
<p class="MsoNormal">
<p class="MsoNormal">* See, for instance, <a href="http://seattletimes.nwsource.com/html/localnews/2008630228_libraries15.html">http://seattletimes.nwsource.com/html/localnews/2008630228_libraries15.html</a>, <a href="http://www.wickedlocal.com/braintree/archive/x511410985/Library-use-booms-during-economic-downturn">http://www.wickedlocal.com/braintree/archive/x511410985/Library-use-booms-during-economic-downturn</a>, <a href="http://www.stevenspointjournal.com/article/20081215/SPJ0101/812150372/1657">http://www.stevenspointjournal.com/article/20081215/SPJ0101/812150372/1657</a>, and <a href="http://blog.njla.org/archives/2009/01/">http://blog.njla.org/archives/2009/01/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=42</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Launching a New Repository at ECU</title>
		<link>http://digital.lib.ecu.edu/collaboratory/?p=31</link>
		<comments>http://digital.lib.ecu.edu/collaboratory/?p=31#comments</comments>
		<pubDate>Sun, 01 Feb 2009 21:00:58 +0000</pubDate>
		<dc:creator>Gretchen</dc:creator>
				<category><![CDATA[ECU]]></category>
		<category><![CDATA[SAA]]></category>
		<category><![CDATA[State Library of North Carolina]]></category>
		<category><![CDATA[institutional repositories]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[repositories]]></category>

		<guid isPermaLink="false">http://digital.lib.ecu.edu/collaboratory/?p=31</guid>
		<description><![CDATA[I began working just over a year ago here at ECU, and we have finally finished our digital repository &#8212; a project that was actually begun before I started and which I never thought would take this long to complete. In retrospect though, I guess I should have based on the two years of labor [...]]]></description>
			<content:encoded><![CDATA[<p>I began working just over a year ago here at ECU, and we have finally finished our <a href="http://digital.lib.ecu.edu">digital repository</a> &#8212; a project that was actually begun before I started and which I never thought would take this long to complete. In retrospect though, I guess I should have based on the two years of labor it took to create the <a href="http://lib.umd.edu/digital">Fedora-based repository at the University of Maryland</a>. I had always assumed that experience had taken so long because of the organizational difficulties there (i.e. not having a dedicated programmer on the project and in the department that was in charge of it). Yet, it took almost as long here.<span id="more-31"></span></p>
<p>I now realize that nearly everything you do like this is going to take a long time, if: a) you want to do it right and b) your institution won&#8217;t quit asking you to do <a href="http://thescholarship.ecu.edu">other projects</a>!</p>
<p>All joking aside, we are enormously proud of our repository. The guiding principles were:</p>
<ul>
<li>one common database and infrastructure that could be utilized for multiple &#8220;collections&#8221;</li>
<li>Collections are nice and we do like them, but we will always have &#8220;uncollected&#8221; items in there and we need to design it so that you can still discover these</li>
<li>This repository will gather everything digitized for a patron request, for an exhibit, for a book, for preservation, or because it would be cool to digitize it</li>
</ul>
<p>Based on the above principles we used a back-end XML database (TextML) and a METS/MODS record for every object. In addition, we included Dublin Core records in the METS (scripted from the MODS) for the purposes of OAI harvesting, appropriate admin metatadata (MIX in most cases since we have a lot of images), and even the full text of TEI records when those were available. To date we only have one audio object, but should be ingesting another 20 or so by March.</p>
<p>We had the details of the backend database worked out in the first third of 2008, and then set ourselves to the task of figuring out how to present this stuff to people who would have no idea what the site was, and in many cases, who ECU and Joyner Library were. We took the approach that the site had to invite people into the content &#8212; we had to have lots of ways that they could come to page, click on one thing and get to content.</p>
<p>So we created &#8220;<a href="http://digital.lib.ecu.edu/subject.aspx">subject clouds</a>&#8221; and created <a href="http://digital.lib.ecu.edu/collections.aspx">collections</a> post-hoc (i.e. we picked some relevant themes, then looked at what we had and organized them together). Both of these things were created on the premise that the organization of physical items in the library isn&#8217;t necessarily the best organization for things on the web. The web can do both more and less than that.</p>
<p>We also provided more tools for navigating through materials once you found some by including <a href="http://digital.lib.ecu.edu/263">hyperlinks in the records</a>, and a <a href="http://digital.lib.ecu.edu/search.aspx?q=Tobacco&amp;index=subjects">faceted drill-down of the subject headings</a>. These, as well as the subject cloud and the organization of the post-hoc collections, were all based on LCSH subject headings. A simple look at size of the facet list or the subject cloud gives you a good indication of both the benefits and drawbacks of this approach. But we figured we would use what we had and I think in some sense it is successful.</p>
<p>What is most interesting to me, is that many of these design elements were things that I&#8217;ve been thinking about since my days at UM. Being able to realize them here with a fresh new project was really exciting. Certainly, it isn&#8217;t perfect, but I think it&#8217;s all too rare in our jobs that we get to come up with an idea, implement it, and then evaluate how it worked out. We are often saddled with maintaining past projects and living within the bounds of past decisions. Of course, admitting that means that I must acknowledge that one day the decisions we&#8217;ve made on this project will limit us somewhere else. But I think we&#8217;ve created enough leeway and enough to think about, that we should be busy for quite some time.</p>
]]></content:encoded>
			<wfw:commentRss>http://digital.lib.ecu.edu/collaboratory/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
