Ingrid Parent – Fast Forward: 21st Century Libraries in a Global Context

The university librarian at UBC presented today at the SLAIS colloquia. There were a number of interesting and salient points that she made, so I thought I’d summarize them here.

Fast Forward: 21st Century Libraries in a Global Context by Ingrid Parent

Information is worldwide and information seeking behaviour is rapidly changing along with technology. So do libraries change user behaviours or do user behaviours change libraries? Really, it’s both. “In the face of seismic shifts in technology and social organizations, librarians and library staff face changing roles” (2010, Gutsche), but this need not be a seismic change, but rather, a wave of adaptation. The sharing of knowledge and networking allow for collaboration and can ease this adaptation. Not a lot has changed in what the library is so much as changes are happening in how information is delivered.

“information overload triggered a crisis in the way people saw their lives. It sped up the way we locate, cross-reference, and focus the questions that define our essence, our roles – our stories…” (Douglas Coupland, Player One) Libraries and librarians are still needed to help our users even if they have direct access to resources.  Librarians’ skills in organizing information are needed more than ever whether in libraries or in other organizations.  More creative positions are being created in response, and employers are looking for skills including in areas of communications and marketing.

“If there is a future for libraries this is where that future will be made – in the digital realm.” (Allan Bell, Director of Digital Initiatives, UBC Library) A large part of the strategic plan is focused on digital projects and initiatives.

Assessment has also become critical, but the shift in focus is on the library’s impact by trying to measure the influence and success the library has with its users.

Convergence & Collaboration
An example of a radical convergence is the Library and Archives Canada. Convergence needs to happen in more areas, mostly in the form of collaboration. It begins with contact and may end in convergence.  The way to do this is through digital technology in order to converge the knowledge and information. Users don’t care who the information “belongs” to, but simply that they can use and find it. Collaboration not only serves our users, but allow us to do more. Even technologies are converging, such as cloud computing.  Digital libraries and collections are quickly growing.

Examples of Collaboration Projects

Still the perception is that libraries are only associated with books. Libraries have the challenge to change that perception to include management of information, accessible from home, and really, a “living lab.” This is important as “information consumers are shifting into ‘prosumers.’ These hybrid users are producing, classifying, and distributing content as well as consuming content from others.” (Tom Evens, University of Ghent)

We are up to the challenge of meting these challenges. Digitization is a key factor, collaboration and converging, and come to an understanding on how to best deal with all the information. We need to move forward together in a global world where information is available to so many and in so many ways.

Q & A

What academic librarians need to do in moving forward? More consistent messaging and communications because things are done inconsistently as well. Need to talk to students more. Need more community engagement, which Irving K. Barber is a good example. Train staff to go out to the community.

What are you looking for in new hires? What kind of skills and knowledge set? Understanding and willingness to understand the information community out there. Going out to find the skills. Teamwork. Not hired for one job for whole life. Looking for possibilities working in different ways, innovation, and creativity. Can we do something better even if done the same for many years before. Need to be open-minded on sharing ideas and knowledge.

How is the library helping with research? One of the major objectives is to accelerate research. Need to work with faculty more, but life sciences more open than some others. Librarians sometimes to help with grant proposal. [Okay, I didn’t quite get the complete question/answer here.]

Transition between high school to university is a hot topic. How is the university helping with that? Learning commons to support writing skills and other skill sets, which is well used. Online tools on how to write essay, manage projects, etc. Anyone who is interested can come. No dedicated approach in the high school community. Will bring the topic to advisory committee in order to discuss how best to help support students to have skills before they leave high school.

What are your ideas for initiatives and if you see any changes when your presidency of IFLA? Have yet to choose theme that cuts across libraries. Libraries drive you to knowledge, but what do you do with that knowledge? Trying to look from user’s perspective, so looking at how libraries impact people including looking at inclusiveness, multiculturalism, collaboration. One initiative/event that want to do: Indigenous knowledge and how do we approach expressions of traditional knowledge.

Going out to the community requires support of institution. What do you find works for advocating within an institution? It’s not really common in part because of funding. Part of it is setting up advisory group in order to be in touch with people. Becoming involved in associations, but it all comes down to resources and priorities, but see it growing.

A Brief Look at Summon

Summon is Serials Solutions’ web scale discovery tool. I think so far, it looks pretty good. It has all the things you’d want these days in your searches including:

  • sidebar with different options to refine search
  • clean, easy to use interface
  • save citations to folder and export
  • advance search, including ISBN for books

Currently, all records in the catalogue, institutional repository, and journal articles have been included.  There’s also a locations refinement category to refine to a specific branch for catalogue materials.

It’ll be interesting to see what our users (including staff) think.

Quick Edit/Add-on: Seems like the major criticism I’ve heard is that it does not do known-item (that is you know what you’re looking for) searches well, but as my supervisor has explained, that’s not the purpose of a discovery tool. If you want to looking for something you know in a library, you use the source that will help you look for that. Some people might say “but look at google, it can do both well”, but even google scholar is unlikely to give you a book if you only enter a couple of words when you’re looking for a book (obviously that’s not true in all cases).

PDF Batch Automation (PDF to Image and PDF Merge)

EDIT: I’ve been reminded/informed that this only works in Windows (or MS-DOS anyway) since it uses .bat files. The suggestion if you’re using other OSs is to use php (but really you can use anything) to automate the command.

I’m sure everyone is familiar with Adobe Acrobat (even if they haven’t actually used it).  It’s a nice GUI if you want to edit PDFs, but at least as far as I know, it does not do any batch or automation work.  For a digital images project, there’s a lot of automation work that needs to be done and for image to image conversion, I was using Photoshop, but then I started dealing with PDFs. Thus, it was only natural to turn to GhostScript.

PDF to Image
So, I don’t really get any credit for this, because it’s already out there and the variables are well explained.  So if you want to turn all the pages of your PDF into images, check out this Danzels Internets post. My case was a little different because I only wanted the first page turned into an image as a thumbnail for an entire file and then for an entire folder. I also prefer to do any image modification (even batch) in an image program.

@echo off
FOR %%Z IN (*.pdf) DO gswin32 -sDEVICE=jpeg -dJPEGQ=95 -dGraphicsAlphaBits=4 -dTextAlphaBits=4 -dDOINTERPOLATE -dFirstPage=1 -dLastPage=1 -sOUTPUTFILE=%%Z.jpg -dSAFER -dBATCH -dNOPAUSE %%Z

So, here the major changes are “gswin32” because I use the Windows version, and the “-dFirstPage=1 -dLastPage=1” so that the first and last page it processes is page 1. You can change the output file name too, so I changed it in such a way that it takes the original file name and adds the .jpg extension.

PDF Merge
This is kind of a side note, because I didn’t need this for my project, but I recently downloaded some articles that for some reason had each section in a separate PDF.  So, I get no credit for this one either as I got this one from Real’s How-to on Merging PDFs. I put this in here only for possible improvements of what’s presented on that site.

For the merging of PDFs in a directory, for the [merge.bat], you’re supposed to have this code:

@echo off
gswin32 -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=merged.pdf -dBATCH 1.pdf
FOR %%Z IN (*.pdf) DO IF NOT %%Z==1.pdf IF NOT %%Z==merged.pdf IF NOT %%Z==merged2.pdf call merge2.bat %%Z

Maybe it’s clear to other people, but the “1.pdf” is the name of the first pdf. I found that the subsequent ones will be added in alphanumeric order.  Also, if you happen not to change the code, it will throw an error and insert a blank page at the beginning.

Update on New Web Portals

Apologies for the lack of updates, but although I’ve been fairly busy, there hasn’t been much to report on.  I’ve mostly been busy migrating old pages, consulting with others, providing wiki workshops, and preparing for the new portals.

So far, I’ve done a content analysis, much like before, by doing an inventory and looking at what to keep, consulting with various people to see what we might add, and developed an IA for the two based on the inventory and consultation. Things have been a little slow to develop because my co-worker is on vacation, but it’s coming!

We will not be doing pre-design usability testing as we did before (i.e. no card sorts), because we just don’t feel that the two portals in development warrant it.  Instead, we’ll be focusing on usability testing after the prototypes are completed.  Most likely, it will be a focus group, since they’re not very suitable for task oriented usability testing.

That’s it for now I think, will post some more updates later!