Last active
July 31, 2019 21:17
-
-
Save ewlarson/d32a03f9f032aba9a6f5e07937813eaf to your computer and use it in GitHub Desktop.
UMedia Item to IIIF Manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'json' | |
gem 'iiif-presentation' | |
end | |
require 'open-uri' | |
require 'iiif/presentation' | |
# UMedia example item: Standard atlas of Kittson county | |
url = "https://umedia.lib.umn.edu/item/p16022coll231:2045.json" | |
data = JSON.parse(open(url).read) | |
# Example uses ngrok to tunnel local Rails app' public dir | |
# Need to set CORS headers appropriately | |
# See also: https://github.com/cyu/rack-cors | |
seed = { | |
"@context" => "http://iiif.io/api/presentation/2/context.json", | |
"@id" => 'http://7560ef37.ngrok.io/iiif_manifest.json', | |
"@type" => "sc:Manifest", | |
"label" => data["title"], | |
"metadata" => [ | |
{ | |
"label" => "format", | |
"value" => data["format"].join(', ') | |
}, | |
{ | |
"label" => "subject", | |
"value" => data["subject"].join(', ') | |
}, | |
], | |
"seeAlso" => [] | |
} | |
# Any options you add are added to the object | |
manifest = IIIF::Presentation::Manifest.new(seed) | |
manifest.sequences << | |
{ | |
"@type" => "sc:Sequence", | |
"canvases" => [] | |
} | |
data['children'].each do |child| | |
# Canvas for each page | |
canvas = IIIF::Presentation::Canvas.new() | |
canvas["@type"] = "sc:Canvas" | |
canvas['@id'] = child['object'] | |
canvas["label"] = child['title'] | |
canvas["height"] = 1500 | |
canvas["width"] = 1500 | |
collection, id = child['id'].split(':') | |
service_url = "https://cdm16022.contentdm.oclc.org/digital/iiif/#{collection}/#{id}/info.json" | |
service_data = JSON.parse(open(service_url).read) | |
image = { | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": child['thumb_url'], | |
"resource": { | |
"@id": child['thumb_url'], | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": service_data | |
} | |
} | |
canvas["images"] = [] | |
canvas["images"] << image | |
manifest.sequences[0]["canvases"] << canvas | |
end | |
# Write manifest file | |
File.open("manifest.json","w") do |f| | |
f.write(manifest.to_json(pretty: true)) | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "http://iiif.io/api/presentation/2/context.json", | |
"@id": "http://7560ef37.ngrok.io/iiif_manifest.json", | |
"@type": "sc:Manifest", | |
"label": "Standard atlas of Kittson county, Minnesota : including a plat book of the villages, cities and townships of thecounty...", | |
"metadata": [ | |
{ | |
"label": "format", | |
"value": "Plats (maps) | http://vocab.getty.edu/aat/300028125" | |
}, | |
{ | |
"label": "subject", | |
"value": "Real Property Minnesota Kittson County Maps, Kittson County (Minn.) Maps, Kittson County (Minn.) Directories" | |
} | |
], | |
"sequences": [ | |
{ | |
"@type": "sc:Sequence", | |
"canvases": [ | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1966", | |
"@type": "sc:Canvas", | |
"label": "Page 1", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1966", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1966", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1966", | |
"height": 5906, | |
"width": 5140, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5140, | |
"height": 5906 | |
}, | |
{ | |
"width": 2570, | |
"height": 2953 | |
}, | |
{ | |
"width": 1285, | |
"height": 1477 | |
}, | |
{ | |
"width": 643, | |
"height": 738 | |
}, | |
{ | |
"width": 321, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1967", | |
"@type": "sc:Canvas", | |
"label": "Page 2", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1967", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1967", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1967", | |
"height": 5906, | |
"width": 5140, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5140, | |
"height": 5906 | |
}, | |
{ | |
"width": 2570, | |
"height": 2953 | |
}, | |
{ | |
"width": 1285, | |
"height": 1477 | |
}, | |
{ | |
"width": 643, | |
"height": 738 | |
}, | |
{ | |
"width": 321, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1968", | |
"@type": "sc:Canvas", | |
"label": "Page 3", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1968", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1968", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1968", | |
"height": 5906, | |
"width": 5140, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5140, | |
"height": 5906 | |
}, | |
{ | |
"width": 2570, | |
"height": 2953 | |
}, | |
{ | |
"width": 1285, | |
"height": 1477 | |
}, | |
{ | |
"width": 643, | |
"height": 738 | |
}, | |
{ | |
"width": 321, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1969", | |
"@type": "sc:Canvas", | |
"label": "Page 4", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1969", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1969", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1969", | |
"height": 5906, | |
"width": 5140, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5140, | |
"height": 5906 | |
}, | |
{ | |
"width": 2570, | |
"height": 2953 | |
}, | |
{ | |
"width": 1285, | |
"height": 1477 | |
}, | |
{ | |
"width": 643, | |
"height": 738 | |
}, | |
{ | |
"width": 321, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1970", | |
"@type": "sc:Canvas", | |
"label": "Page 5", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1970", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1970", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1970", | |
"height": 5906, | |
"width": 5140, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5140, | |
"height": 5906 | |
}, | |
{ | |
"width": 2570, | |
"height": 2953 | |
}, | |
{ | |
"width": 1285, | |
"height": 1477 | |
}, | |
{ | |
"width": 643, | |
"height": 738 | |
}, | |
{ | |
"width": 321, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1971", | |
"@type": "sc:Canvas", | |
"label": "Page 6", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1971", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1971", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1971", | |
"height": 5906, | |
"width": 5140, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5140, | |
"height": 5906 | |
}, | |
{ | |
"width": 2570, | |
"height": 2953 | |
}, | |
{ | |
"width": 1285, | |
"height": 1477 | |
}, | |
{ | |
"width": 643, | |
"height": 738 | |
}, | |
{ | |
"width": 321, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1972", | |
"@type": "sc:Canvas", | |
"label": "Page 7", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1972", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1972", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1972", | |
"height": 5906, | |
"width": 5140, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5140, | |
"height": 5906 | |
}, | |
{ | |
"width": 2570, | |
"height": 2953 | |
}, | |
{ | |
"width": 1285, | |
"height": 1477 | |
}, | |
{ | |
"width": 643, | |
"height": 738 | |
}, | |
{ | |
"width": 321, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1973", | |
"@type": "sc:Canvas", | |
"label": "Page 8", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1973", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1973", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1973", | |
"height": 5906, | |
"width": 7039, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 7039, | |
"height": 5906 | |
}, | |
{ | |
"width": 3520, | |
"height": 2953 | |
}, | |
{ | |
"width": 1760, | |
"height": 1477 | |
}, | |
{ | |
"width": 880, | |
"height": 738 | |
}, | |
{ | |
"width": 440, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1974", | |
"@type": "sc:Canvas", | |
"label": "Page 9", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1974", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1974", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1974", | |
"height": 5906, | |
"width": 4928, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4928, | |
"height": 5906 | |
}, | |
{ | |
"width": 2464, | |
"height": 2953 | |
}, | |
{ | |
"width": 1232, | |
"height": 1477 | |
}, | |
{ | |
"width": 616, | |
"height": 738 | |
}, | |
{ | |
"width": 308, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1975", | |
"@type": "sc:Canvas", | |
"label": "Page 10", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1975", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1975", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1975", | |
"height": 5906, | |
"width": 9331, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 9331, | |
"height": 5906 | |
}, | |
{ | |
"width": 4666, | |
"height": 2953 | |
}, | |
{ | |
"width": 2333, | |
"height": 1477 | |
}, | |
{ | |
"width": 1166, | |
"height": 738 | |
}, | |
{ | |
"width": 583, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1976", | |
"@type": "sc:Canvas", | |
"label": "Page 11", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1976", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1976", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1976", | |
"height": 5906, | |
"width": 4927, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4927, | |
"height": 5906 | |
}, | |
{ | |
"width": 2464, | |
"height": 2953 | |
}, | |
{ | |
"width": 1232, | |
"height": 1477 | |
}, | |
{ | |
"width": 616, | |
"height": 738 | |
}, | |
{ | |
"width": 308, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1977", | |
"@type": "sc:Canvas", | |
"label": "Page 12", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1977", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1977", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1977", | |
"height": 5906, | |
"width": 10002, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 10002, | |
"height": 5906 | |
}, | |
{ | |
"width": 5001, | |
"height": 2953 | |
}, | |
{ | |
"width": 2501, | |
"height": 1477 | |
}, | |
{ | |
"width": 1250, | |
"height": 738 | |
}, | |
{ | |
"width": 625, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1978", | |
"@type": "sc:Canvas", | |
"label": "Page 13", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1978", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1978", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1978", | |
"height": 5906, | |
"width": 5058, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5058, | |
"height": 5906 | |
}, | |
{ | |
"width": 2529, | |
"height": 2953 | |
}, | |
{ | |
"width": 1265, | |
"height": 1477 | |
}, | |
{ | |
"width": 632, | |
"height": 738 | |
}, | |
{ | |
"width": 316, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1979", | |
"@type": "sc:Canvas", | |
"label": "Page 14", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1979", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1979", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1979", | |
"height": 5906, | |
"width": 5058, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5058, | |
"height": 5906 | |
}, | |
{ | |
"width": 2529, | |
"height": 2953 | |
}, | |
{ | |
"width": 1265, | |
"height": 1477 | |
}, | |
{ | |
"width": 632, | |
"height": 738 | |
}, | |
{ | |
"width": 316, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1980", | |
"@type": "sc:Canvas", | |
"label": "Page 15", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1980", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1980", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1980", | |
"height": 5906, | |
"width": 4911, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4911, | |
"height": 5906 | |
}, | |
{ | |
"width": 2456, | |
"height": 2953 | |
}, | |
{ | |
"width": 1228, | |
"height": 1477 | |
}, | |
{ | |
"width": 614, | |
"height": 738 | |
}, | |
{ | |
"width": 307, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1981", | |
"@type": "sc:Canvas", | |
"label": "Page 16", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1981", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1981", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1981", | |
"height": 5906, | |
"width": 4911, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4911, | |
"height": 5906 | |
}, | |
{ | |
"width": 2456, | |
"height": 2953 | |
}, | |
{ | |
"width": 1228, | |
"height": 1477 | |
}, | |
{ | |
"width": 614, | |
"height": 738 | |
}, | |
{ | |
"width": 307, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1982", | |
"@type": "sc:Canvas", | |
"label": "Page 17", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1982", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1982", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1982", | |
"height": 5906, | |
"width": 4911, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4911, | |
"height": 5906 | |
}, | |
{ | |
"width": 2456, | |
"height": 2953 | |
}, | |
{ | |
"width": 1228, | |
"height": 1477 | |
}, | |
{ | |
"width": 614, | |
"height": 738 | |
}, | |
{ | |
"width": 307, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1983", | |
"@type": "sc:Canvas", | |
"label": "Page 18", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1983", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1983", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1983", | |
"height": 5906, | |
"width": 4747, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4747, | |
"height": 5906 | |
}, | |
{ | |
"width": 2374, | |
"height": 2953 | |
}, | |
{ | |
"width": 1187, | |
"height": 1477 | |
}, | |
{ | |
"width": 593, | |
"height": 738 | |
}, | |
{ | |
"width": 297, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1984", | |
"@type": "sc:Canvas", | |
"label": "Page 19", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1984", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1984", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1984", | |
"height": 5906, | |
"width": 4747, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4747, | |
"height": 5906 | |
}, | |
{ | |
"width": 2374, | |
"height": 2953 | |
}, | |
{ | |
"width": 1187, | |
"height": 1477 | |
}, | |
{ | |
"width": 593, | |
"height": 738 | |
}, | |
{ | |
"width": 297, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1985", | |
"@type": "sc:Canvas", | |
"label": "Page 20", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1985", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1985", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1985", | |
"height": 5906, | |
"width": 4748, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4748, | |
"height": 5906 | |
}, | |
{ | |
"width": 2374, | |
"height": 2953 | |
}, | |
{ | |
"width": 1187, | |
"height": 1477 | |
}, | |
{ | |
"width": 594, | |
"height": 738 | |
}, | |
{ | |
"width": 297, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1986", | |
"@type": "sc:Canvas", | |
"label": "Page 21", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1986", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1986", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1986", | |
"height": 5906, | |
"width": 4748, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4748, | |
"height": 5906 | |
}, | |
{ | |
"width": 2374, | |
"height": 2953 | |
}, | |
{ | |
"width": 1187, | |
"height": 1477 | |
}, | |
{ | |
"width": 594, | |
"height": 738 | |
}, | |
{ | |
"width": 297, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1987", | |
"@type": "sc:Canvas", | |
"label": "Page 22", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1987", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1987", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1987", | |
"height": 5906, | |
"width": 4747, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4747, | |
"height": 5906 | |
}, | |
{ | |
"width": 2374, | |
"height": 2953 | |
}, | |
{ | |
"width": 1187, | |
"height": 1477 | |
}, | |
{ | |
"width": 593, | |
"height": 738 | |
}, | |
{ | |
"width": 297, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1988", | |
"@type": "sc:Canvas", | |
"label": "Page 23", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1988", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1988", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1988", | |
"height": 5906, | |
"width": 4748, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4748, | |
"height": 5906 | |
}, | |
{ | |
"width": 2374, | |
"height": 2953 | |
}, | |
{ | |
"width": 1187, | |
"height": 1477 | |
}, | |
{ | |
"width": 594, | |
"height": 738 | |
}, | |
{ | |
"width": 297, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1989", | |
"@type": "sc:Canvas", | |
"label": "Page 24", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1989", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1989", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1989", | |
"height": 5906, | |
"width": 4748, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4748, | |
"height": 5906 | |
}, | |
{ | |
"width": 2374, | |
"height": 2953 | |
}, | |
{ | |
"width": 1187, | |
"height": 1477 | |
}, | |
{ | |
"width": 594, | |
"height": 738 | |
}, | |
{ | |
"width": 297, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1990", | |
"@type": "sc:Canvas", | |
"label": "Page 25", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1990", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1990", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1990", | |
"height": 5906, | |
"width": 4437, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4437, | |
"height": 5906 | |
}, | |
{ | |
"width": 2219, | |
"height": 2953 | |
}, | |
{ | |
"width": 1109, | |
"height": 1477 | |
}, | |
{ | |
"width": 555, | |
"height": 738 | |
}, | |
{ | |
"width": 277, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1991", | |
"@type": "sc:Canvas", | |
"label": "Page 26", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1991", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1991", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1991", | |
"height": 5906, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5906 | |
}, | |
{ | |
"width": 2333, | |
"height": 2953 | |
}, | |
{ | |
"width": 1166, | |
"height": 1477 | |
}, | |
{ | |
"width": 583, | |
"height": 738 | |
}, | |
{ | |
"width": 292, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1992", | |
"@type": "sc:Canvas", | |
"label": "Page 27", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1992", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1992", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1992", | |
"height": 5906, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5906 | |
}, | |
{ | |
"width": 2333, | |
"height": 2953 | |
}, | |
{ | |
"width": 1166, | |
"height": 1477 | |
}, | |
{ | |
"width": 583, | |
"height": 738 | |
}, | |
{ | |
"width": 292, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1993", | |
"@type": "sc:Canvas", | |
"label": "Page 28", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1993", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1993", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1993", | |
"height": 5906, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5906 | |
}, | |
{ | |
"width": 2333, | |
"height": 2953 | |
}, | |
{ | |
"width": 1166, | |
"height": 1477 | |
}, | |
{ | |
"width": 583, | |
"height": 738 | |
}, | |
{ | |
"width": 292, | |
"height": 369 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1994", | |
"@type": "sc:Canvas", | |
"label": "Page 29", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1994", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1994", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1994", | |
"height": 5840, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1166, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1995", | |
"@type": "sc:Canvas", | |
"label": "Page 30", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1995", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1995", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1995", | |
"height": 5840, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1166, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1996", | |
"@type": "sc:Canvas", | |
"label": "Page 31", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1996", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1996", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1996", | |
"height": 5840, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1166, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1997", | |
"@type": "sc:Canvas", | |
"label": "Page 32", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1997", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1997", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1997", | |
"height": 5840, | |
"width": 4666, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4666, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1167, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1998", | |
"@type": "sc:Canvas", | |
"label": "Page 33", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1998", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1998", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1998", | |
"height": 5840, | |
"width": 4666, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4666, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1167, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1999", | |
"@type": "sc:Canvas", | |
"label": "Page 34", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1999", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/1999", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/1999", | |
"height": 5840, | |
"width": 4666, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4666, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1167, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2000", | |
"@type": "sc:Canvas", | |
"label": "Page 35", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2000", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2000", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2000", | |
"height": 5840, | |
"width": 4666, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4666, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1167, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2001", | |
"@type": "sc:Canvas", | |
"label": "Page 36", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2001", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2001", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2001", | |
"height": 5840, | |
"width": 4666, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4666, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1167, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2002", | |
"@type": "sc:Canvas", | |
"label": "Page 37", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2002", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2002", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2002", | |
"height": 5841, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5841 | |
}, | |
{ | |
"width": 2333, | |
"height": 2921 | |
}, | |
{ | |
"width": 1166, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2003", | |
"@type": "sc:Canvas", | |
"label": "Page 38", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2003", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2003", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2003", | |
"height": 5841, | |
"width": 4666, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4666, | |
"height": 5841 | |
}, | |
{ | |
"width": 2333, | |
"height": 2921 | |
}, | |
{ | |
"width": 1167, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2004", | |
"@type": "sc:Canvas", | |
"label": "Page 39", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2004", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2004", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2004", | |
"height": 5840, | |
"width": 4666, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4666, | |
"height": 5840 | |
}, | |
{ | |
"width": 2333, | |
"height": 2920 | |
}, | |
{ | |
"width": 1167, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2005", | |
"@type": "sc:Canvas", | |
"label": "Page 40", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2005", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2005", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2005", | |
"height": 5841, | |
"width": 4665, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4665, | |
"height": 5841 | |
}, | |
{ | |
"width": 2333, | |
"height": 2921 | |
}, | |
{ | |
"width": 1166, | |
"height": 1460 | |
}, | |
{ | |
"width": 583, | |
"height": 730 | |
}, | |
{ | |
"width": 292, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2006", | |
"@type": "sc:Canvas", | |
"label": "Page 41", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2006", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2006", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2006", | |
"height": 5841, | |
"width": 9822, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 9822, | |
"height": 5841 | |
}, | |
{ | |
"width": 4911, | |
"height": 2921 | |
}, | |
{ | |
"width": 2456, | |
"height": 1460 | |
}, | |
{ | |
"width": 1228, | |
"height": 730 | |
}, | |
{ | |
"width": 614, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2007", | |
"@type": "sc:Canvas", | |
"label": "Page 42", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2007", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2007", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2007", | |
"height": 5840, | |
"width": 5091, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5091, | |
"height": 5840 | |
}, | |
{ | |
"width": 2546, | |
"height": 2920 | |
}, | |
{ | |
"width": 1273, | |
"height": 1460 | |
}, | |
{ | |
"width": 636, | |
"height": 730 | |
}, | |
{ | |
"width": 318, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2008", | |
"@type": "sc:Canvas", | |
"label": "Page 43", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2008", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2008", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2008", | |
"height": 5841, | |
"width": 5091, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5091, | |
"height": 5841 | |
}, | |
{ | |
"width": 2546, | |
"height": 2921 | |
}, | |
{ | |
"width": 1273, | |
"height": 1460 | |
}, | |
{ | |
"width": 636, | |
"height": 730 | |
}, | |
{ | |
"width": 318, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2009", | |
"@type": "sc:Canvas", | |
"label": "Page 44", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2009", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2009", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2009", | |
"height": 5841, | |
"width": 5091, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5091, | |
"height": 5841 | |
}, | |
{ | |
"width": 2546, | |
"height": 2921 | |
}, | |
{ | |
"width": 1273, | |
"height": 1460 | |
}, | |
{ | |
"width": 636, | |
"height": 730 | |
}, | |
{ | |
"width": 318, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2010", | |
"@type": "sc:Canvas", | |
"label": "Page 45", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2010", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2010", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2010", | |
"height": 5841, | |
"width": 9920, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 9920, | |
"height": 5841 | |
}, | |
{ | |
"width": 4960, | |
"height": 2921 | |
}, | |
{ | |
"width": 2480, | |
"height": 1460 | |
}, | |
{ | |
"width": 1240, | |
"height": 730 | |
}, | |
{ | |
"width": 620, | |
"height": 365 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2011", | |
"@type": "sc:Canvas", | |
"label": "Page 46", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2011", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2011", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2011", | |
"height": 5939, | |
"width": 9920, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 9920, | |
"height": 5939 | |
}, | |
{ | |
"width": 4960, | |
"height": 2970 | |
}, | |
{ | |
"width": 2480, | |
"height": 1485 | |
}, | |
{ | |
"width": 1240, | |
"height": 742 | |
}, | |
{ | |
"width": 620, | |
"height": 371 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2012", | |
"@type": "sc:Canvas", | |
"label": "Page 47", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2012", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2012", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2012", | |
"height": 5939, | |
"width": 9920, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 9920, | |
"height": 5939 | |
}, | |
{ | |
"width": 4960, | |
"height": 2970 | |
}, | |
{ | |
"width": 2480, | |
"height": 1485 | |
}, | |
{ | |
"width": 1240, | |
"height": 742 | |
}, | |
{ | |
"width": 620, | |
"height": 371 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2013", | |
"@type": "sc:Canvas", | |
"label": "Page 48", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2013", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2013", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2013", | |
"height": 5635, | |
"width": 5008, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5008, | |
"height": 5635 | |
}, | |
{ | |
"width": 2504, | |
"height": 2818 | |
}, | |
{ | |
"width": 1252, | |
"height": 1409 | |
}, | |
{ | |
"width": 626, | |
"height": 704 | |
}, | |
{ | |
"width": 313, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2014", | |
"@type": "sc:Canvas", | |
"label": "Page 49", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2014", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2014", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2014", | |
"height": 5618, | |
"width": 4908, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4908, | |
"height": 5618 | |
}, | |
{ | |
"width": 2454, | |
"height": 2809 | |
}, | |
{ | |
"width": 1227, | |
"height": 1405 | |
}, | |
{ | |
"width": 614, | |
"height": 702 | |
}, | |
{ | |
"width": 307, | |
"height": 351 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2015", | |
"@type": "sc:Canvas", | |
"label": "Page 50", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2015", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2015", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2015", | |
"height": 5618, | |
"width": 4914, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4914, | |
"height": 5618 | |
}, | |
{ | |
"width": 2457, | |
"height": 2809 | |
}, | |
{ | |
"width": 1229, | |
"height": 1405 | |
}, | |
{ | |
"width": 614, | |
"height": 702 | |
}, | |
{ | |
"width": 307, | |
"height": 351 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2016", | |
"@type": "sc:Canvas", | |
"label": "Page 51", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2016", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2016", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2016", | |
"height": 5628, | |
"width": 4912, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4912, | |
"height": 5628 | |
}, | |
{ | |
"width": 2456, | |
"height": 2814 | |
}, | |
{ | |
"width": 1228, | |
"height": 1407 | |
}, | |
{ | |
"width": 614, | |
"height": 704 | |
}, | |
{ | |
"width": 307, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2017", | |
"@type": "sc:Canvas", | |
"label": "Page 52", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2017", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2017", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2017", | |
"height": 5635, | |
"width": 4928, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4928, | |
"height": 5635 | |
}, | |
{ | |
"width": 2464, | |
"height": 2818 | |
}, | |
{ | |
"width": 1232, | |
"height": 1409 | |
}, | |
{ | |
"width": 616, | |
"height": 704 | |
}, | |
{ | |
"width": 308, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2018", | |
"@type": "sc:Canvas", | |
"label": "Page 53", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2018", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2018", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2018", | |
"height": 5635, | |
"width": 4928, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4928, | |
"height": 5635 | |
}, | |
{ | |
"width": 2464, | |
"height": 2818 | |
}, | |
{ | |
"width": 1232, | |
"height": 1409 | |
}, | |
{ | |
"width": 616, | |
"height": 704 | |
}, | |
{ | |
"width": 308, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2019", | |
"@type": "sc:Canvas", | |
"label": "Page 54", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2019", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2019", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2019", | |
"height": 5635, | |
"width": 4928, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4928, | |
"height": 5635 | |
}, | |
{ | |
"width": 2464, | |
"height": 2818 | |
}, | |
{ | |
"width": 1232, | |
"height": 1409 | |
}, | |
{ | |
"width": 616, | |
"height": 704 | |
}, | |
{ | |
"width": 308, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2020", | |
"@type": "sc:Canvas", | |
"label": "Page 55", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2020", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2020", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2020", | |
"height": 5635, | |
"width": 4928, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4928, | |
"height": 5635 | |
}, | |
{ | |
"width": 2464, | |
"height": 2818 | |
}, | |
{ | |
"width": 1232, | |
"height": 1409 | |
}, | |
{ | |
"width": 616, | |
"height": 704 | |
}, | |
{ | |
"width": 308, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2021", | |
"@type": "sc:Canvas", | |
"label": "Page 56", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2021", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2021", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2021", | |
"height": 5635, | |
"width": 4928, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4928, | |
"height": 5635 | |
}, | |
{ | |
"width": 2464, | |
"height": 2818 | |
}, | |
{ | |
"width": 1232, | |
"height": 1409 | |
}, | |
{ | |
"width": 616, | |
"height": 704 | |
}, | |
{ | |
"width": 308, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2022", | |
"@type": "sc:Canvas", | |
"label": "Page 57", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2022", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2022", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2022", | |
"height": 5635, | |
"width": 4928, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4928, | |
"height": 5635 | |
}, | |
{ | |
"width": 2464, | |
"height": 2818 | |
}, | |
{ | |
"width": 1232, | |
"height": 1409 | |
}, | |
{ | |
"width": 616, | |
"height": 704 | |
}, | |
{ | |
"width": 308, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2023", | |
"@type": "sc:Canvas", | |
"label": "Page 58", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2023", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2023", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2023", | |
"height": 5635, | |
"width": 5008, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5008, | |
"height": 5635 | |
}, | |
{ | |
"width": 2504, | |
"height": 2818 | |
}, | |
{ | |
"width": 1252, | |
"height": 1409 | |
}, | |
{ | |
"width": 626, | |
"height": 704 | |
}, | |
{ | |
"width": 313, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2024", | |
"@type": "sc:Canvas", | |
"label": "Page 59", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2024", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2024", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2024", | |
"height": 5635, | |
"width": 5008, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5008, | |
"height": 5635 | |
}, | |
{ | |
"width": 2504, | |
"height": 2818 | |
}, | |
{ | |
"width": 1252, | |
"height": 1409 | |
}, | |
{ | |
"width": 626, | |
"height": 704 | |
}, | |
{ | |
"width": 313, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2025", | |
"@type": "sc:Canvas", | |
"label": "Page 60", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2025", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2025", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2025", | |
"height": 5635, | |
"width": 4864, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4864, | |
"height": 5635 | |
}, | |
{ | |
"width": 2432, | |
"height": 2818 | |
}, | |
{ | |
"width": 1216, | |
"height": 1409 | |
}, | |
{ | |
"width": 608, | |
"height": 704 | |
}, | |
{ | |
"width": 304, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2026", | |
"@type": "sc:Canvas", | |
"label": "Page 61", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2026", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2026", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2026", | |
"height": 5635, | |
"width": 4912, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4912, | |
"height": 5635 | |
}, | |
{ | |
"width": 2456, | |
"height": 2818 | |
}, | |
{ | |
"width": 1228, | |
"height": 1409 | |
}, | |
{ | |
"width": 614, | |
"height": 704 | |
}, | |
{ | |
"width": 307, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2027", | |
"@type": "sc:Canvas", | |
"label": "Page 62", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2027", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2027", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2027", | |
"height": 5635, | |
"width": 4912, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4912, | |
"height": 5635 | |
}, | |
{ | |
"width": 2456, | |
"height": 2818 | |
}, | |
{ | |
"width": 1228, | |
"height": 1409 | |
}, | |
{ | |
"width": 614, | |
"height": 704 | |
}, | |
{ | |
"width": 307, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2028", | |
"@type": "sc:Canvas", | |
"label": "Page 63", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2028", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2028", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2028", | |
"height": 5635, | |
"width": 4960, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4960, | |
"height": 5635 | |
}, | |
{ | |
"width": 2480, | |
"height": 2818 | |
}, | |
{ | |
"width": 1240, | |
"height": 1409 | |
}, | |
{ | |
"width": 620, | |
"height": 704 | |
}, | |
{ | |
"width": 310, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2029", | |
"@type": "sc:Canvas", | |
"label": "Page 64", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2029", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2029", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2029", | |
"height": 5635, | |
"width": 4816, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4816, | |
"height": 5635 | |
}, | |
{ | |
"width": 2408, | |
"height": 2818 | |
}, | |
{ | |
"width": 1204, | |
"height": 1409 | |
}, | |
{ | |
"width": 602, | |
"height": 704 | |
}, | |
{ | |
"width": 301, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2030", | |
"@type": "sc:Canvas", | |
"label": "Page 65", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2030", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2030", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2030", | |
"height": 5635, | |
"width": 4816, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4816, | |
"height": 5635 | |
}, | |
{ | |
"width": 2408, | |
"height": 2818 | |
}, | |
{ | |
"width": 1204, | |
"height": 1409 | |
}, | |
{ | |
"width": 602, | |
"height": 704 | |
}, | |
{ | |
"width": 301, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2031", | |
"@type": "sc:Canvas", | |
"label": "Page 66", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2031", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2031", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2031", | |
"height": 5635, | |
"width": 4816, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4816, | |
"height": 5635 | |
}, | |
{ | |
"width": 2408, | |
"height": 2818 | |
}, | |
{ | |
"width": 1204, | |
"height": 1409 | |
}, | |
{ | |
"width": 602, | |
"height": 704 | |
}, | |
{ | |
"width": 301, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2032", | |
"@type": "sc:Canvas", | |
"label": "Page 67", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2032", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2032", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2032", | |
"height": 5635, | |
"width": 5040, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5040, | |
"height": 5635 | |
}, | |
{ | |
"width": 2520, | |
"height": 2818 | |
}, | |
{ | |
"width": 1260, | |
"height": 1409 | |
}, | |
{ | |
"width": 630, | |
"height": 704 | |
}, | |
{ | |
"width": 315, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2033", | |
"@type": "sc:Canvas", | |
"label": "Page 68", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2033", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2033", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2033", | |
"height": 5635, | |
"width": 4816, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4816, | |
"height": 5635 | |
}, | |
{ | |
"width": 2408, | |
"height": 2818 | |
}, | |
{ | |
"width": 1204, | |
"height": 1409 | |
}, | |
{ | |
"width": 602, | |
"height": 704 | |
}, | |
{ | |
"width": 301, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2034", | |
"@type": "sc:Canvas", | |
"label": "Page 69", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2034", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2034", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2034", | |
"height": 5635, | |
"width": 4944, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4944, | |
"height": 5635 | |
}, | |
{ | |
"width": 2472, | |
"height": 2818 | |
}, | |
{ | |
"width": 1236, | |
"height": 1409 | |
}, | |
{ | |
"width": 618, | |
"height": 704 | |
}, | |
{ | |
"width": 309, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2035", | |
"@type": "sc:Canvas", | |
"label": "Page 70", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2035", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2035", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2035", | |
"height": 5635, | |
"width": 4752, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4752, | |
"height": 5635 | |
}, | |
{ | |
"width": 2376, | |
"height": 2818 | |
}, | |
{ | |
"width": 1188, | |
"height": 1409 | |
}, | |
{ | |
"width": 594, | |
"height": 704 | |
}, | |
{ | |
"width": 297, | |
"height": 352 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2036", | |
"@type": "sc:Canvas", | |
"label": "Page 71", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2036", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2036", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2036", | |
"height": 5683, | |
"width": 4880, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4880, | |
"height": 5683 | |
}, | |
{ | |
"width": 2440, | |
"height": 2842 | |
}, | |
{ | |
"width": 1220, | |
"height": 1421 | |
}, | |
{ | |
"width": 610, | |
"height": 710 | |
}, | |
{ | |
"width": 305, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2037", | |
"@type": "sc:Canvas", | |
"label": "Page 72", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2037", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2037", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2037", | |
"height": 5683, | |
"width": 5072, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5072, | |
"height": 5683 | |
}, | |
{ | |
"width": 2536, | |
"height": 2842 | |
}, | |
{ | |
"width": 1268, | |
"height": 1421 | |
}, | |
{ | |
"width": 634, | |
"height": 710 | |
}, | |
{ | |
"width": 317, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2038", | |
"@type": "sc:Canvas", | |
"label": "Page 73", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2038", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2038", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2038", | |
"height": 5827, | |
"width": 5104, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5104, | |
"height": 5827 | |
}, | |
{ | |
"width": 2552, | |
"height": 2914 | |
}, | |
{ | |
"width": 1276, | |
"height": 1457 | |
}, | |
{ | |
"width": 638, | |
"height": 728 | |
}, | |
{ | |
"width": 319, | |
"height": 364 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2039", | |
"@type": "sc:Canvas", | |
"label": "Page 74", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2039", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2039", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2039", | |
"height": 5683, | |
"width": 4832, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4832, | |
"height": 5683 | |
}, | |
{ | |
"width": 2416, | |
"height": 2842 | |
}, | |
{ | |
"width": 1208, | |
"height": 1421 | |
}, | |
{ | |
"width": 604, | |
"height": 710 | |
}, | |
{ | |
"width": 302, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2040", | |
"@type": "sc:Canvas", | |
"label": "Page 75", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2040", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2040", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2040", | |
"height": 5683, | |
"width": 4976, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4976, | |
"height": 5683 | |
}, | |
{ | |
"width": 2488, | |
"height": 2842 | |
}, | |
{ | |
"width": 1244, | |
"height": 1421 | |
}, | |
{ | |
"width": 622, | |
"height": 710 | |
}, | |
{ | |
"width": 311, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2041", | |
"@type": "sc:Canvas", | |
"label": "Page 76", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2041", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2041", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2041", | |
"height": 5683, | |
"width": 4912, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 4912, | |
"height": 5683 | |
}, | |
{ | |
"width": 2456, | |
"height": 2842 | |
}, | |
{ | |
"width": 1228, | |
"height": 1421 | |
}, | |
{ | |
"width": 614, | |
"height": 710 | |
}, | |
{ | |
"width": 307, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2042", | |
"@type": "sc:Canvas", | |
"label": "Page 77", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2042", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2042", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2042", | |
"height": 5683, | |
"width": 5024, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5024, | |
"height": 5683 | |
}, | |
{ | |
"width": 2512, | |
"height": 2842 | |
}, | |
{ | |
"width": 1256, | |
"height": 1421 | |
}, | |
{ | |
"width": 628, | |
"height": 710 | |
}, | |
{ | |
"width": 314, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2043", | |
"@type": "sc:Canvas", | |
"label": "Page 78", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2043", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2043", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2043", | |
"height": 5683, | |
"width": 5024, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5024, | |
"height": 5683 | |
}, | |
{ | |
"width": 2512, | |
"height": 2842 | |
}, | |
{ | |
"width": 1256, | |
"height": 1421 | |
}, | |
{ | |
"width": 628, | |
"height": 710 | |
}, | |
{ | |
"width": 314, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2044", | |
"@type": "sc:Canvas", | |
"label": "Page 79", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2044", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll231/id/2044", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll231/2044", | |
"height": 5683, | |
"width": 5024, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 5024, | |
"height": 5683 | |
}, | |
{ | |
"width": 2512, | |
"height": 2842 | |
}, | |
{ | |
"width": 1256, | |
"height": 1421 | |
}, | |
{ | |
"width": 628, | |
"height": 710 | |
}, | |
{ | |
"width": 314, | |
"height": 355 | |
} | |
] | |
} | |
} | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "http://iiif.io/api/presentation/2/context.json", | |
"@id": "http://7560ef37.ngrok.io/iiif_manifest.json", | |
"@type": "sc:Manifest", | |
"label": "Map of the Island of Bombay : index to progress", | |
"metadata": [ | |
{ | |
"label": "format", | |
"value": "Maps | http://vocab.getty.edu/aat/300028094" | |
}, | |
{ | |
"label": "subject", | |
"value": "Plague India Mumbai Maps, public Health India Mumbai Maps, mumbai (India) Maps, maps" | |
} | |
], | |
"sequences": [ | |
{ | |
"@type": "sc:Sequence", | |
"canvases": [ | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll246/id/73", | |
"@type": "sc:Canvas", | |
"label": "Page 1", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll246/id/73", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll246/id/73", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll246/73", | |
"height": 8397, | |
"width": 9252, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 9252, | |
"height": 8397 | |
}, | |
{ | |
"width": 4626, | |
"height": 4199 | |
}, | |
{ | |
"width": 2313, | |
"height": 2099 | |
}, | |
{ | |
"width": 1157, | |
"height": 1050 | |
}, | |
{ | |
"width": 578, | |
"height": 525 | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
{ | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll246/id/74", | |
"@type": "sc:Canvas", | |
"label": "Page 2", | |
"height": 1500, | |
"width": 1500, | |
"images": [ | |
{ | |
"@type": "oa:Annotation", | |
"motivation": "sc:painting", | |
"on": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll246/id/74", | |
"resource": { | |
"@id": "https://cdm16022.contentdm.oclc.org/utils/getthumbnail/collection/p16022coll246/id/74", | |
"@type": "dctypes:Image", | |
"format": "image/jpeg", | |
"height": 1500, | |
"width": 1500, | |
"service": { | |
"@context": "http://iiif.io/api/image/2/context.json", | |
"@id": "https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll246/74", | |
"height": 8379, | |
"width": 9266, | |
"profile": [ | |
"http://iiif.io/api/image/2/level1.json" | |
], | |
"protocol": "http://iiif.io/api/image", | |
"tiles": [ | |
{ | |
"scaleFactors": [ | |
1, | |
2, | |
4, | |
8, | |
16 | |
], | |
"width": 1024 | |
} | |
], | |
"sizes": [ | |
{ | |
"width": 9266, | |
"height": 8379 | |
}, | |
{ | |
"width": 4633, | |
"height": 4190 | |
}, | |
{ | |
"width": 2317, | |
"height": 2095 | |
}, | |
{ | |
"width": 1158, | |
"height": 1047 | |
}, | |
{ | |
"width": 579, | |
"height": 524 | |
} | |
] | |
} | |
} | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment