blacklight_allmaps 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +107 -0
  3. data/.gitignore +20 -0
  4. data/.standard.yml +1 -0
  5. data/Gemfile +50 -0
  6. data/app/assets/images/blacklight_allmaps/.keep +0 -0
  7. data/app/assets/stylesheets/blacklight/allmaps/base.scss +4 -1
  8. data/app/assets/stylesheets/blacklight/allmaps/modules/leaflet.opacity.css +76 -0
  9. data/app/jobs/blacklight/allmaps/store_sidecar_annotation.rb +3 -0
  10. data/app/models/concerns/.keep +0 -0
  11. data/blacklight_allmaps.gemspec +34 -0
  12. data/doc/Proposal_Eric_Larson_Ian_Spangler_4CE510.pdf +0 -0
  13. data/doc/allmaps_branding_screenshot.png +0 -0
  14. data/doc/allmaps_screenshot.png +0 -0
  15. data/doc/allmaps_screenshot_window.png +0 -0
  16. data/doc/development.md +72 -0
  17. data/doc/gbl_screenshot.png +0 -0
  18. data/doc/gbl_screenshot_window.png +0 -0
  19. data/doc/georeferenced_facet.png +0 -0
  20. data/doc/screenshot_layers.acorn +0 -0
  21. data/doc/screenshot_layers.png +0 -0
  22. data/lib/blacklight/allmaps/tasks/index.rake +1 -0
  23. data/lib/blacklight/allmaps/version.rb +1 -1
  24. data/lib/blacklight/allmaps.rb +10 -2
  25. data/lib/generators/blacklight/allmaps/blacklight_generator.rb +9 -3
  26. data/lib/generators/blacklight/allmaps/config_generator.rb +7 -1
  27. data/lib/generators/blacklight/allmaps/geoblacklight_generator.rb +10 -1
  28. data/lib/generators/blacklight/allmaps/templates/package.json +6 -0
  29. data/package.json +43 -0
  30. data/rollup.config.js +43 -0
  31. data/solr/blacklight/conf/_rest_managed.json +3 -0
  32. data/solr/blacklight/conf/admin-extra.html +31 -0
  33. data/solr/blacklight/conf/elevate.xml +36 -0
  34. data/solr/blacklight/conf/mapping-ISOLatin1Accent.txt +246 -0
  35. data/solr/blacklight/conf/protwords.txt +21 -0
  36. data/solr/blacklight/conf/schema.xml +388 -0
  37. data/solr/blacklight/conf/scripts.conf +24 -0
  38. data/solr/blacklight/conf/solrconfig.xml +265 -0
  39. data/solr/blacklight/conf/spellings.txt +2 -0
  40. data/solr/blacklight/conf/stopwords.txt +58 -0
  41. data/solr/blacklight/conf/stopwords_en.txt +58 -0
  42. data/solr/blacklight/conf/synonyms.txt +31 -0
  43. data/solr/blacklight/conf/xslt/example.xsl +132 -0
  44. data/solr/blacklight/conf/xslt/example_atom.xsl +67 -0
  45. data/solr/blacklight/conf/xslt/example_rss.xsl +66 -0
  46. data/solr/blacklight/conf/xslt/luke.xsl +337 -0
  47. data/solr/geoblacklight/conf/_rest_managed.json +3 -0
  48. data/solr/geoblacklight/conf/admin-extra.html +31 -0
  49. data/solr/geoblacklight/conf/core.properties +5 -0
  50. data/solr/geoblacklight/conf/elevate.xml +36 -0
  51. data/solr/geoblacklight/conf/mapping-ISOLatin1Accent.txt +246 -0
  52. data/solr/geoblacklight/conf/protwords.txt +21 -0
  53. data/solr/geoblacklight/conf/schema.xml +198 -0
  54. data/solr/geoblacklight/conf/scripts.conf +24 -0
  55. data/solr/geoblacklight/conf/solrconfig.xml +243 -0
  56. data/solr/geoblacklight/conf/spellings.txt +2 -0
  57. data/solr/geoblacklight/conf/stopwords.txt +58 -0
  58. data/solr/geoblacklight/conf/stopwords_en.txt +58 -0
  59. data/solr/geoblacklight/conf/synonyms.txt +31 -0
  60. data/solr/geoblacklight/conf/xslt/example.xsl +132 -0
  61. data/solr/geoblacklight/conf/xslt/example_atom.xsl +67 -0
  62. data/solr/geoblacklight/conf/xslt/example_rss.xsl +66 -0
  63. data/solr/geoblacklight/conf/xslt/luke.xsl +337 -0
  64. data/spec/controllers/annotations_controller_spec.rb +74 -0
  65. data/spec/factories/annotations.rb +12 -0
  66. data/spec/features/show_page_spec.rb +35 -0
  67. data/spec/features/sidebar_spec.rb +28 -0
  68. data/spec/fixtures/blacklight_allmaps_sidecars.yml +1203 -0
  69. data/spec/fixtures/solr_documents/README.md +15 -0
  70. data/spec/fixtures/solr_documents/blacklight/README.md +9 -0
  71. data/spec/fixtures/solr_documents/blacklight/bl_georeferenced.json +40 -0
  72. data/spec/fixtures/solr_documents/geoblacklight/gbl_btaa_northwestern_georeferenced.json +57 -0
  73. data/spec/fixtures/solr_documents/geoblacklight/gbl_harvard-g4124-m2-1855-m3_georefereneced.json +68 -0
  74. data/spec/fixtures/solr_documents/geoblacklight/gbl_not_georeferenced.json +67 -0
  75. data/spec/fixtures/solr_documents/geoblacklight/gbl_osu-0r967h708_georeferenced.json +60 -0
  76. data/spec/fixtures/solr_documents/geoblacklight/gbl_p16022coll230:1933_georeferenced.json +60 -0
  77. data/spec/fixtures/solr_documents/geoblacklight/gbl_p16022coll230:360_georeferenced.json +67 -0
  78. data/spec/fixtures/solr_documents/geoblacklight/gbl_p16022coll230:4038_georeferenced.json +53 -0
  79. data/spec/helpers/blacklight/allmaps/application_helper_spec.rb +28 -0
  80. data/spec/models/blacklight/allmaps/sidecar_allmaps_spec.rb +22 -0
  81. data/spec/spec_helper.rb +53 -0
  82. data/spec/test_app_templates/Gemfile.extra +2 -0
  83. data/spec/test_app_templates/lib/generators/test_app_generator.rb +48 -0
  84. data/vendor/assets/images/fullscreen.png +0 -0
  85. data/vendor/assets/images/fullscreen@2x.png +0 -0
  86. data/vendor/assets/images/layers-2x.png +0 -0
  87. data/vendor/assets/images/layers.png +0 -0
  88. data/vendor/assets/images/marker-icon-2x.png +0 -0
  89. data/vendor/assets/images/marker-icon.png +0 -0
  90. data/vendor/assets/images/marker-shadow.png +0 -0
  91. data/vendor/assets/stylesheets/leaflet.css +640 -0
  92. data/vendor/assets/stylesheets/leaflet.fullscreen.css +40 -0
  93. metadata +85 -2
@@ -0,0 +1,1203 @@
1
+ ---
2
+ blacklight_allmaps_sidecars_001:
3
+ id: 1
4
+ solr_document_id: harvard-g4124-m2-1855-m3
5
+ document_type: SolrDocument
6
+ manifest_id: https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/manifest
7
+ annotated: 1
8
+ allmaps_id: c2f9fc8490151424
9
+ iiif_manifest: '{"@context":"http://iiif.io/api/presentation/2/context.json","@id":"https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/manifest","@type":"sc:Manifest","label":"Map
10
+ of Madison and the Four Lake Country, Dane Co. Wis","thumbnail":{"@id":"https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/thumbnail","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://iiif.digitalcommonwealth.org/iiif/2/commonwealth:4m90f944g","profile":"http://iiif.io/api/image/2/level2.json"}},"viewingHint":"individuals","metadata":[{"label":"Title","value":"Map
11
+ of Madison and the Four Lake Country, Dane Co. Wis"},{"label":"Date","value":"1855"},{"label":"Publisher","value":"S.l
12
+ : [s.n.]"},{"label":"Type of Resource","value":"Cartographic"},{"label":"Format","value":"Maps"},{"label":"Language","value":"English"},{"label":"Subjects","value":["Madison
13
+ (Wis.)--Maps","Dane County (Wis.)--Maps"]},{"label":"Location","value":"Boston
14
+ Public Library"},{"label":"Collection (local)","value":"Norman B. Leventhal Map
15
+ Center Collection"},{"label":"Identifier","value":["https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436","06_01_011351","G4124.M2
16
+ 1855 .M37","39999065684670"]},{"label":"Terms of Use","value":["No known copyright
17
+ restrictions.","No known restrictions on use."]}],"attribution":"No known copyright
18
+ restrictions. No known restrictions on use.","seeAlso":"https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436","sequences":[{"@type":"sc:Sequence","canvases":[{"@id":"https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/canvas/4m90f944g","@type":"sc:Canvas","label":"image
19
+ 1","width":5280,"height":3524,"images":[{"@id":"https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/annotation/4m90f944g","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://ark.digitalcommonwealth.org/ark:/50959/4m90f944g/large_image","@type":"dctypes:Image","format":"image/jpeg","width":5280,"height":3524,"service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://iiif.digitalcommonwealth.org/iiif/2/commonwealth:4m90f944g","profile":"http://iiif.io/api/image/2/level2.json"}},"on":"https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/canvas/4m90f944g"}]}]}]}'
20
+ allmaps_annotation: |-
21
+ {
22
+ "type": "AnnotationPage",
23
+ "@context": "http://www.w3.org/ns/anno.jsonld",
24
+ "items": [
25
+ {
26
+ "id": "https://annotations.allmaps.org/maps/3740c2822f443181",
27
+ "type": "Annotation",
28
+ "@context": [
29
+ "http://iiif.io/api/extension/georef/1/context.json",
30
+ "http://iiif.io/api/presentation/3/context.json"
31
+ ],
32
+ "created": "2024-02-15T21:56:21.178Z",
33
+ "modified": "2024-03-06T15:30:40.215Z",
34
+ "motivation": "georeferencing",
35
+ "target": {
36
+ "type": "SpecificResource",
37
+ "source": {
38
+ "id": "https://iiif.digitalcommonwealth.org/iiif/2/commonwealth:4m90f944g",
39
+ "type": "ImageService2",
40
+ "height": 3524,
41
+ "width": 5280,
42
+ "partOf": [
43
+ {
44
+ "id": "https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/canvas/4m90f944g",
45
+ "type": "Canvas",
46
+ "label": {
47
+ "none": [
48
+ "image 1"
49
+ ]
50
+ },
51
+ "partOf": [
52
+ {
53
+ "id": "https://ark.digitalcommonwealth.org/ark:/50959/4m90f9436/manifest",
54
+ "type": "Manifest",
55
+ "label": {
56
+ "none": [
57
+ "Map of Madison and the Four Lake Country, Dane Co. Wis"
58
+ ]
59
+ }
60
+ }
61
+ ]
62
+ }
63
+ ]
64
+ },
65
+ "selector": {
66
+ "type": "SvgSelector",
67
+ "value": "<svg width=\"5280\" height=\"3524\"><polygon points=\"0,0 0,3524 5280,3524 5280,0\" /></svg>"
68
+ }
69
+ },
70
+ "body": {
71
+ "type": "FeatureCollection",
72
+ "features": [
73
+ {
74
+ "type": "Feature",
75
+ "properties": {
76
+ "resourceCoords": [
77
+ 2103,
78
+ 2050
79
+ ]
80
+ },
81
+ "geometry": {
82
+ "type": "Point",
83
+ "coordinates": [
84
+ -89.3906863,
85
+ 43.063518
86
+ ]
87
+ }
88
+ },
89
+ {
90
+ "type": "Feature",
91
+ "properties": {
92
+ "resourceCoords": [
93
+ 1661,
94
+ 1875
95
+ ]
96
+ },
97
+ "geometry": {
98
+ "type": "Point",
99
+ "coordinates": [
100
+ -89.4153397,
101
+ 43.0898488
102
+ ]
103
+ }
104
+ },
105
+ {
106
+ "type": "Feature",
107
+ "properties": {
108
+ "resourceCoords": [
109
+ 3232,
110
+ 2419
111
+ ]
112
+ },
113
+ "geometry": {
114
+ "type": "Point",
115
+ "coordinates": [
116
+ -89.3468133,
117
+ 42.991941
118
+ ]
119
+ }
120
+ },
121
+ {
122
+ "type": "Feature",
123
+ "properties": {
124
+ "resourceCoords": [
125
+ 2969,
126
+ 1775
127
+ ]
128
+ },
129
+ "geometry": {
130
+ "type": "Point",
131
+ "coordinates": [
132
+ -89.3216873,
133
+ 43.034958
134
+ ]
135
+ }
136
+ },
137
+ {
138
+ "type": "Feature",
139
+ "properties": {
140
+ "resourceCoords": [
141
+ 2112,
142
+ 1481
143
+ ]
144
+ },
145
+ "geometry": {
146
+ "type": "Point",
147
+ "coordinates": [
148
+ -89.3541899,
149
+ 43.0854213
150
+ ]
151
+ }
152
+ }
153
+ ],
154
+ "_allmaps": {
155
+ "id": "https://annotations.allmaps.org/maps/3740c2822f443181",
156
+ "version": "https://annotations.allmaps.org/maps/3740c2822f443181@6780f83e95a691ac",
157
+ "image": {
158
+ "id": "https://annotations.allmaps.org/images/aab5f7eb40d1dc3d",
159
+ "version": "https://annotations.allmaps.org/images/aab5f7eb40d1dc3d@73af1f58c2428160",
160
+ "canvases": [
161
+ {
162
+ "id": "https://annotations.allmaps.org/canvases/1990717a096c4621",
163
+ "manifests": [
164
+ {
165
+ "id": "https://annotations.allmaps.org/manifests/c2f9fc8490151424"
166
+ }
167
+ ]
168
+ }
169
+ ]
170
+ },
171
+ "scale": 0.135874,
172
+ "area": 1007851484.75
173
+ }
174
+ }
175
+ }
176
+ ]
177
+ }
178
+ solr_version: 1794894200817319936
179
+ created_at: '2024-03-29 20:41:24.473609'
180
+ updated_at: '2024-03-29 20:42:49.494823'
181
+ blacklight_allmaps_sidecars_002:
182
+ id: 2
183
+ solr_document_id: osu-0r967h708
184
+ document_type: SolrDocument
185
+ manifest_id: https://library.osu.edu/dc/dc/concern/generic_works/0r967h708/manifest
186
+ annotated: 1
187
+ allmaps_id: 0a6b16061e689d04
188
+ iiif_manifest: '{"@context":"http://iiif.io/api/presentation/2/context.json","@id":"https://library.osu.edu/dc/dc/concern/generic_works/0r967h708/manifest","@type":"sc:Manifest","label":"Quaternary
189
+ geology of Ohio","metadata":[{"label":"Title","value":["Quaternary geology of
190
+ Ohio"]},{"label":"Unit","value":["Geology Library and Map Room"]},{"label":"Creator","value":["Ohio.
191
+ Division of Geological Survey"]},{"label":"Permanent Link","value":"\u003ca href=\"https://hdl.handle.net/1811/7bb2e628-711a-46aa-9e97-cf5f1d51a5ea\"\u003ehttps://hdl.handle.net/1811/7bb2e628-711a-46aa-9e97-cf5f1d51a5ea\u003c/a\u003e"},{"label":"Subject","value":["Geology"]},{"label":"Rights","value":"\u003ca href=\"http://rightsstatements.org/vocab/InC/1.0/\"\u003ehttp://rightsstatements.org/vocab/InC/1.0/\u003c/a\u003e"},{"label":"Identifier","value":["i93634419"]}],"sequences":[{"@id":"https://library.osu.edu/dc/dc/concern/generic_works/0r967h708/sequence/normal","@type":"sc:Sequence","canvases":[{"@id":"https://library.osu.edu/dc/concern/file_sets/qz20t6962","@type":"sc:Canvas","width":15845,"height":15688,"label":"Canvas-qz20t6962","images":[{"@id":"https://library.osu.edu/dc/concern/file_sets/qz20t6962/images","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://library.osu.edu/dc/concern/file_sets/qz20t6962","@type":"dctypes:Image","format":"image/jpeg","width":15845,"height":15688,"service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://library.osu.edu/loris/qz20t6962.jp2","profile":"http://iiif.io/api/image/2/level2.json","disableUi":["mediaDownload"]}},"on":"https://library.osu.edu/dc/concern/file_sets/qz20t6962"}]}]}]}'
192
+ allmaps_annotation: |-
193
+ {
194
+ "type": "AnnotationPage",
195
+ "@context": "http://www.w3.org/ns/anno.jsonld",
196
+ "items": [
197
+ {
198
+ "id": "https://annotations.allmaps.org/maps/ce267edce2c7efcd",
199
+ "type": "Annotation",
200
+ "@context": [
201
+ "http://iiif.io/api/extension/georef/1/context.json",
202
+ "http://iiif.io/api/presentation/3/context.json"
203
+ ],
204
+ "created": "2024-01-09T17:50:33.111Z",
205
+ "modified": "2024-01-09T17:51:23.768Z",
206
+ "motivation": "georeferencing",
207
+ "target": {
208
+ "type": "SpecificResource",
209
+ "source": {
210
+ "id": "https://library.osu.edu/loris/qz20t6962.jp2",
211
+ "type": "ImageService2",
212
+ "height": 3564,
213
+ "width": 3600,
214
+ "partOf": [
215
+ {
216
+ "id": "https://library.osu.edu/dc/concern/file_sets/qz20t6962",
217
+ "type": "Canvas",
218
+ "label": {
219
+ "none": [
220
+ "Canvas-qz20t6962"
221
+ ]
222
+ },
223
+ "partOf": [
224
+ {
225
+ "id": "https://library.osu.edu/dc/dc/concern/generic_works/0r967h708/manifest",
226
+ "type": "Manifest",
227
+ "label": {
228
+ "none": [
229
+ "Quaternary geology of Ohio"
230
+ ]
231
+ }
232
+ }
233
+ ]
234
+ }
235
+ ]
236
+ },
237
+ "selector": {
238
+ "type": "SvgSelector",
239
+ "value": "<svg width=\"3600\" height=\"3564\"><polygon points=\"96,90 2821,86 2848,3055 67,3038\" /></svg>"
240
+ }
241
+ },
242
+ "body": {
243
+ "type": "FeatureCollection",
244
+ "features": [
245
+ {
246
+ "type": "Feature",
247
+ "properties": {
248
+ "resourceCoords": [
249
+ 128,
250
+ 2383
251
+ ]
252
+ },
253
+ "geometry": {
254
+ "type": "Point",
255
+ "coordinates": [
256
+ -84.8244098,
257
+ 39.1124577
258
+ ]
259
+ }
260
+ },
261
+ {
262
+ "type": "Feature",
263
+ "properties": {
264
+ "resourceCoords": [
265
+ 2717,
266
+ 156
267
+ ]
268
+ },
269
+ "geometry": {
270
+ "type": "Point",
271
+ "coordinates": [
272
+ -80.5348739,
273
+ 41.9795642
274
+ ]
275
+ }
276
+ },
277
+ {
278
+ "type": "Feature",
279
+ "properties": {
280
+ "resourceCoords": [
281
+ 187,
282
+ 372
283
+ ]
284
+ },
285
+ "geometry": {
286
+ "type": "Point",
287
+ "coordinates": [
288
+ -84.8000245,
289
+ 41.6889821
290
+ ]
291
+ }
292
+ },
293
+ {
294
+ "type": "Feature",
295
+ "properties": {
296
+ "resourceCoords": [
297
+ 2736,
298
+ 1193
299
+ ]
300
+ },
301
+ "geometry": {
302
+ "type": "Point",
303
+ "coordinates": [
304
+ -80.5361066,
305
+ 40.6372563
306
+ ]
307
+ }
308
+ }
309
+ ],
310
+ "_allmaps": {
311
+ "id": "https://annotations.allmaps.org/maps/ce267edce2c7efcd",
312
+ "version": "https://annotations.allmaps.org/maps/ce267edce2c7efcd@f7761b4328b727f4",
313
+ "image": {
314
+ "id": "https://annotations.allmaps.org/images/ea4ab0120c7b8d27",
315
+ "version": "https://annotations.allmaps.org/images/ea4ab0120c7b8d27@ec6f77255fb0f99c",
316
+ "canvases": [
317
+ {
318
+ "id": "https://annotations.allmaps.org/canvases/88940d1eb7571acb",
319
+ "manifests": [
320
+ {
321
+ "id": "https://annotations.allmaps.org/manifests/0a6b16061e689d04"
322
+ }
323
+ ]
324
+ }
325
+ ]
326
+ },
327
+ "scale": 0.007021,
328
+ "area": 165230310899.32
329
+ }
330
+ }
331
+ }
332
+ ]
333
+ }
334
+ solr_version: 1794894200836194304
335
+ created_at: '2024-03-29 20:42:49.513472'
336
+ updated_at: '2024-03-29 20:42:52.742401'
337
+ blacklight_allmaps_sidecars_003:
338
+ id: 3
339
+ solr_document_id: p16022coll230:1933
340
+ document_type: SolrDocument
341
+ manifest_id: https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/manifest.json
342
+ annotated: 1
343
+ allmaps_id: 669e0c0d5536d81b
344
+ iiif_manifest: '{"@context":"http://iiif.io/api/presentation/2/context.json","@type":"sc:Manifest","@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/manifest.json","label":"Lake
345
+ Superior and the northern part of Michigan","metadata":[{"label":"Additional Notes","value":"Relief
346
+ shown by hachures.; Prime meridians: Greenwich and Washington.; \"Entered according
347
+ to act of Congress in the year 1855 by J.H. Colton & Co. ...\"; From Colton''s
348
+ atlas of the world. New York: J.H. Colton & Co., 1855?. No. 43."},{"label":"Barcode
349
+ Identifier","value":"UMN_BARCODE:B4628043"},{"label":"Contact Information","value":"University
350
+ of Minnesota Libraries, John R. Borchert Map Library. S-76 Wilson Library, 309
351
+ 19th Ave S, Minneapolis, MN 55455; https://www.lib.umn.edu/borchert"},{"label":"Continent","value":"North
352
+ America"},{"label":"Contributing Organization","value":"University of Minnesota
353
+ Libraries, John R. Borchert Map Library."},{"label":"Coordinates","value":"W0921500
354
+ W0832500 N0491000 N0450000; (W 92°15ʹ--W 83°25ʹ/N 49°10ʹ--N 45°00ʹ)"},{"label":"Country","value":"United
355
+ States"},{"label":"Creator","value":"J.H. Colton & Co"},{"label":"Date of Creation","value":"1855"},{"label":"Dimensions","value":"29
356
+ x 42 centimeters"},{"label":"DLS Identifier","value":"map11876"},{"label":"Item
357
+ Physical Format","value":"Maps | http://vocab.getty.edu/aat/300028094"},{"label":"Local
358
+ Identifier","value":"G4112.N6 1855 .C7"},{"label":"Language","value":"English"},{"label":"Local
359
+ Rights Statement","value":"Use of this item may be governed by US and international
360
+ copyright laws. You may be able to use this item, but copyright and other considerations
361
+ may apply. For possible additional information or guidance on your use, please
362
+ contact the contributing organization."},{"label":"Publisher","value":"J.H. Colton
363
+ & Co (New York)"},{"label":"Scale","value":"Scale approximately 1:1,625,000"},{"label":"State
364
+ or Province","value":"Michigan"},{"label":"System Identifier","value":"UMN_ALMA:9920722310001701"},{"label":"Title","value":"Lake
365
+ Superior and the northern part of Michigan"},{"label":"Item Type","value":"Cartographic"},{"label":"UMedia
366
+ Archive","value":"yes"},{"label":"Repository","value":"Minnesota Digital Library"},{"label":"Source","value":"<span>From:
367
+ <a href=\"https://cdm16022.contentdm.oclc.org/digital/collection/p16022coll230/id/1933\">Lake
368
+ Superior and the northern part of Michigan</a></span>"}],"attribution":["","Use
369
+ of this item may be governed by US and international copyright laws. You may be
370
+ able to use this item, but copyright and other considerations may apply. For possible
371
+ additional information or guidance on your use, please contact the contributing
372
+ organization."],"seeAlso":{"@id":"https://cdm16022.contentdm.oclc.org/oai/oai.php?verb=GetRecord&identifier=oai:cdm16022.contentdm.oclc.org:p16022coll230/1933&metadataPrefix=oai_qdc","format":"application/xml","profile":"http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"},"within":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230/manifest.json","sequences":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/sequence/s0","@type":"sc:Sequence","label":"Lake
373
+ Superior and the northern part of Michigan","canvases":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/canvas/c0","@type":"sc:Canvas","label":"Lake
374
+ Superior and the northern part of Michigan","images":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/annotation/a0","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:1933/full/full/0/default.jpg","@type":"dctypes:Image","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:1933","width":5848,"height":4908,"tiles":[{"width":5848,"scaleFactors":[1,2,4,8,16]}],"profile":"http://iiif.io/api/image/2/level1.json","protocol":"http://iiif.io/api/image"},"format":"image/jpeg","width":5848,"height":4908},"on":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/canvas/c0"}],"width":5848,"height":4908}]}],"structures":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/range/r0","@type":"sc:Range","label":"Lake
375
+ Superior and the northern part of Michigan","ranges":[],"canvases":["https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/canvas/c0"]}]}'
376
+ allmaps_annotation: |-
377
+ {
378
+ "type": "AnnotationPage",
379
+ "@context": "http://www.w3.org/ns/anno.jsonld",
380
+ "items": [
381
+ {
382
+ "id": "https://annotations.allmaps.org/maps/c84bb0f895650a9c",
383
+ "type": "Annotation",
384
+ "@context": [
385
+ "http://iiif.io/api/extension/georef/1/context.json",
386
+ "http://iiif.io/api/presentation/3/context.json"
387
+ ],
388
+ "created": "2023-11-28T16:46:24.460Z",
389
+ "modified": "2023-11-30T19:06:05.042Z",
390
+ "motivation": "georeferencing",
391
+ "target": {
392
+ "type": "SpecificResource",
393
+ "source": {
394
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:1933",
395
+ "type": "ImageService2",
396
+ "height": 4908,
397
+ "width": 5848,
398
+ "partOf": [
399
+ {
400
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/canvas/c0",
401
+ "type": "Canvas",
402
+ "label": {
403
+ "none": [
404
+ "Lake Superior and the northern part of Michigan"
405
+ ]
406
+ },
407
+ "partOf": [
408
+ {
409
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:1933/manifest.json",
410
+ "type": "Manifest",
411
+ "label": {
412
+ "none": [
413
+ "Lake Superior and the northern part of Michigan"
414
+ ]
415
+ }
416
+ }
417
+ ]
418
+ }
419
+ ]
420
+ },
421
+ "selector": {
422
+ "type": "SvgSelector",
423
+ "value": "<svg width=\"5848\" height=\"4908\"><polygon points=\"0,0 0,4908 5848,4908 5848,0\" /></svg>"
424
+ }
425
+ },
426
+ "body": {
427
+ "type": "FeatureCollection",
428
+ "features": [
429
+ {
430
+ "type": "Feature",
431
+ "properties": {
432
+ "resourceCoords": [
433
+ 3539,
434
+ 2941
435
+ ]
436
+ },
437
+ "geometry": {
438
+ "type": "Point",
439
+ "coordinates": [
440
+ -86.6425949,
441
+ 46.4578114
442
+ ]
443
+ }
444
+ },
445
+ {
446
+ "type": "Feature",
447
+ "properties": {
448
+ "resourceCoords": [
449
+ 4622,
450
+ 2301
451
+ ]
452
+ },
453
+ "geometry": {
454
+ "type": "Point",
455
+ "coordinates": [
456
+ -84.6465543,
457
+ 47.2395289
458
+ ]
459
+ }
460
+ },
461
+ {
462
+ "type": "Feature",
463
+ "properties": {
464
+ "resourceCoords": [
465
+ 1085,
466
+ 2137
467
+ ]
468
+ },
469
+ "geometry": {
470
+ "type": "Point",
471
+ "coordinates": [
472
+ -91.1975587,
473
+ 47.336153
474
+ ]
475
+ }
476
+ },
477
+ {
478
+ "type": "Feature",
479
+ "properties": {
480
+ "resourceCoords": [
481
+ 2107,
482
+ 1758
483
+ ]
484
+ },
485
+ "geometry": {
486
+ "type": "Point",
487
+ "coordinates": [
488
+ -89.1576061,
489
+ 47.9170972
490
+ ]
491
+ }
492
+ },
493
+ {
494
+ "type": "Feature",
495
+ "properties": {
496
+ "resourceCoords": [
497
+ 796,
498
+ 2421
499
+ ]
500
+ },
501
+ "geometry": {
502
+ "type": "Point",
503
+ "coordinates": [
504
+ -91.4569836,
505
+ 47.1427414
506
+ ]
507
+ }
508
+ }
509
+ ],
510
+ "_allmaps": {
511
+ "id": "https://annotations.allmaps.org/maps/c84bb0f895650a9c",
512
+ "version": "https://annotations.allmaps.org/maps/c84bb0f895650a9c@ab4b911d70d9a032",
513
+ "image": {
514
+ "id": "https://annotations.allmaps.org/images/517e7f768e4b08f7",
515
+ "version": "https://annotations.allmaps.org/images/517e7f768e4b08f7@6c94218cebc28edb",
516
+ "canvases": [
517
+ {
518
+ "id": "https://annotations.allmaps.org/canvases/acebabfe442178c4",
519
+ "manifests": [
520
+ {
521
+ "id": "https://annotations.allmaps.org/manifests/669e0c0d5536d81b"
522
+ }
523
+ ]
524
+ }
525
+ ]
526
+ },
527
+ "scale": 0.007382,
528
+ "area": 526651853313.59
529
+ }
530
+ }
531
+ }
532
+ ]
533
+ }
534
+ solr_version: 1794894200838291456
535
+ created_at: '2024-03-29 20:42:52.770013'
536
+ updated_at: '2024-03-29 20:42:55.066567'
537
+ blacklight_allmaps_sidecars_004:
538
+ id: 4
539
+ solr_document_id: p16022coll230:360
540
+ document_type: SolrDocument
541
+ manifest_id: https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:360/manifest.json
542
+ annotated: 1
543
+ allmaps_id: 2608330288df8f58
544
+ iiif_manifest: '{"@context":"http://iiif.io/api/presentation/2/context.json","@type":"sc:Manifest","@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:360/manifest.json","label":"Tourist
545
+ map of Norway","metadata":[{"label":"Barcode Identifier","value":"UMN_BARCODE:B2861134"},{"label":"Contact
546
+ Information","value":"University of Minnesota Libraries, John R. Borchert Map
547
+ Library. S-76 Wilson Library, 309 19th Ave S, Minneapolis, MN 55455; https://www.lib.umn.edu/borchert"},{"label":"Continent","value":"Europe"},{"label":"Contributing
548
+ Organization","value":"University of Minnesota Libraries, John R. Borchert Map
549
+ Library."},{"label":"Coordinates","value":"E0320000 N0720000 N0580000; (E 4°--E
550
+ 32°/N 72°--N 58°)"},{"label":"Country","value":"Norway"},{"label":"Creator","value":"Landslaget
551
+ for reiselivet i Norge."},{"label":"Date of Creation","value":"1920"},{"label":"Description","value":"Cartographic
552
+ Details: Scale approximately 1:1,612,903. (E 4°--E 32°/N 72°--N 58°). Panel title.
553
+ Relief shown by hachures and spot heights. Location map of Scandanavia inset on
554
+ recto. Photos credited to Wilse and text on verso. Text in English; map legend
555
+ in Norwegian, English, French, and German."},{"label":"Dimensions","value":"1
556
+ map in 2 parts on 1 sheet : color ; 101 x 47 centimeters, folded to 18 x 13 centimeters"},{"label":"DLS
557
+ Identifier","value":"B2861134"},{"label":"Item Physical Format","value":"Maps
558
+ | http://vocab.getty.edu/aat/300028094"},{"label":"Local Identifier","value":"G6941.E635
559
+ 1920 .L3 "},{"label":"Language","value":"English; Norwegian; French; German"},{"label":"Local
560
+ Rights Statement","value":"Use of this item may be governed by US and international
561
+ copyright laws. You may be able to use this item, but copyright and other considerations
562
+ may apply. For possible additional information or guidance on your use, please
563
+ contact the contributing organization."},{"label":"Publisher","value":"Emil Moestue
564
+ (Norway)"},{"label":"Scale","value":"Scale approximately 1:1,612,903"},{"label":"Locally
565
+ Assigned Subject Headings","value":"Roads -- Norway -- Maps; Railroads -- Norway
566
+ -- Maps; Norway -- Maps; Tourist maps; Maps"},{"label":"System Identifier","value":"UMN_ALMA:9921525920001701"},{"label":"Title","value":"Tourist
567
+ map of Norway"},{"label":"Item Type","value":"Cartographic"},{"label":"UMedia
568
+ Archive","value":"yes"},{"label":"Repository","value":"Minnesota Digital Library"},{"label":"Source","value":"<span>From:
569
+ <a href=\"https://cdm16022.contentdm.oclc.org/digital/collection/p16022coll230/id/360\">Tourist
570
+ map of Norway</a></span>"}],"attribution":["","Use of this item may be governed
571
+ by US and international copyright laws. You may be able to use this item, but
572
+ copyright and other considerations may apply. For possible additional information
573
+ or guidance on your use, please contact the contributing organization."],"seeAlso":{"@id":"https://cdm16022.contentdm.oclc.org/oai/oai.php?verb=GetRecord&identifier=oai:cdm16022.contentdm.oclc.org:p16022coll230/360&metadataPrefix=oai_qdc","format":"application/xml","profile":"http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"},"within":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230/manifest.json","sequences":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:360/sequence/s0","@type":"sc:Sequence","label":"Tourist
574
+ map of Norway","canvases":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:358/canvas/c0","@type":"sc:Canvas","label":"Map","images":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:358/annotation/a0","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:358/full/full/0/default.jpg","@type":"dctypes:Image","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:358","width":6154,"height":8962,"tiles":[{"width":6154,"scaleFactors":[1,2,4,8,16]}],"profile":"http://iiif.io/api/image/2/level1.json","protocol":"http://iiif.io/api/image"},"format":"image/jpeg","width":6154,"height":8962},"on":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:358/canvas/c0"}],"width":6154,"height":8962},{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:359/canvas/c1","@type":"sc:Canvas","label":"Text","images":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:359/annotation/a1","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:359/full/full/0/default.jpg","@type":"dctypes:Image","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:359","width":6112,"height":8909,"tiles":[{"width":6112,"scaleFactors":[1,2,4,8,16]}],"profile":"http://iiif.io/api/image/2/level1.json","protocol":"http://iiif.io/api/image"},"format":"image/jpeg","width":6112,"height":8909},"on":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:359/canvas/c1"}],"width":6112,"height":8909}]}],"structures":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:360/range/r0","@type":"sc:Range","label":"Tourist
575
+ map of Norway","ranges":[],"canvases":["https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:358/canvas/c0","https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:359/canvas/c1"],"viewingHint":"top"}]}'
576
+ allmaps_annotation: |-
577
+ {
578
+ "type": "AnnotationPage",
579
+ "@context": "http://www.w3.org/ns/anno.jsonld",
580
+ "items": [
581
+ {
582
+ "id": "https://annotations.allmaps.org/maps/a928211d1e0913b5",
583
+ "type": "Annotation",
584
+ "@context": [
585
+ "http://iiif.io/api/extension/georef/1/context.json",
586
+ "http://iiif.io/api/presentation/3/context.json"
587
+ ],
588
+ "created": "2023-12-07T15:55:01.115Z",
589
+ "modified": "2023-12-07T16:07:01.089Z",
590
+ "motivation": "georeferencing",
591
+ "target": {
592
+ "type": "SpecificResource",
593
+ "source": {
594
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:358",
595
+ "type": "ImageService2",
596
+ "height": 8962,
597
+ "width": 6154,
598
+ "partOf": [
599
+ {
600
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:358/canvas/c0",
601
+ "type": "Canvas",
602
+ "label": {
603
+ "none": [
604
+ "Map"
605
+ ]
606
+ },
607
+ "partOf": [
608
+ {
609
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:360/manifest.json",
610
+ "type": "Manifest",
611
+ "label": {
612
+ "none": [
613
+ "Tourist map of Norway"
614
+ ]
615
+ }
616
+ }
617
+ ]
618
+ }
619
+ ]
620
+ },
621
+ "selector": {
622
+ "type": "SvgSelector",
623
+ "value": "<svg width=\"6154\" height=\"8962\"><polygon points=\"5906,2312 4824,2312 1808,5099 1820,8719 5929,8727\" /></svg>"
624
+ }
625
+ },
626
+ "body": {
627
+ "type": "FeatureCollection",
628
+ "features": [
629
+ {
630
+ "type": "Feature",
631
+ "properties": {
632
+ "resourceCoords": [
633
+ 3633,
634
+ 3974
635
+ ]
636
+ },
637
+ "geometry": {
638
+ "type": "Point",
639
+ "coordinates": [
640
+ 8.0413389,
641
+ 63.3393961
642
+ ]
643
+ }
644
+ },
645
+ {
646
+ "type": "Feature",
647
+ "properties": {
648
+ "resourceCoords": [
649
+ 5464,
650
+ 3336
651
+ ]
652
+ },
653
+ "geometry": {
654
+ "type": "Point",
655
+ "coordinates": [
656
+ 12.8943884,
657
+ 64.0469502
658
+ ]
659
+ }
660
+ },
661
+ {
662
+ "type": "Feature",
663
+ "properties": {
664
+ "resourceCoords": [
665
+ 4992,
666
+ 2430
667
+ ]
668
+ },
669
+ "geometry": {
670
+ "type": "Point",
671
+ "coordinates": [
672
+ 11.786806,
673
+ 65.1214229
674
+ ]
675
+ }
676
+ },
677
+ {
678
+ "type": "Feature",
679
+ "properties": {
680
+ "resourceCoords": [
681
+ 5896,
682
+ 3260
683
+ ]
684
+ },
685
+ "geometry": {
686
+ "type": "Point",
687
+ "coordinates": [
688
+ 14.0501768,
689
+ 64.0907151
690
+ ]
691
+ }
692
+ },
693
+ {
694
+ "type": "Feature",
695
+ "properties": {
696
+ "resourceCoords": [
697
+ 4725,
698
+ 6929
699
+ ]
700
+ },
701
+ "geometry": {
702
+ "type": "Point",
703
+ "coordinates": [
704
+ 10.6553461,
705
+ 59.8678174
706
+ ]
707
+ }
708
+ },
709
+ {
710
+ "type": "Feature",
711
+ "properties": {
712
+ "resourceCoords": [
713
+ 2568,
714
+ 6663
715
+ ]
716
+ },
717
+ "geometry": {
718
+ "type": "Point",
719
+ "coordinates": [
720
+ 5.5970769,
721
+ 60.1425186
722
+ ]
723
+ }
724
+ },
725
+ {
726
+ "type": "Feature",
727
+ "properties": {
728
+ "resourceCoords": [
729
+ 2529,
730
+ 7729
731
+ ]
732
+ },
733
+ "geometry": {
734
+ "type": "Point",
735
+ "coordinates": [
736
+ 5.6349017,
737
+ 58.8974039
738
+ ]
739
+ }
740
+ },
741
+ {
742
+ "type": "Feature",
743
+ "properties": {
744
+ "resourceCoords": [
745
+ 5237,
746
+ 5840
747
+ ]
748
+ },
749
+ "geometry": {
750
+ "type": "Point",
751
+ "coordinates": [
752
+ 11.9842085,
753
+ 61.1077933
754
+ ]
755
+ }
756
+ },
757
+ {
758
+ "type": "Feature",
759
+ "properties": {
760
+ "resourceCoords": [
761
+ 3287,
762
+ 5838
763
+ ]
764
+ },
765
+ "geometry": {
766
+ "type": "Point",
767
+ "coordinates": [
768
+ 7.2422784,
769
+ 61.1462158
770
+ ]
771
+ }
772
+ },
773
+ {
774
+ "type": "Feature",
775
+ "properties": {
776
+ "resourceCoords": [
777
+ 4659,
778
+ 2635
779
+ ]
780
+ },
781
+ "geometry": {
782
+ "type": "Point",
783
+ "coordinates": [
784
+ 10.8328635,
785
+ 64.9715731
786
+ ]
787
+ }
788
+ },
789
+ {
790
+ "type": "Feature",
791
+ "properties": {
792
+ "resourceCoords": [
793
+ 3570,
794
+ 8399
795
+ ]
796
+ },
797
+ "geometry": {
798
+ "type": "Point",
799
+ "coordinates": [
800
+ 7.9862861,
801
+ 58.1470634
802
+ ]
803
+ }
804
+ },
805
+ {
806
+ "type": "Feature",
807
+ "properties": {
808
+ "resourceCoords": [
809
+ 4558,
810
+ 3873
811
+ ]
812
+ },
813
+ "geometry": {
814
+ "type": "Point",
815
+ "coordinates": [
816
+ 10.4511781,
817
+ 63.4603346
818
+ ]
819
+ }
820
+ },
821
+ {
822
+ "type": "Feature",
823
+ "properties": {
824
+ "resourceCoords": [
825
+ 4710,
826
+ 5868
827
+ ]
828
+ },
829
+ "geometry": {
830
+ "type": "Point",
831
+ "coordinates": [
832
+ 10.6898319,
833
+ 61.0959564
834
+ ]
835
+ }
836
+ }
837
+ ],
838
+ "_allmaps": {
839
+ "id": "https://annotations.allmaps.org/maps/a928211d1e0913b5",
840
+ "version": "https://annotations.allmaps.org/maps/a928211d1e0913b5@da1f5643a6cf6b14",
841
+ "image": {
842
+ "id": "https://annotations.allmaps.org/images/6d1e94910e168c77",
843
+ "version": "https://annotations.allmaps.org/images/6d1e94910e168c77@e76c4f5090036a43",
844
+ "canvases": [
845
+ {
846
+ "id": "https://annotations.allmaps.org/canvases/915214c4b22cb013",
847
+ "manifests": [
848
+ {
849
+ "id": "https://annotations.allmaps.org/manifests/2608330288df8f58"
850
+ }
851
+ ]
852
+ }
853
+ ]
854
+ },
855
+ "scale": 0.007605,
856
+ "area": 382516586835.11
857
+ }
858
+ }
859
+ }
860
+ ]
861
+ }
862
+ solr_version: 1794894200841437184
863
+ created_at: '2024-03-29 20:42:55.094499'
864
+ updated_at: '2024-03-29 20:42:57.011804'
865
+ blacklight_allmaps_sidecars_005:
866
+ id: 5
867
+ solr_document_id: p16022coll230:4038
868
+ document_type: SolrDocument
869
+ manifest_id: https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4038/manifest.json
870
+ annotated: 1
871
+ allmaps_id: 945e08a1a7c98ca3
872
+ iiif_manifest: '{"@context":"http://iiif.io/api/presentation/2/context.json","@type":"sc:Manifest","@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4038/manifest.json","label":"1929
873
+ Illinois : motor trails are calling","metadata":[{"label":"Additional Notes","value":"Panel
874
+ title.; Plate no. C-131 J.C.; Maps on verso (29 x 44 cm. and 21 x 19 cm.): Standard
875
+ Oil Company (Indiana) territorial road map [of the midwest United States] -- Chicago
876
+ and vicinity.; Panel art: Standard Oil Company logo."},{"label":"Alternative Title","value":"Standard
877
+ Oil Company (Indiana) 1929 official road map : Illinois"},{"label":"Barcode Identifier","value":"UMN_BARCODE:31951D03686964T"},{"label":"Contact
878
+ Information","value":"University of Minnesota Libraries, John R. Borchert Map
879
+ Library. S-76 Wilson Library, 309 19th Ave S, Minneapolis, MN 55455; https://www.lib.umn.edu/borchert"},{"label":"Continent","value":"North
880
+ America"},{"label":"Contributing Organization","value":"University of Minnesota
881
+ Libraries, John R. Borchert Map Library."},{"label":"Contributor","value":"H.M.
882
+ Gousha Company; Standard Oil Company; Rand McNally Collection (Newberry Library)"},{"label":"Coordinates","value":"W0913000
883
+ W0870100 N0423000 N0365800; (W 91°30''00\"--W 87°01''00\"/N 42°30''00\"--N 36°58''00\")."},{"label":"Country","value":"United
884
+ States"},{"label":"Creator","value":"Standard Oil Company (Ind.)"},{"label":"Date
885
+ of Creation","value":"1929"},{"label":"Dimensions","value":"58 x 38 Centimeters"},{"label":"DLS
886
+ Identifier","value":"map15953a; map15953b"},{"label":"Item Physical Format","value":"Maps
887
+ | http://vocab.getty.edu/aat/300028094"},{"label":"Local Identifier","value":"G4101.P2
888
+ 1929 .S7"},{"label":"Language","value":"English"},{"label":"Local Rights Statement","value":"Use
889
+ of this item may be governed by US and international copyright laws. You may be
890
+ able to use this item, but copyright and other considerations may apply. For possible
891
+ additional information or guidance on your use, please contact the contributing
892
+ organization."},{"label":"Publisher","value":"H.M. Gousha Company (Chicago)"},{"label":"Scale","value":"Scale
893
+ not given"},{"label":"State or Province","value":"Illinois"},{"label":"System
894
+ Identifier","value":"UMN_ALMA:9976369504001701"},{"label":"Title","value":"1929
895
+ Illinois : motor trails are calling"},{"label":"Item Type","value":"Cartographic"},{"label":"UMedia
896
+ Archive","value":"yes"},{"label":"Repository","value":"Minnesota Digital Library"},{"label":"Source","value":"<span>From:
897
+ <a href=\"https://cdm16022.contentdm.oclc.org/digital/collection/p16022coll230/id/4038\">1929
898
+ Illinois : motor trails are calling</a></span>"}],"attribution":["","Use of this
899
+ item may be governed by US and international copyright laws. You may be able to
900
+ use this item, but copyright and other considerations may apply. For possible
901
+ additional information or guidance on your use, please contact the contributing
902
+ organization."],"seeAlso":{"@id":"https://cdm16022.contentdm.oclc.org/oai/oai.php?verb=GetRecord&identifier=oai:cdm16022.contentdm.oclc.org:p16022coll230/4038&metadataPrefix=oai_qdc","format":"application/xml","profile":"http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"},"within":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230/manifest.json","sequences":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4038/sequence/s0","@type":"sc:Sequence","label":"1929
903
+ Illinois : motor trails are calling","canvases":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4036/canvas/c0","@type":"sc:Canvas","label":"Front","images":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4036/annotation/a0","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:4036/full/full/0/default.jpg","@type":"dctypes:Image","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:4036","width":4679,"height":6166,"tiles":[{"width":4679,"scaleFactors":[1,2,4,8,16]}],"profile":"http://iiif.io/api/image/2/level1.json","protocol":"http://iiif.io/api/image"},"format":"image/jpeg","width":4679,"height":6166},"on":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4036/canvas/c0"}],"width":4679,"height":6166},{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4037/canvas/c1","@type":"sc:Canvas","label":"Back","images":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4037/annotation/a1","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:4037/full/full/0/default.jpg","@type":"dctypes:Image","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:4037","width":6153,"height":4718,"tiles":[{"width":6153,"scaleFactors":[1,2,4,8,16]}],"profile":"http://iiif.io/api/image/2/level1.json","protocol":"http://iiif.io/api/image"},"format":"image/jpeg","width":6153,"height":4718},"on":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4037/canvas/c1"}],"width":6153,"height":4718}]}],"structures":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4038/range/r0","@type":"sc:Range","label":"1929
904
+ Illinois : motor trails are calling","ranges":[],"canvases":["https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4036/canvas/c0","https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4037/canvas/c1"],"viewingHint":"top"}]}'
905
+ allmaps_annotation: |-
906
+ {
907
+ "type": "AnnotationPage",
908
+ "@context": "http://www.w3.org/ns/anno.jsonld",
909
+ "items": [
910
+ {
911
+ "id": "https://annotations.allmaps.org/maps/8c45ed7acc513566",
912
+ "type": "Annotation",
913
+ "@context": [
914
+ "http://iiif.io/api/extension/georef/1/context.json",
915
+ "http://iiif.io/api/presentation/3/context.json"
916
+ ],
917
+ "created": "2023-01-19T20:56:55.306Z",
918
+ "modified": "2023-01-19T20:59:00.536Z",
919
+ "motivation": "georeferencing",
920
+ "target": {
921
+ "type": "SpecificResource",
922
+ "source": {
923
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll230:4036",
924
+ "type": "ImageService2",
925
+ "height": 6166,
926
+ "width": 4679,
927
+ "partOf": [
928
+ {
929
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4036/canvas/c0",
930
+ "type": "Canvas",
931
+ "label": {
932
+ "none": [
933
+ "Front"
934
+ ]
935
+ },
936
+ "partOf": [
937
+ {
938
+ "id": "https://cdm16022.contentdm.oclc.org/iiif/p16022coll230:4038/manifest.json",
939
+ "type": "Manifest",
940
+ "label": {
941
+ "none": [
942
+ "1929 Illinois : motor trails are calling"
943
+ ]
944
+ }
945
+ }
946
+ ]
947
+ }
948
+ ]
949
+ },
950
+ "selector": {
951
+ "type": "SvgSelector",
952
+ "value": "<svg width=\"4679\" height=\"6166\"><polygon points=\"0,0 0,6166 4679,6166 4679,0\" /></svg>"
953
+ }
954
+ },
955
+ "body": {
956
+ "type": "FeatureCollection",
957
+ "features": [
958
+ {
959
+ "type": "Feature",
960
+ "properties": {
961
+ "resourceCoords": [
962
+ 3518,
963
+ 5413
964
+ ]
965
+ },
966
+ "geometry": {
967
+ "type": "Point",
968
+ "coordinates": [
969
+ -88.0486029,
970
+ 37.4773693
971
+ ]
972
+ }
973
+ },
974
+ {
975
+ "type": "Feature",
976
+ "properties": {
977
+ "resourceCoords": [
978
+ 1358,
979
+ 4006
980
+ ]
981
+ },
982
+ "geometry": {
983
+ "type": "Point",
984
+ "coordinates": [
985
+ -90.5996106,
986
+ 38.8770024
987
+ ]
988
+ }
989
+ },
990
+ {
991
+ "type": "Feature",
992
+ "properties": {
993
+ "resourceCoords": [
994
+ 3957,
995
+ 1156
996
+ ]
997
+ },
998
+ "geometry": {
999
+ "type": "Point",
1000
+ "coordinates": [
1001
+ -87.5041055,
1002
+ 41.6980718
1003
+ ]
1004
+ }
1005
+ },
1006
+ {
1007
+ "type": "Feature",
1008
+ "properties": {
1009
+ "resourceCoords": [
1010
+ 2541,
1011
+ 5924
1012
+ ]
1013
+ },
1014
+ "geometry": {
1015
+ "type": "Point",
1016
+ "coordinates": [
1017
+ -89.1785794,
1018
+ 37.0139854
1019
+ ]
1020
+ }
1021
+ },
1022
+ {
1023
+ "type": "Feature",
1024
+ "properties": {
1025
+ "resourceCoords": [
1026
+ 3626,
1027
+ 350
1028
+ ]
1029
+ },
1030
+ "geometry": {
1031
+ "type": "Point",
1032
+ "coordinates": [
1033
+ -87.8382964,
1034
+ 42.4759132
1035
+ ]
1036
+ }
1037
+ },
1038
+ {
1039
+ "type": "Feature",
1040
+ "properties": {
1041
+ "resourceCoords": [
1042
+ 1591,
1043
+ 4669
1044
+ ]
1045
+ },
1046
+ "geometry": {
1047
+ "type": "Point",
1048
+ "coordinates": [
1049
+ -90.3770394,
1050
+ 38.2074579
1051
+ ]
1052
+ }
1053
+ },
1054
+ {
1055
+ "type": "Feature",
1056
+ "properties": {
1057
+ "resourceCoords": [
1058
+ 740,
1059
+ 2411
1060
+ ]
1061
+ },
1062
+ "geometry": {
1063
+ "type": "Point",
1064
+ "coordinates": [
1065
+ -91.4080627,
1066
+ 40.4383564
1067
+ ]
1068
+ }
1069
+ },
1070
+ {
1071
+ "type": "Feature",
1072
+ "properties": {
1073
+ "resourceCoords": [
1074
+ 3948,
1075
+ 4185
1076
+ ]
1077
+ },
1078
+ "geometry": {
1079
+ "type": "Point",
1080
+ "coordinates": [
1081
+ -87.4836146,
1082
+ 38.7302376
1083
+ ]
1084
+ }
1085
+ },
1086
+ {
1087
+ "type": "Feature",
1088
+ "properties": {
1089
+ "resourceCoords": [
1090
+ 1367,
1091
+ 332
1092
+ ]
1093
+ },
1094
+ "geometry": {
1095
+ "type": "Point",
1096
+ "coordinates": [
1097
+ -90.678919,
1098
+ 42.4647083
1099
+ ]
1100
+ }
1101
+ },
1102
+ {
1103
+ "type": "Feature",
1104
+ "properties": {
1105
+ "resourceCoords": [
1106
+ 3133,
1107
+ 5843
1108
+ ]
1109
+ },
1110
+ "geometry": {
1111
+ "type": "Point",
1112
+ "coordinates": [
1113
+ -88.4252617,
1114
+ 37.068649
1115
+ ]
1116
+ }
1117
+ },
1118
+ {
1119
+ "type": "Feature",
1120
+ "properties": {
1121
+ "resourceCoords": [
1122
+ 1000,
1123
+ 1443
1124
+ ]
1125
+ },
1126
+ "geometry": {
1127
+ "type": "Point",
1128
+ "coordinates": [
1129
+ -91.0131099,
1130
+ 41.4366736
1131
+ ]
1132
+ }
1133
+ }
1134
+ ],
1135
+ "_allmaps": {
1136
+ "id": "https://annotations.allmaps.org/maps/8c45ed7acc513566",
1137
+ "version": "https://annotations.allmaps.org/maps/8c45ed7acc513566@5eaad969be2e5858",
1138
+ "image": {
1139
+ "id": "https://annotations.allmaps.org/images/1013ecbf5c582ae9",
1140
+ "version": "https://annotations.allmaps.org/images/1013ecbf5c582ae9@db96197f192d8f7f",
1141
+ "canvases": [
1142
+ {
1143
+ "id": "https://annotations.allmaps.org/canvases/aea1b496cc37c7ac",
1144
+ "manifests": [
1145
+ {
1146
+ "id": "https://annotations.allmaps.org/manifests/945e08a1a7c98ca3"
1147
+ }
1148
+ ]
1149
+ }
1150
+ ]
1151
+ },
1152
+ "scale": 0.009381,
1153
+ "area": 327853754397.98
1154
+ }
1155
+ }
1156
+ }
1157
+ ]
1158
+ }
1159
+ solr_version: 1794894200848777216
1160
+ created_at: '2024-03-29 20:42:57.045393'
1161
+ updated_at: '2024-03-29 20:42:58.464357'
1162
+ blacklight_allmaps_sidecars_006:
1163
+ id: 6
1164
+ solr_document_id: p16022coll245:868
1165
+ document_type: SolrDocument
1166
+ manifest_id: https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/manifest.json
1167
+ annotated: 0
1168
+ allmaps_id: 34504b9e5a0307bf
1169
+ iiif_manifest: '{"@context":"http://iiif.io/api/presentation/2/context.json","@type":"sc:Manifest","@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/manifest.json","label":"Map
1170
+ of the city of Minneapolis, Minn.","metadata":[{"label":"Additional Notes","value":"Includes
1171
+ street index. Shows ward boundaries."},{"label":"Barcode Identifier","value":"UMN_BARCODE:CVB1902349-10"},{"label":"City
1172
+ or Township","value":"Minneapolis"},{"label":"Contact Information","value":"University
1173
+ of Minnesota Libraries, John R. Borchert Map Library. S-76 Wilson Library, 309
1174
+ 19th Ave S, Minneapolis, MN 55455; https://www.lib.umn.edu/borchert"},{"label":"Continent","value":"North
1175
+ America"},{"label":"Contributing Organization","value":"University of Minnesota
1176
+ Libraries, John R. Borchert Map Library."},{"label":"Contributor","value":"Benneche,
1177
+ H. W."},{"label":"Country","value":"United States"},{"label":"Creator","value":"Minneapolis
1178
+ Directory Company"},{"label":"Date of Creation","value":"1920"},{"label":"Dimensions","value":"60
1179
+ x 45 centimeters"},{"label":"DLS Identifier","value":"map01424"},{"label":"Item
1180
+ Physical Format","value":"Maps | http://vocab.getty.edu/aat/300028094"},{"label":"Local
1181
+ Identifier","value":"G4144.M5 1920 .M53x"},{"label":"Language","value":"English"},{"label":"Local
1182
+ Rights Statement","value":"Use of this item may be governed by US and international
1183
+ copyright laws. You may be able to use this item, but copyright and other considerations
1184
+ may apply. For possible additional information or guidance on your use, please
1185
+ contact the contributing organization."},{"label":"Persistent URL (PURL)","value":"http://purl.umn.edu/187161"},{"label":"Publisher","value":"Minneapolis
1186
+ Directory Co. (Minneapolis, Minn.)"},{"label":"State or Province","value":"Minnesota"},{"label":"Locally
1187
+ Assigned Subject Headings","value":"Election districts -- Minnesota -- Minneapolis
1188
+ -- Maps; Minneapolis (Minn.) -- Maps; Maps"},{"label":"System Identifier","value":"UMN_ALMA:993881089000170"},{"label":"Title","value":"Map
1189
+ of the city of Minneapolis, Minn."},{"label":"Item Type","value":"Cartographic"},{"label":"UMedia
1190
+ Archive","value":"Yes"},{"label":"Repository","value":"Minnesota Digital Library"},{"label":"Source","value":"<span>From:
1191
+ <a href=\"https://cdm16022.contentdm.oclc.org/digital/collection/p16022coll245/id/868\">Map
1192
+ of the city of Minneapolis, Minn.</a></span>"}],"attribution":["","Use of this
1193
+ item may be governed by US and international copyright laws. You may be able to
1194
+ use this item, but copyright and other considerations may apply. For possible
1195
+ additional information or guidance on your use, please contact the contributing
1196
+ organization."],"seeAlso":{"@id":"https://cdm16022.contentdm.oclc.org/oai/oai.php?verb=GetRecord&identifier=oai:cdm16022.contentdm.oclc.org:p16022coll245/868&metadataPrefix=oai_qdc","format":"application/xml","profile":"http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"},"within":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll245/manifest.json","sequences":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/sequence/s0","@type":"sc:Sequence","label":"Map
1197
+ of the city of Minneapolis, Minn.","canvases":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/canvas/c0","@type":"sc:Canvas","label":"Map
1198
+ of the city of Minneapolis, Minn.","images":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/annotation/a0","@type":"oa:Annotation","motivation":"sc:painting","resource":{"@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll245:868/full/full/0/default.jpg","@type":"dctypes:Image","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://cdm16022.contentdm.oclc.org/iiif/2/p16022coll245:868","width":6269,"height":8474,"tiles":[{"width":6269,"scaleFactors":[1,2,4,8,16]}],"profile":"http://iiif.io/api/image/2/level1.json","protocol":"http://iiif.io/api/image"},"format":"image/jpeg","width":6269,"height":8474},"on":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/canvas/c0"}],"width":6269,"height":8474}]}],"structures":[{"@id":"https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/range/r0","@type":"sc:Range","label":"Map
1199
+ of the city of Minneapolis, Minn.","ranges":[],"canvases":["https://cdm16022.contentdm.oclc.org/iiif/p16022coll245:868/canvas/c0"]}]}'
1200
+ allmaps_annotation:
1201
+ solr_version: 1794894200833048576
1202
+ created_at: '2024-03-29 20:42:58.495579'
1203
+ updated_at: '2024-03-29 20:42:59.987555'