You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Design and usability testing

  • We experimented with a few different designs for incorporating Wikidata information into the catalog prototype.  Our initial design included an info button next to the title.  We realized that having a button for more information about the work that is already represented in the catalog page was potentially confusing.  We then integrated the information directly into the page.  For the final prototype, we added the Wikidata fields to the bottom of the page, but future work could review where the fields should be placed on the page.   For pages where the main title had included works, we used the work info buttons to show more information about the included works and also to lead the user to the author title browse page corresponding to that work.
  • Usability testing revealed that, in general, users were able to understand and  use the work info buttons listed next to the included works on the page.  Clicking on these buttons display knowledge panels for included works and allow navigating to author title browse pages.  When integrating information from Wikidata directly into the page, we should update the wording of the Wikidata acknowledgment (e.g. changing the asterisk explanation from "some of the information on this page comes from Wikidata" to "this information comes from Wikidata") and/or consider how design options for displaying the Wikidata acknowledgment interact with the Discogs acknowledgment on a catalog item page. For the Wikidata properties we integrated into the catalog prototype, users found thematic catalog numbers, such as Kochel codes, to be useful.  These catalog numbers help distinguish between musical resources.  It may be useful to include both titles in other languages for the same musical resource and catalog numbers nearer the main title of the resource.  Additional research

Development and technology lessons


Data lessons

  • During our initial development phase, we considered which metadata fields for a musical recording or score could provide us information that could help us find related Library of Congress headings and then related Wikidata entities.  Although we had reviewed uniform titles earlier, these fields didn't necessarily exist in the musical recording or score examples we used as our initial set of examples.  The "authortitle_facet" fields contained values that could map to the author title browse headings in the catalog author title browse index.  We retrieved this field from the Solr record for an item, reformatted the field to remove the "|" separator between the author and title portions of the heading, and used this string to do a lookup against the author titles in id.loc.gov.  We used the URI that was returned from id.loc.gov to query Wikidata to find the matching entity. 
  • We used the "included_work_display" field to retrieve the author title headings for included works.  These headings are formatted slightly different than the authortitle_facet headings. 
  • The information for Wikidata catalog numbers is captured using qualifiers on the statement node.  We had to use a query that used the p, ps, and pq prefixes to get the code statement and qualifying code values as shown here: https://github.com/LD4P/blacklight-cornell/blob/bamwowdemo/app/assets/javascripts/bamwow/work.js#L554 .
  • No labels