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,38 +1,56 @@
1
1
  {
2
- "dc_identifier_s": "90f14ff4-1359-4beb-b931-5cb41d20ab90",
3
- "dc_title_s": "Glacial Boundaries: Illinois, 1998",
4
- "dc_description_s": "Glacial boundary lines representing the extent of glaciation for major glacial episodes in Illinois. Data originally from Quaternary Deposits in Illinois map by Lineback (1979) and modified according to the reclassification by Hansel and Johnson, ISGS Bulletin 104 (1996). Attribute items include glacial episode identifier. ISGS, 1984 (revised 1998).",
5
- "dc_rights_s": "Public",
6
- "dc_format_s": "Shapefile",
7
- "dc_language_sm": "English",
8
- "dc_type_sm": [
9
- "Dataset"
10
- ],
11
- "dc_publisher_sm": [
2
+ "dct_title_s": "Glacial Boundaries: Illinois, 1998",
3
+ "dct_alternative_sm": [
4
+ "esri-dynamic-layer-all-layers"
5
+ ],
6
+ "dct_description_sm": [
7
+ "This record points to an the top level of an Esri Rest Web Map Service. It does not specify a layer.. ",
8
+ "Glacial boundary lines representing the extent of glaciation for major glacial episodes in Illinois. Data originally from Quaternary Deposits in Illinois map by Lineback (1979) and modified according to the reclassification by Hansel and Johnson, ISGS Bulletin 104 (1996). Attribute items include glacial episode identifier. ISGS, 1984 (revised 1998)."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
12
14
  "Illinois State Geological Survey"
13
15
  ],
14
- "dc_creator_sm": [
16
+ "dct_publisher_sm": [
15
17
  "Illinois State Geological Survey"
16
18
  ],
17
- "dc_subject_sm": [
19
+ "schema_provider_s": "University of Illinois Urbana-Champaign",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Polygon data"
25
+ ],
26
+ "dcat_theme_sm": [
18
27
  "Geoscientific Information"
19
28
  ],
20
- "dct_provenance_s": "Illinois",
21
- "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"http://data.isgs.illinois.edu/arcgis/rest/services/Geology/Glacial_Boundaries/MapServer\",\"http://schema.org/url\":\"https://clearinghouse.isgs.illinois.edu/data/geology/glacial-boundaries\",\"http://schema.org/downloadUrl\":\"https://clearinghouse.isgs.illinois.edu/sites/clearinghouse.isgs/files/Clearinghouse/data/ISGS/Geology/zips/IL_Glacial_Bndys_Py.zip\"}",
22
- "dct_isPartOf_sm": [
23
- "Illinois Geospatial Data Clearinghouse"
29
+ "dcat_keyword_sm": [
30
+ "GBL Fixture records"
24
31
  ],
25
- "dct_issued_s": "1998",
26
32
  "dct_temporal_sm": [
27
33
  "1998"
28
34
  ],
35
+ "dct_issued_s": "1905-06-20",
36
+ "gbl_indexYear_im": [
37
+ "1998"
38
+ ],
39
+ "gbl_dateRange_drsim": [
40
+ "[1998 TO 1998]"
41
+ ],
29
42
  "dct_spatial_sm": [
30
- "Illinois, United States"
31
- ],
32
- "layer_slug_s": "90f14ff4-1359-4beb-b931-5cb41d20ab90",
33
- "layer_geom_type_s": "Polygon",
34
- "layer_modified_dt": "2018-08-02T17:00:40Z",
35
- "solr_geom": "ENVELOPE(-91.513518, -87.495214, 42.508348, 36.969972)",
36
- "solr_year_i": 1998,
37
- "geoblacklight_version": "1.0"
43
+ "Illinois"
44
+ ],
45
+ "locn_geometry": "ENVELOPE(-91.513518,-87.495214,42.508348,36.969972)",
46
+ "dcat_centroid_ss": "39.73916,-89.504366",
47
+ "dct_accessRights_s": "Public",
48
+ "dct_format_s": "Shapefile",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://clearinghouse.isgs.illinois.edu/sites/clearinghouse.isgs/files/Clearinghouse/data/ISGS/Geology/zips/IL_Glacial_Bndys_Py.zip\",\"http://schema.org/url\":\"https://clearinghouse.isgs.illinois.edu/data/geology/glacial-boundaries\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://data.isgs.illinois.edu/arcgis/rest/services/Geology/Glacial_Boundaries/MapServer\"}",
50
+ "id": "90f14ff4-1359-4beb-b931-5cb41d20ab90",
51
+ "dct_identifier_sm": [
52
+ "90f14ff4-1359-4beb-b931-5cb41d20ab90"
53
+ ],
54
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
55
+ "gbl_mdVersion_s": "Aardvark"
38
56
  }
@@ -1,40 +1,57 @@
1
1
  {
2
- "dc_identifier_s": "4669301e-b4b2-4c8b-bf40-01b968a2865b",
3
- "dc_title_s": "Abandoned Quarries: Indiana",
4
- "dc_description_s": "QUARRIES_ABANDONED_IN was derived from a comma-delimited text file named \"QUALOC.TXT\" contained on the following CD-ROM publication: Hasenmueller, W.A., and Ault, C.H., 2001, Abandoned Industrial Minerals Quarries in Indiana, 2nd Edition, Digital Version, Computer Database 2, Indiana Geological Survey. The field named \"QUANUM\" can be used to link this data to the following tables available in the publication cited above: bibliography (QUAREF.TXT), history of operation (QUAHIS.TXT), and stratigraphy (QUASTR.TXT). It contains all abandoned quarry locations within QUALOC.TXT that have locational information that is adequate to determine UTM coordinate values.",
5
- "dc_rights_s": "Public",
6
- "dc_format_s": "Shapefile",
7
- "dc_language_sm": "English",
8
- "dc_type_sm": [
9
- "Dataset",
10
- "Service"
11
- ],
12
- "dc_publisher_sm": [
2
+ "dct_title_s": "Abandoned Quarries: Indiana",
3
+ "dct_alternative_sm": [
4
+ "esri-dynamic-layer-single-layer"
5
+ ],
6
+ "dct_description_sm": [
7
+ "ArcGIS Dynamic Map Layer with single layer indicated. ",
8
+ "QUARRIES_ABANDONED_IN was derived from a comma-delimited text file named \"QUALOC.TXT\" contained on the following CD-ROM publication: Hasenmueller, W.A., and Ault, C.H., 2001, Abandoned Industrial Minerals Quarries in Indiana, 2nd Edition, Digital Version, Computer Database 2, Indiana Geological Survey. The field named \"QUANUM\" can be used to link this data to the following tables available in the publication cited above: bibliography (QUAREF.TXT), history of operation (QUAHIS.TXT), and stratigraphy (QUASTR.TXT). It contains all abandoned quarry locations within QUALOC.TXT that have locational information that is adequate to determine UTM coordinate values."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
13
14
  "Indiana Geological Survey"
14
15
  ],
15
- "dc_creator_sm": [
16
+ "dct_publisher_sm": [
16
17
  "Indiana Geological Survey"
17
18
  ],
18
- "dc_subject_sm": [
19
- "Geoscientific Information",
20
- "Geology"
19
+ "schema_provider_s": "Purdue University",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets",
22
+ "Web services"
21
23
  ],
22
- "dct_provenance_s": "Purdue",
23
- "dct_references_s": "{\"http://schema.org/url\":\"http://maps.indiana.edu/previewMaps/Geology/Industrial_Minerals_Quarries_Abandoned.html\",\"http://schema.org/downloadUrl\":\"http://maps.indiana.edu/download/Geology/Industrial_Minerals_Quarries_Abandoned.zip\",\"http://schema.org/image\":\"http://maps.indiana.edu/images/Geology/Industrial_Minerals_Quarries_Abandoned.png\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://maps.indiana.edu/arcgis/rest/services/Geology/Industrial_Minerals_Quarries_Abandoned/MapServer/0\",\"http://www.opengis.net/cat/csw/csdgm\":\"http://maps.indiana.edu/metadata/Geology/Industrial_Minerals_Quarries_Abandoned.xml\"}",
24
- "dct_isPartOf_sm": [
25
- "IndianaMAP"
24
+ "gbl_resourceType_sm": [
25
+ "Point data"
26
+ ],
27
+ "dcat_theme_sm": [
28
+ "Geoscientific Information"
29
+ ],
30
+ "dcat_keyword_sm": [
31
+ "GBL Fixture records"
26
32
  ],
27
- "dct_issued_s": "2003-05-30",
28
33
  "dct_temporal_sm": [
29
34
  "2003"
30
35
  ],
36
+ "dct_issued_s": "2003-05-30",
37
+ "gbl_indexYear_im": [
38
+ "2003"
39
+ ],
40
+ "gbl_dateRange_drsim": [
41
+ "[2003 TO 2003]"
42
+ ],
31
43
  "dct_spatial_sm": [
32
- "Indiana, United States"
33
- ],
34
- "layer_slug_s": "4669301e-b4b2-4c8b-bf40-01b968a2865b",
35
- "layer_geom_type_s": "Point",
36
- "layer_modified_dt": "2018-08-02T17:05:54Z",
37
- "solr_geom": "ENVELOPE(-87.9324, -86.2569, 39.8521, 37.8626)",
38
- "solr_year_i": 2003,
39
- "geoblacklight_version": "1.0"
44
+ "Indiana"
45
+ ],
46
+ "locn_geometry": "ENVELOPE(-87.9324,-86.2569,39.8521,37.8626)",
47
+ "dcat_centroid_ss": "38.85735,-87.09465",
48
+ "dct_accessRights_s": "Public",
49
+ "dct_format_s": "Shapefile",
50
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://maps.indiana.edu/download/Geology/Industrial_Minerals_Quarries_Abandoned.zip\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://maps.indiana.edu/metadata/Geology/Industrial_Minerals_Quarries_Abandoned.xml\",\"http://schema.org/url\":\"http://maps.indiana.edu/previewMaps/Geology/Industrial_Minerals_Quarries_Abandoned.html\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://maps.indiana.edu/arcgis/rest/services/Geology/Industrial_Minerals_Quarries_Abandoned/MapServer/0\"}",
51
+ "id": "4669301e-b4b2-4c8b-bf40-01b968a2865b",
52
+ "dct_identifier_sm": [
53
+ "4669301e-b4b2-4c8b-bf40-01b968a2865b"
54
+ ],
55
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
56
+ "gbl_mdVersion_s": "Aardvark"
40
57
  }
@@ -1,46 +1,56 @@
1
1
  {
2
- "dc_identifier_s": "f406332e63eb4478a9560ad86ae90327_18",
3
- "dc_title_s": "Transit - Airports: Maryland",
4
- "dc_description_s": "This is a MD iMAP hosted service layer. Find more information at http://imap.maryland.gov. The Airports database is a geographic point database of aircraft landing facilities in the State of Maryland. Attribute data is provided on the physical and operational characteristics of the landing facility, current usage including enplanements and aircraft operations, congestion levels and usage categories. This geospatial data is derived from the FAA's National Airspace System Resource Aeronautical Data Product. This dataset only contains features located within the State of Maryland. Last Updated: 06/2013",
5
- "dc_rights_s": "Public",
6
- "dc_format_s": "Shapefile",
7
- "dc_language_sm": "English",
8
- "dc_type_sm": [
9
- "Dataset",
10
- "Service"
11
- ],
12
- "dc_publisher_sm": [
13
- "State of Maryland"
2
+ "dct_title_s": "Transit - Airports: Maryland",
3
+ "dct_alternative_sm": [
4
+ "esri-feature-layer"
5
+ ],
6
+ "dct_description_sm": [
7
+ "ArcGIS Feature Layer - point dataset. ",
8
+ "This is a MD iMAP hosted service layer. Find more information at http://imap.maryland.gov. The Airports database is a geographic point database of aircraft landing facilities in the State of Maryland. Attribute data is provided on the physical and operational characteristics of the landing facility, current usage including enplanements and aircraft operations, congestion levels and usage categories. This geospatial data is derived from the FAA's National Airspace System Resource Aeronautical Data Product. This dataset only contains features located within the State of Maryland. Last Updated: 06/2013"
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
14
12
  ],
15
- "dc_creator_sm": [
13
+ "dct_creator_sm": [
16
14
  "Maryland iMap"
17
15
  ],
18
- "dc_subject_sm": [
16
+ "dct_publisher_sm": [
17
+ "State of Maryland"
18
+ ],
19
+ "schema_provider_s": "University of Maryland",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Point data"
25
+ ],
26
+ "dcat_theme_sm": [
19
27
  "Transportation"
20
28
  ],
21
- "dct_provenance_s": "Maryland",
22
- "dct_references_s": "{\"http://schema.org/url\":\"http://data.imap.maryland.gov/datasets/f406332e63eb4478a9560ad86ae90327_18\",\"http://schema.org/downloadUrl\":\"http://data.imap.maryland.gov/datasets/f406332e63eb4478a9560ad86ae90327_18.zip\",\"urn:x-esri:serviceType:ArcGIS#FeatureLayer\":\"https://geodata.md.gov/imap/rest/services/Transportation/MD_Transit/FeatureServer/18\"}",
23
- "dct_isPartOf_sm": [
24
- "ArcGIS Open Data"
29
+ "dcat_keyword_sm": [
30
+ "GBL Fixture records"
25
31
  ],
26
- "dct_issued_s": "2016-02-16",
27
32
  "dct_temporal_sm": [
28
33
  "2016"
29
34
  ],
35
+ "dct_issued_s": "2016-02-16",
36
+ "gbl_indexYear_im": [
37
+ "2016"
38
+ ],
39
+ "gbl_dateRange_drsim": [
40
+ "[2016 TO 2016]"
41
+ ],
30
42
  "dct_spatial_sm": [
31
- "Maryland, United States"
32
- ],
33
- "layer_slug_s": "f406332e63eb4478a9560ad86ae90327_18",
34
- "layer_geom_type_s": "Point",
35
- "layer_modified_dt": "2018-08-02T17:16:57Z",
36
- "solr_geom": "ENVELOPE(-79.4539, -75.124, 39.7194, 37.9667)",
37
- "solr_year_i": 2016,
38
- "b1g_genre_sm": [
39
- "Geospatial data"
40
- ],
41
- "b1g_centroid_ss": "38.84305,-77.28895",
42
- "b1g_geonames_sm": [],
43
- "b1g_image_ss": "",
44
- "b1g_collection_sm": "10a-01",
45
- "geoblacklight_version": "1.0"
43
+ "Maryland"
44
+ ],
45
+ "locn_geometry": "ENVELOPE(-79.4539,-75.124,39.7194,37.9667)",
46
+ "dcat_centroid_ss": "38.843050000000005,-77.28895",
47
+ "dct_accessRights_s": "Public",
48
+ "dct_format_s": "Shapefile",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://data.imap.maryland.gov/datasets/f406332e63eb4478a9560ad86ae90327_18.zip\",\"urn:x-esri:serviceType:ArcGIS#FeatureLayer\":\"https://geodata.md.gov/imap/rest/services/Transportation/MD_Transit/FeatureServer/18\",\"http://schema.org/url\":\"http://data.imap.maryland.gov/datasets/f406332e63eb4478a9560ad86ae90327_18\"}",
50
+ "id": "f406332e63eb4478a9560ad86ae90327_18",
51
+ "dct_identifier_sm": [
52
+ "f406332e63eb4478a9560ad86ae90327_18"
53
+ ],
54
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
55
+ "gbl_mdVersion_s": "Aardvark"
46
56
  }
@@ -1,42 +1,56 @@
1
1
  {
2
- "dc_identifier_s": "32653ed6-8d83-4692-8a06-bf13ffe2c018",
3
- "dc_title_s": "Wabash Topo (27): Indiana, 1929",
4
- "dc_description_s": "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984.",
5
- "dc_rights_s": "Public",
6
- "dc_format_s": "GeoTIFF",
7
- "dc_language_sm": [
8
- "English"
9
- ],
10
- "dc_type_sm": [
11
- "Image"
12
- ],
13
- "dc_publisher_sm": [
2
+ "dct_title_s": "Wabash Topo (27): Indiana, 1929",
3
+ "dct_alternative_sm": [
4
+ "esri-image-map-layer"
5
+ ],
6
+ "dct_description_sm": [
7
+ "ArcGIS Image Map Layer with GeoTIFF direct download. ",
8
+ "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
14
  "Purdue University Libraries"
15
15
  ],
16
- "dc_creator_sm": [
17
-
16
+ "schema_provider_s": "Purdue University",
17
+ "gbl_resourceClass_sm": [
18
+ "Maps"
18
19
  ],
19
- "dc_source_sm": "88cc9b19-3294-4da9-9edd-775c81fb1c59",
20
- "dc_subject_sm": [
21
- "Imagery and Base Maps",
22
- "Topography"
20
+ "gbl_resourceType_sm": [
21
+ "Topographic maps"
23
22
  ],
24
- "dct_provenance_s": "Purdue",
25
- "dct_references_s": "{\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\",\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_27.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://64.90.181.107/geonetwork/srv/api/records/32653ed6-8d83-4692-8a06-bf13ffe2c018/formatters/xml\"}",
26
- "dct_isPartOf_sm": [
27
- "Purdue Georeferenced Imagery"
23
+ "dcat_theme_sm": [
24
+ "Imagery and Base Maps"
25
+ ],
26
+ "dcat_keyword_sm": [
27
+ "GBL Fixture records"
28
28
  ],
29
- "dct_issued_s": "2015-10-31",
30
29
  "dct_temporal_sm": [
31
30
  "1929"
32
31
  ],
32
+ "dct_issued_s": "2015-10-31",
33
+ "gbl_indexYear_im": [
34
+ "1929"
35
+ ],
36
+ "gbl_dateRange_drsim": [
37
+ "[1929 TO 1929]"
38
+ ],
33
39
  "dct_spatial_sm": [
34
- "Indiana, United States"
35
- ],
36
- "layer_slug_s": "32653ed6-8d83-4692-8a06-bf13ffe2c018",
37
- "layer_geom_type_s": "Image",
38
- "layer_modified_dt": "2018-07-20T18:08:03Z",
39
- "solr_geom": "ENVELOPE(-87.324704, -87.174404, 40.310695, 40.233691)",
40
- "solr_year_i": 1929,
41
- "geoblacklight_version": "1.0"
40
+ "Indiana"
41
+ ],
42
+ "locn_geometry": "ENVELOPE(-87.324704,-87.174404,40.310695,40.233691)",
43
+ "dcat_centroid_ss": "40.272193,-87.24955399999999",
44
+ "dct_source_sm": [
45
+ "88cc9b19-3294-4da9-9edd-775c81fb1c59"
46
+ ],
47
+ "dct_accessRights_s": "Public",
48
+ "dct_format_s": "GeoTIFF",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_27.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
50
+ "id": "32653ed6-8d83-4692-8a06-bf13ffe2c018",
51
+ "dct_identifier_sm": [
52
+ "32653ed6-8d83-4692-8a06-bf13ffe2c018"
53
+ ],
54
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
55
+ "gbl_mdVersion_s": "Aardvark"
42
56
  }
@@ -1,22 +1,47 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_description_s": "This map shows the Soil Survey Geographic (SSURGO) by the United States Department of Agriculture's Natural Resources Conservation Service. It also shows data that was developed by the National Cooperative Soil Survey and supersedes the State Soil Geographic (STATSGO) dataset published in 1994. SSURGO digitizing duplicates the original soil survey maps. This level of mapping is designed for use by landowners, townships, and county natural resource planning and management. The user should be knowledgeable of soils data and their characteristics. The smallest scale map shows the Global Soil Regions map by the United States Department of Agriculture’s Natural Resources Conservation Service.",
4
- "dc_format_s": "GeoTIFF",
5
- "dc_identifier_s": "test-soil-survey-map",
6
- "dc_language_s": "English",
7
- "dc_publisher_s": "United States Department of Agriculture, Natural Resources Conservation Service",
8
- "dc_rights_s": "Public",
9
- "dc_title_s": "Soil Survey Geographic (SSURGO)",
10
- "dc_type_s": "Dataset",
11
- "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#TiledMapLayer\": \"http://services.arcgisonline.com/arcgis/rest/services/Specialty/Soil_Survey_Map/MapServer\"}",
2
+ "dct_title_s": "Soil Survey Geographic (SSURGO)",
3
+ "dct_alternative_sm": [
4
+ "esri-tiled_map_layer"
5
+ ],
6
+ "dct_description_sm": [
7
+ "ArcGIS tiled map layer. ",
8
+ "This map shows the Soil Survey Geographic (SSURGO) by the United States Department of Agriculture's Natural Resources Conservation Service. It also shows data that was developed by the National Cooperative Soil Survey and supersedes the State Soil Geographic (STATSGO) dataset published in 1994. SSURGO digitizing duplicates the original soil survey maps. This level of mapping is designed for use by landowners, townships, and county natural resource planning and management. The user should be knowledgeable of soils data and their characteristics. The smallest scale map shows the Global Soil Regions map by the United States Department of Agriculture’s Natural Resources Conservation Service."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "United States Department of Agriculture, Natural Resources Conservation Service"
15
+ ],
16
+ "schema_provider_s": "NYU",
17
+ "gbl_resourceClass_sm": [
18
+ "Maps"
19
+ ],
20
+ "gbl_resourceType_sm": [
21
+ "Raster data"
22
+ ],
23
+ "dcat_keyword_sm": [
24
+ "GBL Fixture records"
25
+ ],
12
26
  "dct_temporal_sm": [
13
27
  "2010"
14
28
  ],
15
- "dct_provenance_s": "NYU",
16
- "layer_slug_s": "nyu-test-soil-survey-map",
17
- "layer_id_s": "test-soil-survey_map",
18
- "layer_geom_type_s": "Raster",
19
- "layer_modified_dt": "2015-06-16T00:59:49Z",
20
- "solr_geom": "ENVELOPE(-129.4956, -64.4393, 48.6336, 21.8079)",
21
- "solr_year_i": 2010
29
+ "gbl_indexYear_im": [
30
+ "2010"
31
+ ],
32
+ "gbl_dateRange_drsim": [
33
+ "[2010 TO 2010]"
34
+ ],
35
+ "locn_geometry": "ENVELOPE(-129.4956,-64.4393,48.6336,21.8079)",
36
+ "dcat_centroid_ss": "35.22075,-96.96745",
37
+ "dct_accessRights_s": "Public",
38
+ "dct_format_s": "GeoTIFF",
39
+ "gbl_wxsIdentifier_s": "test-soil-survey_map",
40
+ "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#TiledMapLayer\":\"http://services.arcgisonline.com/arcgis/rest/services/Specialty/Soil_Survey_Map/MapServer\"}",
41
+ "id": "nyu-test-soil-survey-map",
42
+ "dct_identifier_sm": [
43
+ "test-soil-survey-map"
44
+ ],
45
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
46
+ "gbl_mdVersion_s": "Aardvark"
22
47
  }
@@ -1,33 +1,58 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_creator_sm": [
2
+ "dct_title_s": "Agriculture Census: Indiana, 1997",
3
+ "dct_alternative_sm": [
4
+ "esri-wms-layer"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Dataset with ArcGIS Dynamic Map Layer, ArcGIS WMS, and direct download. ",
8
+ "USGS National Atlas metadata states \"This data set portrays the National Agricultural Statistics Service, U.S. Department of Agriculture's 1997 Census data for the United States, presented by county. There are 25 categories of data which include information about farms, crops, livestock, values of products, and farm operator characteristics.\""
9
+ ],
10
+ "dct_creator_sm": [
4
11
  "(creation): U.S. Geological Survey",
5
12
  "(selection/conversion): Bernardin, Lochmueller and Associates"
6
13
  ],
7
- "dc_description_s": "USGS National Atlas metadata states NThis data set portrays the National Agricultural Statistics Service, U.S. Department of Agriculture's 1997 Census data for the United States, presented by county. There are 25 categories of data which include information about farms, crops, livestock, values of products, and farm operator characteristics.N",
8
- "dc_format_s": "Shapefile",
9
- "dc_identifier_s": "urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa",
10
- "dc_publisher_sm": [
14
+ "dct_publisher_sm": [
11
15
  "Bernardin, Lochmueller and Associates"
12
16
  ],
13
- "dc_rights_s": "Public",
14
- "dc_subject_sm": [
15
- "farming",
16
- "agriculture"
17
+ "schema_provider_s": "Purdue University",
18
+ "gbl_resourceClass_sm": [
19
+ "Datasets"
20
+ ],
21
+ "gbl_resourceType_sm": [
22
+ "Mixed data"
23
+ ],
24
+ "dct_subject_sm": [
25
+ "Agriculture"
26
+ ],
27
+ "dcat_theme_sm": [
28
+ "Farming"
29
+ ],
30
+ "dcat_keyword_sm": [
31
+ "GBL Fixture records"
32
+ ],
33
+ "dct_temporal_sm": [
34
+ "1972-1997"
17
35
  ],
18
- "dc_title_s": "Agriculture Census: Indiana, 1997",
19
- "dc_type_s": "Dataset",
20
36
  "dct_issued_s": "2003-01-28",
21
- "dct_provenance_s": "Purdue",
22
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"http://maps.indiana.edu/download/Environment/Agriculture_Census.zip\",\"http://schema.org/url\":\"http://indianamap.org/\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.purdue/f0/82/ac/b1b01e4a089126fd62a23fd9aa/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://maps.indiana.edu/arcgis/services/Environment/Agriculture_Census/MapServer/WMSServer\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://maps.indiana.edu/arcgis/rest/services/Environment/Agriculture_Census/MapServer\"}",
37
+ "gbl_indexYear_im": [
38
+ "1972"
39
+ ],
40
+ "gbl_dateRange_drsim": [
41
+ "[1972 TO 1997]"
42
+ ],
23
43
  "dct_spatial_sm": [
24
44
  "Indiana"
25
45
  ],
26
- "dct_temporal_sm": "1972-1997",
27
- "layer_geom_type_s": "Mixed",
28
- "layer_id_s": "0",
29
- "layer_modified_dt": "2016-06-20T16:17:36Z",
30
- "layer_slug_s": "purdue-urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa",
31
- "solr_geom": "ENVELOPE(-88.1607, -84.6882, 41.7753, 37.7554)",
32
- "solr_year_i": 1972
46
+ "locn_geometry": "ENVELOPE(-88.1607,-84.6882,41.7753,37.7554)",
47
+ "dcat_centroid_ss": "39.76,-86.42",
48
+ "dct_accessRights_s": "Public",
49
+ "dct_format_s": "Shapefile",
50
+ "gbl_wxsIdentifier_s": "0",
51
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://schema.org/downloadUrl:https://maps.indiana.edu/download/Environment/Agriculture_Census.zip\",\"http://schema.org/url\":\"http://indianamap.org/\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.purdue/f0/82/ac/b1b01e4a089126fd62a23fd9aa/iso19139.xml\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://maps.indiana.edu/arcgis/rest/services/Environment/Agriculture_Census/MapServer\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://maps.indiana.edu/arcgis/services/Environment/Agriculture_Census/MapServer/WMSServer\"}",
52
+ "id": "purdue-urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa",
53
+ "dct_identifier_sm": [
54
+ "urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa"
55
+ ],
56
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
57
+ "gbl_mdVersion_s": "Aardvark"
33
58
  }