geoblacklight 3.2.0 → 4.0.0.pre.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +148 -0
  3. data/.gitignore +8 -0
  4. data/.rubocop.yml +14 -10
  5. data/.rubocop_todo.yml +361 -26
  6. data/README.md +3 -3
  7. data/Rakefile +19 -12
  8. data/app/assets/images/blacklight/michigan-state-university.svg +6 -0
  9. data/app/assets/images/blacklight/pennsylvania-state-university.svg +6 -0
  10. data/app/assets/images/blacklight/purdue-university.svg +6 -0
  11. data/app/assets/images/blacklight/the-ohio-state-university.svg +7 -0
  12. data/app/assets/images/blacklight/university-of-chicago.svg +6 -0
  13. data/app/assets/images/blacklight/university-of-illinois-urbana-champaign.svg +6 -0
  14. data/app/assets/images/blacklight/university-of-iowa.svg +5 -0
  15. data/app/assets/images/blacklight/university-of-maryland.svg +5 -0
  16. data/app/assets/images/blacklight/university-of-michigan.svg +5 -0
  17. data/app/assets/images/blacklight/university-of-minnesota.svg +5 -0
  18. data/app/assets/images/blacklight/university-of-nebraska-lincoln.svg +8 -0
  19. data/app/assets/images/blacklight/university-of-wisconsin-madison.svg +5 -0
  20. data/app/assets/images/favicon.ico +0 -0
  21. data/app/assets/javascripts/geoblacklight/geoblacklight.js +18 -1
  22. data/app/assets/javascripts/geoblacklight/modules/bookmarks.js +43 -0
  23. data/app/assets/javascripts/geoblacklight/modules/metadata_download_button.js +6 -1
  24. data/app/assets/javascripts/geoblacklight/modules/results.js +7 -8
  25. data/app/assets/javascripts/geoblacklight/modules/util.js +5 -0
  26. data/app/assets/javascripts/geoblacklight/viewers/esri.js +1 -1
  27. data/app/assets/javascripts/geoblacklight/viewers/index_map.js +1 -1
  28. data/app/assets/javascripts/geoblacklight/viewers/map.js +12 -2
  29. data/app/assets/javascripts/geoblacklight/viewers/tms.js +10 -0
  30. data/app/assets/javascripts/geoblacklight/viewers/wms.js +1 -1
  31. data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +41 -0
  32. data/app/assets/stylesheets/geoblacklight/modules/results.scss +1 -1
  33. data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +6 -0
  34. data/app/components/geoblacklight/homepage_feature_facet_component.html.erb +11 -0
  35. data/app/components/geoblacklight/homepage_feature_facet_component.rb +13 -0
  36. data/{lib → app/helpers}/geoblacklight/geoblacklight_helper_behavior.rb +6 -4
  37. data/app/helpers/geoblacklight_helper.rb +14 -8
  38. data/app/models/concerns/geoblacklight/solr_document/citation.rb +2 -2
  39. data/app/models/concerns/geoblacklight/solr_document.rb +11 -16
  40. data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +5 -5
  41. data/app/views/catalog/_arcgis.html.erb +1 -1
  42. data/app/views/catalog/_data_dictionary.html.erb +1 -2
  43. data/app/views/catalog/_document_split.html.erb +1 -1
  44. data/app/views/catalog/_header_icons.html.erb +1 -1
  45. data/app/views/catalog/_home_text.html.erb +7 -29
  46. data/app/views/catalog/_index_split_default.html.erb +1 -1
  47. data/app/views/catalog/_show_default_viewer_container.html.erb +1 -1
  48. data/app/views/catalog/_show_header_default.html.erb +1 -1
  49. data/app/views/download/hgl.html.erb +13 -11
  50. data/app/views/relation/_relations.html.erb +15 -0
  51. data/app/views/relation/index.html.erb +4 -16
  52. data/app/views/relation/index.json.jbuilder +6 -2
  53. data/babel.config.json +4 -0
  54. data/config/initializers/new_gbl_settings_defaults_3_4.yml +6 -0
  55. data/config/locales/geoblacklight.en.yml +12 -0
  56. data/geoblacklight.gemspec +5 -3
  57. data/jest.config.js +25 -0
  58. data/lib/generators/geoblacklight/install_generator.rb +1 -1
  59. data/lib/generators/geoblacklight/templates/catalog_controller.rb +78 -35
  60. data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +195 -0
  61. data/lib/generators/geoblacklight/templates/settings.yml +91 -17
  62. data/lib/geoblacklight/bounding_box.rb +1 -1
  63. data/lib/geoblacklight/constants.rb +1 -0
  64. data/lib/geoblacklight/download/geojson_download.rb +1 -1
  65. data/lib/geoblacklight/download/geotiff_download.rb +1 -1
  66. data/lib/geoblacklight/download/hgl_download.rb +1 -1
  67. data/lib/geoblacklight/download/kmz_download.rb +2 -2
  68. data/lib/geoblacklight/download/shapefile_download.rb +1 -1
  69. data/lib/geoblacklight/geometry.rb +85 -0
  70. data/lib/geoblacklight/item_viewer.rb +5 -1
  71. data/lib/geoblacklight/metadata/base.rb +1 -7
  72. data/lib/geoblacklight/references.rb +1 -1
  73. data/lib/geoblacklight/relation/ancestors.rb +4 -3
  74. data/lib/geoblacklight/relation/descendants.rb +4 -3
  75. data/lib/geoblacklight/relation/relation_response.rb +21 -6
  76. data/lib/geoblacklight/version.rb +1 -1
  77. data/lib/geoblacklight/view_helper_override.rb +1 -1
  78. data/lib/geoblacklight/wms_layer.rb +1 -4
  79. data/lib/geoblacklight.rb +1 -3
  80. data/lib/tasks/geoblacklight.rake +5 -0
  81. data/package.json +17 -1
  82. data/schema/{geoblacklight-schema.json → geoblacklight-schema-1.0.json} +1 -1
  83. data/schema/geoblacklight-schema-aardvark.json +211 -0
  84. data/setupJest.js +14 -0
  85. data/solr/conf/schema.xml +35 -29
  86. data/solr/conf/solrconfig.xml +15 -15
  87. data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +39 -0
  88. data/spec/config/initializers/rails_config_spec.rb +15 -0
  89. data/spec/controllers/catalog_controller_spec.rb +7 -7
  90. data/spec/features/esri_viewer_spec.rb +1 -1
  91. data/spec/features/home_page_spec.rb +4 -4
  92. data/spec/features/layer_opacity_spec.rb +1 -0
  93. data/spec/features/metadata_panel_spec.rb +1 -1
  94. data/spec/features/missing_metadata_spec.rb +2 -2
  95. data/spec/features/relations_spec.rb +2 -2
  96. data/spec/features/search_results_map_spec.rb +2 -1
  97. data/spec/features/search_results_overlap_ratio_spec.rb +2 -2
  98. data/spec/features/split_view.html.erb_spec.rb +16 -12
  99. data/spec/features/tms_spec.rb +10 -0
  100. data/spec/fixtures/solr_documents/README.md +48 -36
  101. data/spec/fixtures/solr_documents/actual-papermap1.json +41 -18
  102. data/spec/fixtures/solr_documents/actual-point1.json +47 -27
  103. data/spec/fixtures/solr_documents/actual-polygon1.json +43 -18
  104. data/spec/fixtures/solr_documents/actual-raster1.json +52 -23
  105. data/spec/fixtures/solr_documents/all-relationships.json +48 -0
  106. data/spec/fixtures/solr_documents/baruch_ancestor1.json +62 -37
  107. data/spec/fixtures/solr_documents/baruch_ancestor2.json +62 -37
  108. data/spec/fixtures/solr_documents/baruch_documentation_download.json +60 -34
  109. data/spec/fixtures/solr_documents/bbox-spans-180.json +34 -16
  110. data/spec/fixtures/solr_documents/cornell_html_metadata.json +46 -26
  111. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +43 -25
  112. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +45 -28
  113. data/spec/fixtures/solr_documents/esri-feature-layer.json +44 -34
  114. data/spec/fixtures/solr_documents/esri-image-map-layer.json +45 -31
  115. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +42 -17
  116. data/spec/fixtures/solr_documents/esri-wms-layer.json +46 -21
  117. data/spec/fixtures/solr_documents/harvard_raster.json +55 -36
  118. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +35 -22
  119. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +48 -27
  120. data/spec/fixtures/solr_documents/index-map-polygon.json +48 -27
  121. data/spec/fixtures/solr_documents/index-map-stanford.json +54 -25
  122. data/spec/fixtures/solr_documents/index_map_point.json +54 -26
  123. data/spec/fixtures/solr_documents/metadata_no_geom.json +27 -0
  124. data/spec/fixtures/solr_documents/metadata_no_provider.json +39 -0
  125. data/spec/fixtures/solr_documents/multiple-downloads.json +33 -20
  126. data/spec/fixtures/solr_documents/no_locn_geometry.json +25 -0
  127. data/spec/fixtures/solr_documents/no_spatial.json +37 -19
  128. data/spec/fixtures/solr_documents/oembed.json +34 -17
  129. data/spec/fixtures/solr_documents/princeton-child1.json +45 -28
  130. data/spec/fixtures/solr_documents/princeton-child2.json +45 -28
  131. data/spec/fixtures/solr_documents/princeton-child3.json +45 -28
  132. data/spec/fixtures/solr_documents/princeton-child4.json +45 -28
  133. data/spec/fixtures/solr_documents/princeton-parent.json +46 -23
  134. data/spec/fixtures/solr_documents/public_direct_download.json +48 -21
  135. data/spec/fixtures/solr_documents/public_iiif_princeton.json +49 -24
  136. data/spec/fixtures/solr_documents/public_polygon_mit.json +31 -15
  137. data/spec/fixtures/solr_documents/restricted-line.json +52 -21
  138. data/spec/fixtures/solr_documents/the-related-record.json +27 -0
  139. data/spec/fixtures/solr_documents/tms.json +45 -0
  140. data/spec/fixtures/solr_documents/umn_metro_result1.json +44 -28
  141. data/spec/fixtures/solr_documents/umn_state_result1.json +44 -26
  142. data/spec/fixtures/solr_documents/umn_state_result2.json +45 -24
  143. data/spec/fixtures/solr_documents/uva_slug_colon.json +43 -20
  144. data/spec/{lib → helpers}/geoblacklight/geoblacklight_helper_behavior_spec.rb +1 -0
  145. data/spec/helpers/geoblacklight_helper_spec.rb +30 -4
  146. data/spec/javascripts/geoblacklight_spec.js +0 -6
  147. data/spec/javascripts/metadata_download_button_spec.js +5 -3
  148. data/spec/javascripts/util_spec.js +2 -4
  149. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
  150. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
  151. data/spec/lib/geoblacklight/download/hgl_download_spec.rb +1 -1
  152. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +2 -2
  153. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
  154. data/spec/lib/geoblacklight/download_spec.rb +1 -1
  155. data/spec/lib/geoblacklight/geometry_spec.rb +59 -0
  156. data/spec/lib/geoblacklight/item_viewer_spec.rb +12 -0
  157. data/spec/lib/geoblacklight/references_spec.rb +3 -3
  158. data/spec/lib/geoblacklight/relation/ancestors_spec.rb +3 -3
  159. data/spec/lib/geoblacklight/relation/descendants_spec.rb +3 -3
  160. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +32 -17
  161. data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -4
  162. data/spec/spec_helper.rb +2 -0
  163. data/spec/support/view_component_capybara_test_helpers.rb +8 -0
  164. data/spec/test_app_templates/Gemfile.extra +1 -0
  165. data/spec/test_app_templates/lib/generators/test_app_generator.rb +0 -7
  166. data/spec/views/catalog/_document_split.html.erb_spec.rb +1 -1
  167. data/spec/views/catalog/_index_split.html.erb_spec.rb +1 -1
  168. data/template.rb +1 -0
  169. metadata +99 -51
  170. data/.circleci/config.yml +0 -256
  171. data/app/views/catalog/_document_action.html.erb +0 -6
  172. data/app/views/catalog/_facet_tag_item.html.erb +0 -3
  173. data/app/views/catalog/_facet_tag_layout.html.erb +0 -2
  174. data/app/views/relation/_ancestors.html.erb +0 -8
  175. data/app/views/relation/_descendants.html.erb +0 -15
  176. data/schema/format-values.md +0 -50
  177. data/schema/geoblacklight-schema-deprecated.md +0 -39
  178. data/schema/geoblacklight-schema.md +0 -323
  179. data/schema/geometry-type-values.md +0 -11
  180. data/schema/references.md +0 -23
  181. data/schema/schema-commentary.md +0 -198
  182. data/schema/subjects.md +0 -41
  183. data/schema/type-values.md +0 -10
  184. data/spec/fixtures/solr_documents/metadata_no_dct_provenance_s.json +0 -30
  185. data/spec/fixtures/solr_documents/metadata_no_layer_geom_type_s.json +0 -17
  186. data/spec/fixtures/solr_documents/metadata_no_solr_geom.json +0 -23
  187. data/spec/javascripts/geoblacklight/viewers/esri/tiled_map_layer_spec.js +0 -12
  188. data/spec/javascripts/spec_helper.js +0 -32
  189. data/spec/lib/geoblacklight/controller_override_spec.rb +0 -2
  190. data/spec/teaspoon_env.rb +0 -214
@@ -1,44 +1,63 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_description_s": "This layer is a georeferenced raster image of the historic paper map entitled: [Karta mesta zanimaemago Sanktpeterburgom : v tom vide v kakom onoe nakhodilos' za god do osnovaniia goroda; sostavlena dlia panoramy S. Peterburga, 1834]. It was published in 1834. Scale [ca. 1:76,000]. Covers Saint Petersburg Region, Russia. Map in Russian and Swedish.\n\nThe image inside the map neatline is georeferenced to the surface of the earth and fit to the 'Pulkovo 1995 Gauss Kruger Zone 6N' coordinate system. All map collar and inset information is also available as part of the raster image, including any inset maps, profiles, statistical tables, directories, text, illustrations, index maps, legends, or other information associated with the principal map.\n\nThis map shows features such as roads, drainage, built-up areas and selected buildings, ground cover, and more. Relief is shown by hachures. Depths shown by soundings. Includes insets: [Retusari island] -- [Sluselberg]. \n\nThis layer is part of a selection of digitally scanned and georeferenced historic maps from The Harvard Map Collection as part of the Imaging the Urban Environment project. Maps selected for this project represent major urban areas and cities of the world, at various time periods. These maps typically portray both natural and manmade features at a large scale. The selection represents a range of regions, originators, ground condition dates, scales, and purposes.",
4
- "dc_format_s": "GeoTIFF",
5
- "dc_identifier_s": "urn:hul.harvard.edu:HARVARD.SDE2.G7064_S2_1834_K3",
6
- "dc_language_s": "English",
7
- "dc_publisher_s": "Harvard Map Collection, Harvard College Library",
8
- "dc_rights_s": "Public",
9
- "dc_subject_sm": [
10
- "Maps",
11
- "Human",
12
- "settlements",
13
- "Cities",
14
- "and",
15
- "towns",
16
- "Land",
17
- "use",
2
+ "dct_title_s": "Saint Petersburg Region, Russia, 1834 (Raster Image)",
3
+ "dct_alternative_sm": [
4
+ "harvard_raster"
5
+ ],
6
+ "dct_description_sm": [
7
+ "This layer is a georeferenced raster image of the historic paper map entitled: [Karta mesta zanimaemago Sanktpeterburgom : v tom vide v kakom onoe nakhodilos' za god do osnovaniia goroda; sostavlena dlia panoramy S. Peterburga, 1834]. It was published in 1834. Scale [ca. 1:76,000]. Covers Saint Petersburg Region, Russia. Map in Russian and Swedish.\\n\\nThe image inside the map neatline is georeferenced to the surface of the earth and fit to the 'Pulkovo 1995 Gauss Kruger Zone 6N' coordinate system. All map collar and inset information is also available as part of the raster image, including any inset maps, profiles, statistical tables, directories, text, illustrations, index maps, legends, or other information associated with the principal map.\\n\\nThis map shows features such as roads, drainage, built-up areas and selected buildings, ground cover, and more. Relief is shown by hachures. Depths shown by soundings. Includes insets: [Retusari island] -- [Sluselberg]. \\n\\nThis layer is part of a selection of digitally scanned and georeferenced historic maps from The Harvard Map Collection as part of the Imaging the Urban Environment project. Maps selected for this project represent major urban areas and cities of the world, at various time periods. These maps typically portray both natural and manmade features at a large scale. The selection represents a range of regions, originators, ground condition dates, scales, and purposes."
8
+ ],
9
+ "dct_language_sm": [
10
+ "eng"
11
+ ],
12
+ "dct_publisher_sm": [
13
+ "Harvard Map Collection, Harvard College Library"
14
+ ],
15
+ "schema_provider_s": "Harvard",
16
+ "gbl_resourceClass_sm": [
17
+ "Datasets"
18
+ ],
19
+ "gbl_resourceType_sm": [
20
+ "Raster data"
21
+ ],
22
+ "dct_subject_sm": [
23
+ "Human settlements",
24
+ "Cities and towns",
25
+ "Land use",
18
26
  "Landforms",
19
27
  "Infrastructure",
20
- "(Economics)",
21
- "Transportation",
22
- "Bodies",
23
- "of",
24
- "water",
25
- "imageryBaseMapsEarthCover"
26
- ],
27
- "dc_title_s": "Saint Petersburg Region, Russia, 1834 (Raster Image)",
28
- "dc_type_s": "Dataset",
29
- "dct_references_s": "{\"http://schema.org/DownloadAction\":\"http://pelham.lib.harvard.edu:8080/HGL/HGLOpenDelivery\",\"http://www.opengis.net/def/serviceType/ogc/wcs\":\"http://pelham.lib.harvard.edu:8090/geoserver/wcs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://pelham.lib.harvard.edu:8090/geoserver/wms\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.harvard/master/217/121/227/77/fgdc.xml\"}",
30
- "dct_spatial_sm": [
31
- "Russia Saint Petersburg"
28
+ "Economics",
29
+ "Bodies of water"
30
+ ],
31
+ "dcat_theme_sm": [
32
+ "Imagery and Base Maps",
33
+ "Transportation"
34
+ ],
35
+ "dcat_keyword_sm": [
36
+ "GBL Fixture records"
32
37
  ],
33
38
  "dct_temporal_sm": [
34
39
  "1834"
35
40
  ],
36
- "dct_issued_s": "2000",
37
- "dct_provenance_s": "Harvard",
38
- "layer_slug_s": "harvard-g7064-s2-1834-k3",
39
- "layer_id_s": "cite:G7064_S2_1834_K3",
40
- "layer_geom_type_s": "Raster",
41
- "layer_modified_dt": "2014-05-27T18:09:36Z",
42
- "solr_geom": "ENVELOPE(30.013108, 30.875309, 60.041712, 59.669749)",
43
- "solr_year_i": 1834
41
+ "dct_issued_s": "1905-06-22",
42
+ "gbl_indexYear_im": [
43
+ "1834"
44
+ ],
45
+ "gbl_dateRange_drsim": [
46
+ "[1834 TO 1834]"
47
+ ],
48
+ "dct_spatial_sm": [
49
+ "Russia Saint Petersburg"
50
+ ],
51
+ "locn_geometry": "ENVELOPE(30.013108,30.875309,60.041712,59.669749)",
52
+ "dcat_centroid_ss": "59.8557305,30.444208500000002",
53
+ "dct_accessRights_s": "Public",
54
+ "dct_format_s": "GeoTIFF",
55
+ "gbl_wxsIdentifier_s": "cite:G7064_S2_1834_K3",
56
+ "dct_references_s": "{\"http://schema.org/DownloadAction\":\"http://pelham.lib.harvard.edu:8080/HGL/HGLOpenDelivery\",\"http://www.opengis.net/def/serviceType/ogc/wcs\":\"http://pelham.lib.harvard.edu:8090/geoserver/wcs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://pelham.lib.harvard.edu:8090/geoserver/wms\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.harvard/master/217/121/227/77/fgdc.xml\"}",
57
+ "id": "harvard-g7064-s2-1834-k3",
58
+ "dct_identifier_sm": [
59
+ "urn:hul.harvard.edu:HARVARD.SDE2.G7064_S2_1834_K3"
60
+ ],
61
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
62
+ "gbl_mdVersion_s": "Aardvark"
44
63
  }
@@ -1,30 +1,43 @@
1
1
  {
2
- "dc_identifier_s": "57f0f116-b64e-4773-8684-96ba09afb549",
3
- "dc_title_s": "A new & accurate map of Asia: drawn from actual surveys, and otherwise collected from journals; assisted by the most approved modern maps & charts. the whole being regulated by astron. observations",
4
- "dc_description_s": "Cartographic Details: Scale [1:26,000,000]. Numbered \"N⁰52.\" Decorative title cartouche with palm tree. Shows boundaries, rivers, islands and principal settlements. Relief shown pictorially. London meridian. 35 x 43 cm",
5
- "dc_rights_s": "Public",
6
- "dc_format_s": "TIFF",
7
- "dc_language_sm": [
8
- "English"
9
- ],
10
- "dc_type_sm": [
11
- "Image"
12
- ],
13
- "dc_creator_sm": [
2
+ "dct_title_s": "A new & accurate map of Asia: drawn from actual surveys, and otherwise collected from journals; assisted by the most approved modern maps & charts. the whole being regulated by astron. observations",
3
+ "dct_alternative_sm": [
4
+ "iiif-eastern-hemisphere"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Eastern hemisphere scanned map with IIIF manifest. ",
8
+ "Cartographic Details: Scale [1:26,000,000]. Numbered \"N⁰52.\" Decorative title cartouche with palm tree. Shows boundaries, rivers, islands and principal settlements. Relief shown pictorially. London meridian. 35 x 43 cm"
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
14
  "Bowen, Emanuel (-1767)"
15
15
  ],
16
- "dct_provenance_s": "Minnesota",
17
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.umn.edu/200804\",\"http://iiif.io/api/image\":\"https://cdm16022.contentdm.oclc.org/digital/iiif/p16022coll246/224/info.json\"}",
18
- "dct_isPartOf_sm": [
19
- "John R. Borchert Map Library"
16
+ "schema_provider_s": "University of Minnesota",
17
+ "gbl_resourceClass_sm": [
18
+ "Maps"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "GBL Fixture records"
20
22
  ],
21
23
  "dct_temporal_sm": [
22
24
  "1750"
23
25
  ],
24
- "layer_slug_s": "57f0f116-b64e-4773-8684-96ba09afb549",
25
- "layer_geom_type_s": "Image",
26
- "layer_modified_dt": "2018-08-02T16:28:36Z",
27
- "solr_geom": "ENVELOPE(25, -168.35, 81.66, -12.93)",
28
- "solr_year_i": 1750,
29
- "geoblacklight_version": "1.0"
26
+ "gbl_indexYear_im": [
27
+ "1750"
28
+ ],
29
+ "gbl_dateRange_drsim": [
30
+ "[1750 TO 1750]"
31
+ ],
32
+ "locn_geometry": "ENVELOPE(25,-168.35,81.66,-12.93)",
33
+ "dcat_centroid_ss": "34.365,-71.675",
34
+ "dct_accessRights_s": "Public",
35
+ "dct_format_s": "JPEG",
36
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://umedia.lib.umn.edu/sites/default/files/archive/113/image/tiff/1058396.tif\",\"http://schema.org/url\":\"http://purl.umn.edu/200804\",\"http://iiif.io/api/presentation#manifest\":\"https://cdm16022.contentdm.oclc.org/iiif/info/p16022coll246/224/manifest.json\"}",
37
+ "id": "57f0f116-b64e-4773-8684-96ba09afb549",
38
+ "dct_identifier_sm": [
39
+ "57f0f116-b64e-4773-8684-96ba09afb549"
40
+ ],
41
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
42
+ "gbl_mdVersion_s": "Aardvark"
30
43
  }
@@ -1,37 +1,58 @@
1
1
  {
2
- "geoblacklight_version":"1.0",
3
- "dc_identifier_s":"http://cugir.library.cornell.edu/catalog/cugir-008186#no-downloadUrl",
4
- "dc_title_s":"Index of Digital Elevation Models (DEM), New York",
5
- "dc_description_s":"This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile, but this record doesn't include a downloadUrl for the index map itself.",
6
- "dc_rights_s":"Public",
7
- "dct_provenance_s":"Cornell",
8
- "dct_references_s":"{\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\"}",
9
- "layer_id_s":"cugir008186",
10
- "layer_slug_s":"cugir-008186-no-downloadurl",
11
- "dc_type_s":"Dataset",
12
- "dc_format_s":"GeoTIFF",
13
- "layer_geom_type_s":"Raster",
14
- "layer_modified_dt":"2018-12-20T00:00:00Z",
15
- "dc_creator_sm":[
2
+ "dct_title_s": "Index of Digital Elevation Models (DEM), New York",
3
+ "dct_alternative_sm": [
4
+ "index-map-polygon-no-downloadurl"
5
+ ],
6
+ "dct_description_sm": [
7
+ "GeoJSON index map of polygons, but lacking a downloadUrl for the index itself. ",
8
+ "This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile. Each DEM raster has a pixel resolution of approximately 10 meters. Elevation values were derived from USGS contour lines mapped at a scale of 1:24,000. DEMs can be used as source data for digital orthophotos and as layers in geographic information systems for earth science analysis. DEMs can also serve as tools for volumetric analysis, for site location of towers, or for drainage basin delineation. These data are collected as part of the National Mapping Program."
9
+ ],
10
+ "dct_creator_sm": [
16
11
  "U.S. Geological Survey"
17
12
  ],
18
- "dc_publisher_sm":[
13
+ "dct_publisher_sm": [
19
14
  "U.S. Geological Survey"
20
15
  ],
21
- "dc_subject_sm":[
22
- "digital elevation model",
23
- "digital terrain model",
24
- "hypsography",
25
- "altitude",
26
- "topography",
27
- "Index maps"
16
+ "schema_provider_s": "Cornell",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
28
19
  ],
29
- "dct_spatial_sm":[
30
- "New York"
20
+ "gbl_resourceType_sm": [
21
+ "Raster data",
22
+ "Index maps",
23
+ "Digital elevation models",
24
+ "Digital terrain models"
31
25
  ],
32
- "dct_temporal_sm":[
26
+ "dct_subject_sm": [
27
+ "Hypsography",
28
+ "Altitude",
29
+ "Topography"
30
+ ],
31
+ "dcat_keyword_sm": [
32
+ "GBL Fixture records"
33
+ ],
34
+ "dct_temporal_sm": [
33
35
  "1995"
34
36
  ],
35
- "solr_geom":"ENVELOPE(-79.750232, -71.750494, 44.999963, 40.499893)",
36
- "solr_year_i":1995
37
+ "gbl_indexYear_im": [
38
+ "1995"
39
+ ],
40
+ "gbl_dateRange_drsim": [
41
+ "[1995 TO 1995]"
42
+ ],
43
+ "dct_spatial_sm": [
44
+ "New York"
45
+ ],
46
+ "locn_geometry": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
47
+ "dcat_centroid_ss": "42.749928,-75.750363",
48
+ "dct_accessRights_s": "Public",
49
+ "dct_format_s": "GeoTIFF",
50
+ "gbl_wxsIdentifier_s": "cugir008186",
51
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\",\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\"}",
52
+ "id": "cugir-008186",
53
+ "dct_identifier_sm": [
54
+ "http://cugir.library.cornell.edu/catalog/cugir-008186"
55
+ ],
56
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
57
+ "gbl_mdVersion_s": "Aardvark"
37
58
  }
@@ -1,37 +1,58 @@
1
1
  {
2
- "geoblacklight_version":"1.0",
3
- "dc_identifier_s":"http://cugir.library.cornell.edu/catalog/cugir-008186",
4
- "dc_title_s":"Index of Digital Elevation Models (DEM), New York",
5
- "dc_description_s":"This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile. Each DEM raster has a pixel resolution of approximately 10 meters. Elevation values were derived from USGS contour lines mapped at a scale of 1:24,000. DEMs can be used as source data for digital orthophotos and as layers in geographic information systems for earth science analysis. DEMs can also serve as tools for volumetric analysis, for site location of towers, or for drainage basin delineation. These data are collected as part of the National Mapping Program.",
6
- "dc_rights_s":"Public",
7
- "dct_provenance_s":"Cornell",
8
- "dct_references_s":"{\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://schema.org/downloadUrl\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\"}",
9
- "layer_id_s":"cugir008186",
10
- "layer_slug_s":"cugir-008186",
11
- "dc_type_s":"Dataset",
12
- "dc_format_s":"GeoTIFF",
13
- "layer_geom_type_s":"Raster",
14
- "layer_modified_dt":"2018-12-20T00:00:00Z",
15
- "dc_creator_sm":[
2
+ "dct_title_s": "Index of Digital Elevation Models (DEM), New York",
3
+ "dct_alternative_sm": [
4
+ "index-map-polygon"
5
+ ],
6
+ "dct_description_sm": [
7
+ "GeoJSON index map of polygons, with a downloadUrl for the index itself. ",
8
+ "This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile, but this record doesn't include a downloadUrl for the index map itself."
9
+ ],
10
+ "dct_creator_sm": [
16
11
  "U.S. Geological Survey"
17
12
  ],
18
- "dc_publisher_sm":[
13
+ "dct_publisher_sm": [
19
14
  "U.S. Geological Survey"
20
15
  ],
21
- "dc_subject_sm":[
22
- "digital elevation model",
23
- "digital terrain model",
24
- "hypsography",
25
- "altitude",
26
- "topography",
27
- "Index maps"
16
+ "schema_provider_s": "Cornell",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
28
19
  ],
29
- "dct_spatial_sm":[
30
- "New York"
20
+ "gbl_resourceType_sm": [
21
+ "Raster data",
22
+ "Index maps",
23
+ "Digital elevation models",
24
+ "Digital terrain models"
31
25
  ],
32
- "dct_temporal_sm":[
26
+ "dct_subject_sm": [
27
+ "Hypsography",
28
+ "Altitude",
29
+ "Topography"
30
+ ],
31
+ "dcat_keyword_sm": [
32
+ "GBL Fixture records"
33
+ ],
34
+ "dct_temporal_sm": [
33
35
  "1995"
34
36
  ],
35
- "solr_geom":"ENVELOPE(-79.750232, -71.750494, 44.999963, 40.499893)",
36
- "solr_year_i":1995
37
+ "gbl_indexYear_im": [
38
+ "1995"
39
+ ],
40
+ "gbl_dateRange_drsim": [
41
+ "[1995 TO 1995]"
42
+ ],
43
+ "dct_spatial_sm": [
44
+ "New York"
45
+ ],
46
+ "locn_geometry": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
47
+ "dcat_centroid_ss": "42.749928,-75.750363",
48
+ "dct_accessRights_s": "Public",
49
+ "dct_format_s": "GeoTIFF",
50
+ "gbl_wxsIdentifier_s": "cugir008186",
51
+ "dct_references_s": "{\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\",\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\"}",
52
+ "id": "cugir-008186-no-downloadurl",
53
+ "dct_identifier_sm": [
54
+ "http://cugir.library.cornell.edu/catalog/cugir-008186#no-downloadUrl"
55
+ ],
56
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
57
+ "gbl_mdVersion_s": "Aardvark"
37
58
  }
@@ -1,37 +1,66 @@
1
1
  {
2
- "dc_identifier_s": "http://purl.stanford.edu/fb897vt9938",
3
- "dc_title_s": "Dabao Kinbōzu, Maps Index",
4
- "dc_description_s": "This polygon GeoJSON file is an index to 1:50000 scale maps of Davao (Philippines), titled 'Dabao Kinbōzu -- ダバオ近傍圖/Dabao Kinbōzu.’ This map series was originally produced by the Japanese Land Survey Department of the General Staff Headquarters in 1944. Stanford University Libraries holds a large collection of Japanese military and imperial maps, referred to as gaihōzu, or \"maps of outer lands.\" These maps were produced starting in the early Meiji (1868-1912) era and the end of World War II by the Land Survey Department of the General Staff Headquarters, the former Japanese Army. The Library is in the process of scanning and making available all of the maps in the collection. To create this index, footprints were generated using the fishnet tool, and metadata were supplied for the digitized paper maps by Stanford University Libraries. After the footprints were created, the GeoJSON was trimmed and labeled according to the sources.This layer provides an index map that can be used to locate individual scanned map sheets.",
5
- "dc_rights_s": "Public",
6
- "dct_provenance_s": "Stanford",
7
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/fb897vt9938\",\"http://schema.org/downloadUrl\":\"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/fb897vt9938.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/iso19139.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/default.html\",\"https://openindexmaps.org\": \"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\"}",
8
- "layer_id_s": "druid:fb897vt9938",
9
- "layer_slug_s": "stanford-fb897vt9938",
10
- "layer_geom_type_s": "Polygon",
11
- "layer_modified_dt": "2016-10-20T21:07:24Z",
12
- "dc_format_s": "GeoJSON",
13
- "dc_language_s": "English",
14
- "dc_type_s": "Dataset",
15
- "dc_publisher_s": "Stanford Digital Repository",
16
- "dc_creator_sm": [
2
+ "dct_title_s": "Dabao Kinbōzu, Maps Index",
3
+ "dct_alternative_sm": [
4
+ "index-map-stanford"
5
+ ],
6
+ "dct_description_sm": [
7
+ "old-style (pre-GeoJSON) index map of rectangular polygons. ",
8
+ "This polygon GeoJSON file is an index to 1:50000 scale maps of Davao (Philippines), titled \\'Dabao Kinbōzu -- ダバオ近傍圖/Dabao Kinbōzu.’ This map series was originally produced by the Japanese Land Survey Department of the General Staff Headquarters in 1944. Stanford University Libraries holds a large collection of Japanese military and imperial maps, referred to as gaihōzu, or \"maps of outer lands.\" These maps were produced starting in the early Meiji (1868-1912) era and the end of World War II by the Land Survey Department of the General Staff Headquarters, the former Japanese Army. The Library is in the process of scanning and making available all of the maps in the collection. To create this index, footprints were generated using the fishnet tool, and metadata were supplied for the digitized paper maps by Stanford University Libraries. After the footprints were created, the GeoJSON was trimmed and labeled according to the sources.This layer provides an index map that can be used to locate individual scanned map sheets."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
17
14
  "Stanford Geospatial Center"
18
15
  ],
19
- "dc_subject_sm": [
16
+ "dct_publisher_sm": [
17
+ "Stanford Digital Repository"
18
+ ],
19
+ "schema_provider_s": "Stanford",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Polygon data",
20
25
  "Military maps",
21
26
  "Topographic maps",
22
- "Index maps",
23
- "Grids (Cartography)",
24
- "Boundaries",
25
- "Military"
27
+ "Index maps"
28
+ ],
29
+ "dct_subject_sm": [
30
+ "Grids (Cartography)"
31
+ ],
32
+ "dcat_theme_sm": [
33
+ "Boundaries"
34
+ ],
35
+ "dcat_keyword_sm": [
36
+ "GBL Fixture records"
26
37
  ],
27
- "dct_issued_s": "2016",
28
38
  "dct_temporal_sm": [
29
39
  "1944"
30
40
  ],
41
+ "dct_issued_s": "1905-07-08",
42
+ "gbl_indexYear_im": [
43
+ "1944"
44
+ ],
45
+ "gbl_dateRange_drsim": [
46
+ "[1944 TO 1944]"
47
+ ],
31
48
  "dct_spatial_sm": [
32
49
  "Davao (Philippines)"
33
50
  ],
34
- "solr_geom": "ENVELOPE(125, 126, 7.3333, 6.6666)",
35
- "solr_year_i": 1944,
36
- "stanford_rights_metadata_s": "<?xml version=\"1.0\"?>\n<rightsMetadata>\n <access type=\"discover\">\n <machine>\n <world/>\n </machine>\n </access>\n <access type=\"read\">\n <machine>\n <world/>\n </machine>\n </access>\n <use>\n <human type=\"useAndReproduction\">This item is in the public domain. There are no restrictions on use.</human>\n <human type=\"creativeCommons\"/>\n <machine type=\"creativeCommons\"/>\n </use>\n <copyright>\n <human>This work is in the Public Domain, meaning that it is not subject to copyright.</human>\n </copyright>\n</rightsMetadata>\n"
37
- }
51
+ "locn_geometry": "ENVELOPE(125,126,7.3333,6.6666)",
52
+ "dcat_centroid_ss": "6.99995,125.5",
53
+ "dct_rights_sm": [
54
+ "These data are licensed by Stanford Libraries and are available to Stanford University affiliates only. Affiliates are limited to current faculty, staff and students. These data may not be reproduced or used for any purpose without permission. For more information please contact brannerlibrary@stanford.edu"
55
+ ],
56
+ "dct_accessRights_s": "Public",
57
+ "dct_format_s": "GeoJSON",
58
+ "gbl_wxsIdentifier_s": "druid:fb897vt9938",
59
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/default.html\",\"http://schema.org/url\":\"http://purl.stanford.edu/fb897vt9938\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/iso19139.xml\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/fb897vt9938.mods\",\"https://openindexmaps.org\":\"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\"}",
60
+ "id": "stanford-fb897vt9938",
61
+ "dct_identifier_sm": [
62
+ "http://purl.stanford.edu/fb897vt9938"
63
+ ],
64
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
65
+ "gbl_mdVersion_s": "Aardvark"
66
+ }
@@ -1,27 +1,55 @@
1
1
  {
2
- "dc_description_s": "This is a description",
3
- "solr_geom": "ENVELOPE(-74.783, -74.733, 40.20, 40.166)",
4
- "dct_references_s": "{\"https://openindexmaps.org\":\"https://raw.githubusercontent.com/OpenIndexMaps/edu.cornell/master/ny-aerial-photos-1960s.geojson\",\"http://schema.org/downloadUrl\":\"https://raw.githubusercontent.com/OpenIndexMaps/edu.cornell/master/ny-aerial-photos-1960s.geojson\"}",
5
- "dc_rights_s": "Public",
6
- "dct_provenance_s": "Cornell",
7
- "dc_subject_sm": [
8
- "Aerial photographs",
9
- "Index maps"
10
- ],
11
- "dc_format_s": "GeoJSON",
12
- "layer_slug_s": "cornell-ny-aerial-photos-1960s",
13
- "dc_creator_sm": [
14
- "Jane Doe"
15
- ],
16
- "dc_type_s": "Dataset",
17
- "dc_identifier_s": "cornell-ny-aerial-photos-1960s",
18
- "dc_publisher_s": "The Publisher",
19
- "dct_spatial_sm": [
20
- "New York"
21
- ],
22
- "dc_title_s": "New York Aerial Photos (1960s)",
23
- "dct_issued_s": "c.1960",
24
- "layer_geom_type_s": "Point",
25
- "dc_language_s": "English",
26
- "geoblacklight_version": "1.0"
27
- }
2
+ "dct_title_s": "New York Aerial Photos (1960s)",
3
+ "dct_alternative_sm": [
4
+ "index_map_point"
5
+ ],
6
+ "dct_description_sm": [
7
+ "GeoJSON index map of points. ",
8
+ "This is a description"
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Jane Doe"
15
+ ],
16
+ "dct_publisher_sm": [
17
+ "The Publisher"
18
+ ],
19
+ "schema_provider_s": "Cornell",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Point data",
25
+ "Aerial photographs",
26
+ "Index maps"
27
+ ],
28
+ "dcat_theme_sm": [
29
+ "Imagery and Base Maps"
30
+ ],
31
+ "dcat_keyword_sm": [
32
+ "GBL Fixture records"
33
+ ],
34
+ "dct_issued_s": "c.1960",
35
+ "gbl_indexYear_im": [
36
+ "1960"
37
+ ],
38
+ "gbl_dateRange_drsim": [
39
+ "[1960 TO 1969]"
40
+ ],
41
+ "dct_spatial_sm": [
42
+ "New York"
43
+ ],
44
+ "locn_geometry": "ENVELOPE(-74.783,-74.733,40.2,40.166)",
45
+ "dcat_centroid_ss": "40.183,-74.75800000000001",
46
+ "dct_accessRights_s": "Public",
47
+ "dct_format_s": "GeoJSON",
48
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://raw.githubusercontent.com/OpenIndexMaps/edu.cornell/master/ny-aerial-photos-1960s.geojson\",\"https://openindexmaps.org\":\"https://raw.githubusercontent.com/OpenIndexMaps/edu.cornell/master/ny-aerial-photos-1960s.geojson\"}",
49
+ "id": "cornell-ny-aerial-photos-1960s",
50
+ "dct_identifier_sm": [
51
+ "cornell-ny-aerial-photos-1960s"
52
+ ],
53
+ "gbl_mdModified_dt": "2021-06-11T17:52:15Z",
54
+ "gbl_mdVersion_s": "Aardvark"
55
+ }