Some background. From 1980 until some time in the late 1990s, there was a museum on the Fairchild Air Force base in eastern Washington. The museum was one of those labors of love, mostly powered by volunteers from the local military community. The focus was not only the base, but the military history of the Inland Northwest--so the collection ranges from minnie balls picked up from 19th-century battlefields to a B-52 flight simulator. In the late 1990s the Air Force closed most base museums, including Fairchild. As the artifacts were boxed for storage, a quick inventory was created for the roughly 7000 items and a digital photograph was taken of each. The boxes went into storage at the Northwest Museum of Arts & Culture. Where they remain to this day:
MAC Director Forrest Rogers unveils some of the ~300 boxes of the collection. |
My initial thought was to simply upload the spreadsheet to Google Docs, share with the class, add a column titled "images" and start dragging and dropping. I strongly suspect, however, that this is too large a data set to work with that way. So what do we do? We are experienced with Omeka from our work with Spokane Historical--can we simply convert a spreadsheet to an Omeka database in some fashion, or are are hand-creating each item? Is there another solution we should be examining--Drupal? Wordpress?
We are looking to create a working database and not (at this time) a digital project. We want to keep it quick and reasonably simple, so my students can move to the next phase--opening some of those boxes and locating the treasures of this collection.
How do we do this?
2 comments:
I'd recommend using Omeka for this. Basically, you'll need to place all the files somewhere that is accessible by a web server (e.g. a public directory on Dropbox or on another server) and add/edit a spreadsheet column to include the URL/path to the file. From there you can use Omeka's CSV Import plugin to finish the job (though you might want to do it in smaller batches rather than all 7000 at once).
It seems to me that the thing students could learn from this is how to design a solution around this.
So for instance, get them to spec out what the new museum might need. They wouldn't necessarily need a web site of the collection, but they'd certainly find use for a database where the image paths are connected to the individual entries.
I'm not familiar with Omeka, but in Drupal-land you'd use the Feeds module to generate nodes from CSV. You'd add an image field to the content type you just generated and then upload individual images, or if someone in your class is clever, find a way to script the process by making a Feeds plugin, or some other way. Then you could use the Fivestar module to let students rate items of interest. They could also add annotations in the form of comments, or in other fields you add.
The new owners might take over your Drupal site and then use Services to provide a RESTful API. Whatever database they end up using could query this API and extract the record->image correlation your class was so kind to provide.
HTH.
Post a Comment