-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
154 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# Adding annotations to a manifest | ||
In order for **SOME** viewers to be able to view annotations you need to add them to your manifest. This is done manually. | ||
|
||
# How to link your manifest to annotations | ||
Open up your manifest in VS Code. | ||
|
||
Then find the canvas your annotations point to then add the following: | ||
|
||
## For V2 Manifest | ||
```json | ||
"otherContent": [ | ||
{ | ||
"@id": "https://iiif-test.github.io/BLJan2022/annotations/ce1d6509b5ec52275691847dd08d36b5.json", | ||
"@type": "sc:AnnotationList", | ||
"label": "My fantastic annotations" | ||
} | ||
] | ||
``` | ||
|
||
## For V3 Manifest | ||
```json | ||
"annotations": [ | ||
{ | ||
"id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", | ||
"type": "AnnotationPage" | ||
} | ||
] | ||
``` | ||
|
||
after the images array. Replace the URL after the `@id` with the URL of your annotation. A full V2 canvas example is below: | ||
|
||
```json | ||
{ | ||
"@id": "http://dams.llgc.org.uk/iiif/2.0/4004562/canvas/4004563.json", | ||
"@type": "sc:Canvas", | ||
"label": "1r", | ||
"height": 5584, | ||
"width": 3744, | ||
"images": [ | ||
{ | ||
"@id": "http://dams.llgc.org.uk/iiif/2.0/4004562/annotation/4004563.json", | ||
"@type": "oa:Annotation", | ||
"motivation": "sc:painting", | ||
"resource": { | ||
"@id": "http://dams.llgc.org.uk/iiif/2.0/image/4004563/full/1024,/0/default.jpg", | ||
"@type": "dctypes:Image", | ||
"format": "image/jpeg", | ||
"service": { | ||
"@context": "http://iiif.io/api/image/2/context.json", | ||
"@id": "http://dams.llgc.org.uk/iiif/2.0/image/4004563", | ||
"profile": "http://iiif.io/api/image/2/level1.json" | ||
}, | ||
"height": 5584, | ||
"width": 3744 | ||
}, | ||
"on": "http://dams.llgc.org.uk/iiif/2.0/4004562/canvas/4004563.json" | ||
} | ||
], | ||
"otherContent": [ | ||
{ | ||
"@id": "https://iiif-test.github.io/BLJan2022/annotations/ce1d6509b5ec52275691847dd08d36b5.json", | ||
"@type": "sc:AnnotationList", | ||
"label": "My fantastic annotations" | ||
} | ||
] | ||
}, | ||
|
||
``` | ||
|
||
Save the manifest. Watch out for JSON typing errors. Common JSON issues include: | ||
|
||
* Make sure that all the brackets match up | ||
* Lines that are not the last line in a list or array must have a `,` at the end of the line. | ||
|
||
To make this easier you may want to use a JSON aware editor like VS Code which will tell you if you are missing brackets or commas. You can also copy and paste your JSON to: | ||
|
||
https://jsonlint.com/ | ||
|
||
which will tell you if the JSON is valid and if not where the error is. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Crowdsourcing transcriptions | ||
1. [Cratylus](https://apps.bowdoin.edu/cratylus/) - a crowd-sourced art tagging toolset. | ||
2. [FromThePage](https://fromthepage.com/landing) - a crowdsourcing platform for archives and libraries where volunteers transcribe, index, and describe historic documents. | ||
3. [Madoc](https://madoc.digirati.com/) - a flexible crowdsourcing, research and teaching platform for digitised collections. | ||
3. [Zooniverse](https://github.com/zooniverse/iiif-annotations) - A proof-of-concept, annotating a IIIF manifest with Zooniverse classification data. See also [Importing images into Zooniverse with a IIIF manifest: introducing an experimental feature](https://blogs.bl.uk/digital-scholarship/2022/04/importing-images-into-zooniverse-with-a-iiif-manifest-introducing-an-experimental-feature.html) and [Fun with IIIF](https://blog.zooniverse.org/2022/04/20/fun-with-iiif/) on the ability to use IIIF to import media into the Zooniverse project builder. | ||
|
||
# CMS integrations | ||
1. [IIIF Toolkit](https://github.com/utlib/IiifItems) - IIIF Toolkit by University of Toronto Libraries is a plugin for Omeka Classic (2.3+) that integrates Mirador with a built-in annotator, a manifest generator, Simple Pages shortcodes and Exhibit Builder blocks for a rich presentation experience. | ||
|
||
# Maps | ||
1. [AllMaps](https://allmaps.org/) - Georeference manifest images with annotations. | ||
|
||
# ALTO | ||
1. [ALTO to annotation list](https://github.com/glenrobson/iiif_stuff/tree/master/alto2annotations) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Exhibit.so | ||
1. Go to [https://www.exhibit.so/exhibits/create](https://www.exhibit.so/exhibits/create) | ||
2. Choose your view and fill out the form. Click `create exhibit` | ||
![](imgs/storytelling-1.png) | ||
3. Click `Add Item` | ||
![](imgs/storytelling-2.png) | ||
4. Add a manifest url. | ||
![](imgs/storytelling-3.png) | ||
5. In the viewer on the right zoom to the feature you want to highlight. | ||
5. Click on the plus button to create an annotation | ||
![](imgs/storytelling-4.png) | ||
6. Create your comments. To share the view, click on the share button. | ||
![](imgs/storytelling-5.png) | ||
7. Keep track of your URLs | ||
![](imgs/storytelling-6.png) | ||
8. Below is the storytelling viewer that exhibit creates. | ||
![](imgs/storytelling-7.png) | ||
|
||
# Storiiies | ||
1. Go to [https://storiiies-editor.cogapp.com/](https://storiiies-editor.cogapp.com/) | ||
2. Fill out form | ||
![](imgs/storytelling-8.png) | ||
3. In the viewer on the right zoom to the feature you want to highlight. | ||
4. Click `Add new` to create an annotation. | ||
5. After you are done creating annotations click the share button. | ||
![](imgs/storytelling-9.png) | ||
![](imgs/storytelling-10.png) | ||
8. Below is the storytelling viewer that storiiies creates. | ||
![](imgs/storytelling-11.png) | ||
|
||
# Adno | ||
1. Go to [https://w.adno.app/#/](https://w.adno.app/#/) | ||
2. Add manifest and click `CREATE MY OWN PROJECT` | ||
![](imgs/storytelling-12.png) | ||
3. Choose a picture from those listed (you can only use one image) and click `USE THIS PICTURE FOR MY PROJECT` | ||
![](imgs/storytelling-13.png) | ||
4. Add title, description (optional). click `CREATE MY NEW PROJECT` | ||
![](imgs/storytelling-14.png) | ||
5. Click on of the shapes in the toolbar and create a shape. | ||
![](imgs/storytelling-15.png) | ||
![](imgs/storytelling-16.png) | ||
6. A pop up will appear for you to put your annotations in. Fill out and click save. | ||
![](imgs/storytelling-17.png) | ||
7. Click the download icon to download your annotations. Unfortunately the download doesn't conform to spec so you will have to do a little transformation if you want to use it in a different viewer. | ||
![](imgs/storytelling-18.png) | ||
![](imgs/storytelling-19.png) | ||
8. View if you disable edit mode. | ||
![](imgs/storytelling-29.png) | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Recogito | ||
|
||
1. Go to [https://recogito.pelagios.org/](https://recogito.pelagios.org/) | ||
2. Create an account and log in. | ||
|
||
<iframe src="https://recogito.pelagios.org/help/tutorial" style="height: 880px"></iframe> | ||
|
||
3. Annotations aren't viewable but are downloadable. |