Skip to content

Instantly share code, notes, and snippets.

View jpstroop's full-sized avatar

Jon Stroop jpstroop

  • Princeton University Library
  • Princeton, NJ
View GitHub Profile
@jpstroop
jpstroop / qdc_rdf.rb
Created November 4, 2013 22:13
Qualified DC to N-Triples
require 'nokogiri'
require 'rdf'
require 'chronic'
xmldoc = Nokogiri::XML('<metadata xmlns="http://example.org/myapp/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xsi:schemaLocation="http://example.org/myapp/ http://example.org/myapp/schema.xsd">
<dc:title>
UKOLN
</dc:title>
<dcterms:alternative>
UK Office for Library and Information Networking
@jpstroop
jpstroop / get_iso_langs.rb
Created December 6, 2013 14:39
Download the ISO 639-2 codes as RDF and convert to CSV
require 'rdf/rdfxml'
require 'csv'
# Gets the ISO639-2 languages from id.loc.gov and saves it as CSV.
SRC_URI="http://id.loc.gov/vocabulary/iso639-2.rdf"
MADS_LANGUAGE = RDF::URI.new("http://www.loc.gov/mads/rdf/v1#Language")
MADS_CODE = RDF::URI.new("http://www.loc.gov/mads/rdf/v1#code")
SAVE_AS = File.expand_path("../../../db/fixtures/iso639-2.csv", __FILE__)
@jpstroop
jpstroop / iiif_examples.md
Last active January 4, 2016 06:09
IIIF examples

IIIF Image API URIs

Image

{scheme}://{server}{/prefix}/{identifier}/{region}/{size}/{rotation}/{quality}{.format}
@jpstroop
jpstroop / profile.json
Last active August 29, 2015 13:55
Strawman for profile.json
{
"@context": {
"@vocab": "http://iiif.io/api/image#",
"xsd" :" http://www.w3.org/2001/XMLSchema#"
},
"@id": "http://libimages.princeton.edu/loris",
"supportsRegionByPct": {
"@value": "true",
"@type": "xsd:boolean"
},
@prefix : <http://iiif.io/api/image-api#> .
@prefix ns1: <http://purl.org/dc/terms/> .
@prefix ns2: <http://libimages.princeton.edu/loris#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://libimages.princeton.edu/loris> :contact "mailto:azaroth42@gmail.com" ;
:extensions [ :feature "http://libimages.princeton.edu/loris#myNextCoolFeature" ;
@jpstroop
jpstroop / get_vocab.rb
Created February 10, 2014 01:22
Use RDF.rb to generate an `RDF::Vocabulary` or `RDF::StrictVocabulary`. Based on https://github.com/ruby-rdf/rdf/blob/develop/Rakefile#L39-L95
require 'linkeddata'
require 'rdf/cli/vocab-loader'
vocab_sources = {
lifecycle: {
prefix: "http://purl.org/vocab/lifecycle/schema#",
source: "http://vocab.org/lifecycle/schema-20080603.rdf",
strict: true
}
}

Server Breakouts

Implementations

Yale: IIIP MooViewer shim that sits along side Djatoka. level1 compliant with some level2. Limited in terms of errors it can report. BL: (3 servers)

  1. IIS, C#, invoking Kakadu binary OSS
  2. Same as above, compiled w/ KDU
{
"@context": "http://iiif.io/image-api/1.1/context.json",
"@id": "http://libimages.princeton.edu/loris/pudl0052%2F6131707%2F00000001.jp2",
"profile": "http://iiif.io/image/1.2/levels/2.json", //local or iiif.io profile
"capabilities": "http://libimages.princeton.edu/loris/capabilities.json", //local or iiif.io profile
"formats": [ "jpg", "png", "tif", "gif" ],
"width": 122877,
"height": 3783,
"login": "http://libimages.princeton.edu/loris/login", // Exclusive w/
"logout": "http://libimages.princeton.edu/loris/logout", // this. Both optional. Logout required if logged in.
{
"@context" : [
"http://iiif.io/api/image-api/context.json",
{
"ext" : "http://www.shared-canvas.org/iiif/ext/",
"ext:watermarking" : {"@type" : "xsd:boolean"}
}
],
"@id" : "http://libimages.princeton.edu/loris",
"contact" : "mailto:admin@example.com",
@jpstroop
jpstroop / review.dot
Last active August 29, 2015 13:56
Blue Mountain Relationships in RDF experiments
// Command: dot -Tpng -o review.png review.dot
digraph G {
pad=".5";
label="\n\nReview / Work / Magazine Relationship Graph";
labelloc=bottom;
labeljust=left;
rankdir=LR
size="9"; // inches for the long side
fontpath="/usr/share/fonts";
graph [fontname="Monospace"];