7 Matching Annotations
  1. Mar 2016
    1. To create an environment variable in Windows 7, click on your Start Menu -> Control Panel -> System -> Advanced System Settings (Figures 1,2,3).

      There is a slight difference for Windows 10, Start Menu -> Windows System -> Control Panel...

      It can not be located through the Windows 10 settings interface.

  2. Feb 2016
    1. Once libZotero is installed, we can use it to talk to the Zotero server using Python. In your text editor, run the following:

      Though it is possible to infer what that are asking you to do with this step, it is not entirely clear. You can input this line directly into your command line (or terminal or git bash) or use it to start writing a python script in a text editor.

    1. Remember, for the same reasons explained above, you will probably need to run pip with sudo, like

      Only necessary if you are working from a Mac or Linux system.

    1. SELECT ?object WHERE { # Search for all values of ?object that have a given "object type" ?object bmo:PX_object_type ?object_type . # That object type should have the label "print" ?object_type skos:prefLabel "print" . }

      Starting with a random search result from the British Museum's collection, I worked backwards and was able to construct my own SPARQL query using this as a template of sorts.

      # My Edited SPARQL Query
      
      # To run the prefix ecrm, you must include CIDOC-CRM Ontology
      PREFIX ecrm: <http://erlangen-crm.org/current/>
      PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
      SELECT ?object
      WHERE {
      
      # Searching for all objects that have a common "person or institution"
        ?object ecrm:P51_has_former_or_current_owner ?person_institution .
      
        ?object_type skos:prefLabel "print" .
      }
      
  3. Jan 2016