geoblacklight 4.0.0.pre.alpha.1 → 4.0.0.pre.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (205) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE.md +1 -1
  3. data/.github/workflows/ruby.yml +32 -64
  4. data/.gitignore +1 -0
  5. data/.rubocop.yml +6 -6
  6. data/.rubocop_todo.yml +0 -3
  7. data/.solr_wrapper +1 -0
  8. data/README.md +1 -4
  9. data/Rakefile +0 -1
  10. data/app/assets/images/blacklight/child-item.svg +3 -0
  11. data/app/assets/images/blacklight/collections.svg +4 -0
  12. data/app/assets/images/blacklight/datasets.svg +7 -0
  13. data/app/assets/images/blacklight/geoblacklight-icons.json +363 -332
  14. data/app/assets/images/blacklight/imagery.svg +4 -0
  15. data/app/assets/images/blacklight/maps.svg +4 -0
  16. data/app/assets/images/blacklight/michigan-state-university.svg +0 -1
  17. data/app/assets/images/blacklight/parent-item.svg +3 -0
  18. data/app/assets/images/blacklight/pennsylvania-state-university.svg +0 -1
  19. data/app/assets/images/blacklight/purdue-university.svg +0 -1
  20. data/app/assets/images/blacklight/the-ohio-state-university.svg +0 -1
  21. data/app/assets/images/blacklight/university-of-chicago.svg +0 -1
  22. data/app/assets/images/blacklight/university-of-colorado-boulder.svg +6 -0
  23. data/app/assets/images/blacklight/university-of-illinois-urbana-champaign.svg +0 -1
  24. data/app/assets/images/blacklight/university-of-iowa.svg +0 -1
  25. data/app/assets/images/blacklight/university-of-maryland.svg +0 -1
  26. data/app/assets/images/blacklight/university-of-michigan.svg +0 -1
  27. data/app/assets/images/blacklight/university-of-minnesota.svg +0 -1
  28. data/app/assets/images/blacklight/university-of-nebraska-lincoln.svg +0 -1
  29. data/app/assets/images/blacklight/university-of-wisconsin-madison.svg +0 -1
  30. data/app/assets/images/blacklight/websites.svg +4 -0
  31. data/app/assets/javascripts/geoblacklight/controls/fullscreen.js +8 -0
  32. data/app/assets/javascripts/geoblacklight/geoblacklight.js +2 -1
  33. data/app/assets/javascripts/geoblacklight/viewers/esri.js +1 -0
  34. data/app/assets/javascripts/geoblacklight/viewers/index_map.js +1 -0
  35. data/app/assets/javascripts/geoblacklight/viewers/tilejson.js +33 -0
  36. data/app/assets/javascripts/geoblacklight/viewers/tms.js +2 -2
  37. data/app/assets/javascripts/geoblacklight/viewers/viewer.js +3 -0
  38. data/app/assets/javascripts/geoblacklight/viewers/wms.js +2 -2
  39. data/app/assets/javascripts/geoblacklight/viewers/wmts.js +85 -0
  40. data/app/assets/javascripts/geoblacklight/viewers/xyz.js +10 -0
  41. data/app/assets/stylesheets/geoblacklight/geoblacklight.scss +1 -0
  42. data/app/assets/stylesheets/geoblacklight/modules/_base.scss +0 -1
  43. data/app/assets/stylesheets/geoblacklight/modules/_styles.scss +5 -1
  44. data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +20 -47
  45. data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +68 -0
  46. data/app/assets/stylesheets/geoblacklight/modules/item.scss +16 -0
  47. data/app/assets/stylesheets/geoblacklight/modules/modal.scss +6 -0
  48. data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +4 -0
  49. data/app/components/geoblacklight/icon_facet_item_component.rb +33 -0
  50. data/app/helpers/geoblacklight_helper.rb +6 -45
  51. data/app/models/concerns/geoblacklight/bbox_filter_field.rb +45 -0
  52. data/app/models/concerns/geoblacklight/bbox_filter_query.rb +50 -0
  53. data/app/models/concerns/geoblacklight/solr_document.rb +1 -1
  54. data/app/models/concerns/geoblacklight/suppressed_records_search_behavior.rb +26 -0
  55. data/app/presenters/geoblacklight/bbox_item_presenter.rb +9 -0
  56. data/app/views/catalog/_downloads_collapse.html.erb +27 -0
  57. data/app/views/catalog/_header_icons.html.erb +2 -2
  58. data/app/views/catalog/_index_split_default.html.erb +2 -2
  59. data/app/views/catalog/_show_default_viewer_container.html.erb +17 -0
  60. data/app/views/catalog/_show_downloads.html.erb +10 -21
  61. data/app/views/catalog/_show_sidebar.html.erb +3 -0
  62. data/app/views/catalog/_show_web_services.html.erb +11 -0
  63. data/app/views/catalog/_web_services.html.erb +3 -2
  64. data/app/views/catalog/web_services.html.erb +1 -1
  65. data/app/views/relation/_relations.html.erb +1 -1
  66. data/app/views/relation/index.html.erb +1 -1
  67. data/config/locales/geoblacklight.en.yml +4 -1
  68. data/geoblacklight.gemspec +6 -6
  69. data/lib/generators/geoblacklight/install_generator.rb +1 -1
  70. data/lib/generators/geoblacklight/templates/assets/_customizations.scss +5 -4
  71. data/lib/generators/geoblacklight/templates/assets/application.scss +0 -3
  72. data/lib/generators/geoblacklight/templates/catalog_controller.rb +74 -56
  73. data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +5 -5
  74. data/lib/generators/geoblacklight/templates/settings.yml +36 -23
  75. data/lib/geoblacklight/bounding_box.rb +4 -0
  76. data/lib/geoblacklight/constants.rb +3 -0
  77. data/lib/geoblacklight/engine.rb +3 -2
  78. data/lib/geoblacklight/faraday_middleware/follow_redirects.rb +176 -0
  79. data/lib/geoblacklight/item_viewer.rb +13 -1
  80. data/lib/geoblacklight/metadata/base.rb +2 -1
  81. data/lib/geoblacklight/version.rb +1 -1
  82. data/lib/geoblacklight/view_helper_override.rb +2 -28
  83. data/lib/geoblacklight.rb +0 -10
  84. data/lib/tasks/geoblacklight.rake +1 -1
  85. data/schema/geoblacklight-schema-aardvark.json +3 -23
  86. data/solr/conf/schema.xml +37 -43
  87. data/solr/conf/solrconfig.xml +17 -17
  88. data/spec/components/geoblacklight/icon_facet_item_component_spec.rb +17 -0
  89. data/spec/controllers/catalog_controller_spec.rb +1 -1
  90. data/spec/features/download_layer_spec.rb +31 -14
  91. data/spec/features/esri_viewer_spec.rb +5 -1
  92. data/spec/features/full_screen_controll_spec.rb +15 -0
  93. data/spec/features/home_page_spec.rb +2 -2
  94. data/spec/features/index_map_spec.rb +2 -2
  95. data/spec/features/missing_metadata_spec.rb +1 -1
  96. data/spec/features/multiple_downloads_spec.rb +2 -1
  97. data/spec/features/relations_spec.rb +1 -1
  98. data/spec/features/saved_searches_spec.rb +1 -1
  99. data/spec/features/search_results_complex_geometry_spec.rb +24 -0
  100. data/spec/features/search_results_icons_spec.rb +16 -0
  101. data/spec/features/search_results_map_spec.rb +2 -2
  102. data/spec/features/search_spec.rb +22 -0
  103. data/spec/features/show_page_download_spec.rb +29 -0
  104. data/spec/features/show_page_metadata_spec.rb +2 -2
  105. data/spec/features/split_view.html.erb_spec.rb +12 -1
  106. data/spec/features/tilejson_spec.rb +22 -0
  107. data/spec/features/tms_spec.rb +2 -2
  108. data/spec/features/web_services_modal_spec.rb +35 -2
  109. data/spec/features/wmts_spec.rb +34 -0
  110. data/spec/features/xyz_spec.rb +10 -0
  111. data/spec/fixtures/manifests/tilejson.json +21 -0
  112. data/spec/fixtures/manifests/wmts-multiple.xml +813 -0
  113. data/spec/fixtures/manifests/wmts-single.xml +126 -0
  114. data/spec/fixtures/solr_documents/README.md +46 -43
  115. data/spec/fixtures/solr_documents/actual-papermap1.json +2 -1
  116. data/spec/fixtures/solr_documents/actual-point1.json +2 -1
  117. data/spec/fixtures/solr_documents/actual-polygon1.json +2 -1
  118. data/spec/fixtures/solr_documents/actual-raster1.json +3 -2
  119. data/spec/fixtures/solr_documents/baruch_ancestor1.json +2 -1
  120. data/spec/fixtures/solr_documents/baruch_ancestor2.json +2 -1
  121. data/spec/fixtures/solr_documents/baruch_documentation_download.json +1 -1
  122. data/spec/fixtures/solr_documents/bbox-spans-180.json +2 -1
  123. data/spec/fixtures/solr_documents/cornell_html_metadata.json +4 -3
  124. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +3 -2
  125. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +3 -2
  126. data/spec/fixtures/solr_documents/esri-feature-layer.json +2 -1
  127. data/spec/fixtures/solr_documents/esri-image-map-layer.json +3 -2
  128. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +2 -1
  129. data/spec/fixtures/solr_documents/esri-wms-layer.json +2 -1
  130. data/spec/fixtures/solr_documents/harvard_raster.json +3 -2
  131. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +3 -2
  132. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +2 -1
  133. data/spec/fixtures/solr_documents/index-map-polygon.json +2 -1
  134. data/spec/fixtures/solr_documents/index-map-stanford.json +2 -1
  135. data/spec/fixtures/solr_documents/index_map_point.json +3 -2
  136. data/spec/fixtures/solr_documents/metadata_no_provider.json +2 -1
  137. data/spec/fixtures/solr_documents/multiple-downloads.json +3 -2
  138. data/spec/fixtures/solr_documents/no_spatial.json +1 -4
  139. data/spec/fixtures/solr_documents/oembed.json +2 -1
  140. data/spec/fixtures/solr_documents/princeton-child1.json +3 -2
  141. data/spec/fixtures/solr_documents/princeton-child2.json +3 -2
  142. data/spec/fixtures/solr_documents/princeton-child3.json +2 -1
  143. data/spec/fixtures/solr_documents/princeton-child4.json +3 -2
  144. data/spec/fixtures/solr_documents/princeton-parent.json +5 -3
  145. data/spec/fixtures/solr_documents/public_direct_download.json +2 -1
  146. data/spec/fixtures/solr_documents/public_iiif_princeton.json +3 -2
  147. data/spec/fixtures/solr_documents/public_polygon_mit.json +2 -1
  148. data/spec/fixtures/solr_documents/restricted-line.json +2 -1
  149. data/spec/fixtures/solr_documents/tilejson.json +48 -0
  150. data/spec/fixtures/solr_documents/tms.json +15 -18
  151. data/spec/fixtures/solr_documents/umn_metro_result1.json +5 -3
  152. data/spec/fixtures/solr_documents/umn_state_result1.json +3 -2
  153. data/spec/fixtures/solr_documents/umn_state_result2.json +3 -5
  154. data/spec/fixtures/solr_documents/uva_slug_colon.json +2 -1
  155. data/spec/fixtures/solr_documents/wmts-multiple.json +41 -0
  156. data/spec/fixtures/solr_documents/wmts-single-layer.json +48 -0
  157. data/spec/fixtures/solr_documents/xyz.json +46 -0
  158. data/spec/helpers/geoblacklight_helper_spec.rb +12 -35
  159. data/spec/lib/geoblacklight/document_presenter_spec.rb +3 -3
  160. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
  161. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
  162. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +1 -1
  163. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
  164. data/spec/lib/geoblacklight/download_spec.rb +2 -2
  165. data/spec/lib/geoblacklight/metadata/base_spec.rb +19 -1
  166. data/spec/lib/geoblacklight/references_spec.rb +1 -1
  167. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +5 -0
  168. data/spec/lib/geoblacklight/view_helper_override_spec.rb +0 -10
  169. data/spec/models/concerns/geoblacklight/bbox_filter_field_spec.rb +77 -0
  170. data/spec/models/concerns/geoblacklight/bbox_filter_query_spec.rb +105 -0
  171. data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +2 -1
  172. data/spec/models/concerns/geoblacklight/suppressed_records_search_behavior_spec.rb +31 -0
  173. data/spec/presenters/geoblacklight/bbox_item_presenter_spec.rb +36 -0
  174. data/spec/spec_helper.rb +6 -1
  175. data/spec/test_app_templates/Gemfile.extra +1 -0
  176. data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -4
  177. data/spec/views/catalog/_show_downloads.html.erb_spec.rb +5 -5
  178. data/template.rb +2 -4
  179. data/vendor/assets/images/fullscreen.png +0 -0
  180. data/vendor/assets/images/fullscreen@2x.png +0 -0
  181. data/vendor/assets/javascripts/Leaflet.fullscreen.js +152 -0
  182. data/vendor/assets/javascripts/esri-leaflet.js +10 -3
  183. data/vendor/assets/javascripts/esri-leaflet.js.map +1 -1
  184. data/vendor/assets/javascripts/leaflet-iiif.js +39 -18
  185. data/vendor/assets/javascripts/leaflet-src.js.erb +14062 -0
  186. data/vendor/assets/javascripts/leaflet-src.js.map +1 -1
  187. data/vendor/assets/stylesheets/leaflet.css +640 -634
  188. data/vendor/assets/stylesheets/leaflet.fullscreen.css +40 -0
  189. metadata +91 -46
  190. data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +0 -71
  191. data/app/views/catalog/_download_generated_link.html.erb +0 -4
  192. data/app/views/catalog/_download_link.html.erb +0 -3
  193. data/app/views/catalog/_downloads_generated.html.erb +0 -6
  194. data/app/views/catalog/_downloads_primary.html.erb +0 -21
  195. data/app/views/catalog/_downloads_secondary.html.erb +0 -39
  196. data/app/views/catalog/_icon_facet.html.erb +0 -16
  197. data/bin/coverage.rb +0 -36
  198. data/lib/generators/geoblacklight/templates/Procfile +0 -3
  199. data/lib/generators/geoblacklight/templates/package.json +0 -14
  200. data/lib/generators/geoblacklight/templates/webpacker.yml +0 -67
  201. data/lib/generators/geoblacklight/webpacker_generator.rb +0 -36
  202. data/lib/geoblacklight/catalog_helper_override.rb +0 -14
  203. data/spec/models/concerns/geoblacklight/spatial_search_behavior_spec.rb +0 -97
  204. data/vendor/assets/javascripts/leaflet.js.erb +0 -13922
  205. data/vendor/assets/stylesheets/leaflet-label.css +0 -54
@@ -33,10 +33,11 @@
33
33
  "Broome County NY"
34
34
  ],
35
35
  "locn_geometry": "ENVELOPE(-76.12987,-75.42034,42.414648,41.997963)",
36
- "dcat_centroid_ss": "42.2063055,-75.775105",
36
+ "dcat_bbox": "ENVELOPE(-76.12987,-75.42034,42.414648,41.997963)",
37
+ "dcat_centroid": "42.2063055,-75.775105",
37
38
  "dct_accessRights_s": "Public",
38
39
  "dct_format_s": "Shapefile",
39
- "dct_references_s": "{\"http:\/\/schema.org\/downloadUrl\":[{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/cugir-007950.zip\",\"label\":\"Shapefile\"},{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/agBROO.pdf\",\"label\":\"PDF\"},{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/agBROO2011.kmz\",\"label\":\"KMZ\"}],\"http:\/\/www.opengis.net\/cat\/csw\/csdgm\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/fgdc.xml\",\"http:\/\/www.w3.org\/1999\/xhtml\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/fgdc.html\",\"http:\/\/www.opengis.net\/def\/serviceType\/ogc\/wfs\":\"https:\/\/cugir.library.cornell.edu\/geoserver\/cugir\/wfs\",\"http:\/\/www.opengis.net\/def\/serviceType\/ogc\/wms\":\"https:\/\/cugir.library.cornell.edu\/geoserver\/cugir\/wms\"}",
40
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":[{\"url\":\"https://cugir-data.s3.amazonaws.com/00/79/50/cugir-007950.zip\",\"label\":\"Shapefile\"},{\"url\":\"https://cugir-data.s3.amazonaws.com/00/79/50/agBROO.pdf\",\"label\":\"PDF\"},{\"url\":\"https://cugir-data.s3.amazonaws.com/00/79/50/agBROO2011.kmz\",\"label\":\"KMZ\"}],\"http://www.opengis.net/cat/csw/csdgm\":\"https://cugir-data.s3.amazonaws.com/00/79/50/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://cugir-data.s3.amazonaws.com/00/79/50/fgdc.html\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://cugir.library.cornell.edu/geoserver/cugir/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://cugir.library.cornell.edu/geoserver/cugir/wms\"}",
40
41
  "id": "cugir-007950",
41
42
  "gbl_mdModified_dt": "2021-06-11T18:39:49Z",
42
43
  "gbl_mdVersion_s": "Aardvark"
@@ -4,7 +4,7 @@
4
4
  "no_spatial"
5
5
  ],
6
6
  "dct_description_sm": [
7
- "File without geometry type or solr_geometry (will cause error). ",
7
+ "File without geometry type or locn_geometry (will cause error). ",
8
8
  "The Advanced Spaceborne Thermal Emission and Reflection radiometer Global Emissivity Database (ASTER GED) was developed by the National Aeronautics and Space Administration's (NASA) Jet Propulsion Laboratory (JPL), California Institute of Technology. The North America portion of this collection was formerly called the North American ASTER Land Surface Emissivity Database (NAALSED) - a seasonal dataset consisting of mean summer (J-A-S) and winter (J-F-M) products. ASTER GED products are output on 1degree x 1 degree grids at 100-meter or 1-kilometer spatial resolution (nominal) and include the mean emissivity and standard deviation for all 5 ASTER thermal infrared bands, mean land surface temperature (LST) and standard deviation, a re-sampled ASTER GDEM (not included in the North America Winter products), land-water mask, mean Normalized Difference Vegetation Index (NDVI) and standard deviation, latitude, longitude, and observation count. Additional ASTER GED product information is available at https://lpdaac.usgs.gov/products/community_products_table. Product tiles are available in HDF and binary format and may be downloaded via HTTP by visiting the following data clients: NASA Reverb (http://reverb.echo.nasa.gov), LP DAAC Data Pool (http://e4ftl01.cr.usgs.gov/ASTT/), or EarthExplorer (http://earthexplorer.usgs.gov)."
9
9
  ],
10
10
  "schema_provider_s": "U.S. Geological Survey, Department of the Interior",
@@ -22,9 +22,6 @@
22
22
  "Image map",
23
23
  "Emissivity"
24
24
  ],
25
- "dcat_theme_sm": [
26
- "Imagery and Base Maps"
27
- ],
28
25
  "dcat_keyword_sm": [
29
26
  "GBL Fixture records"
30
27
  ],
@@ -28,7 +28,8 @@
28
28
  "Japan"
29
29
  ],
30
30
  "locn_geometry": "ENVELOPE(138.523426,138.630362,36.656354,36.597519)",
31
- "dcat_centroid_ss": "36.6269365,138.57689399999998",
31
+ "dcat_bbox": "ENVELOPE(138.523426,138.630362,36.656354,36.597519)",
32
+ "dcat_centroid": "36.6269365,138.57689399999998",
32
33
  "dct_accessRights_s": "Public",
33
34
  "dct_format_s": "JPEG",
34
35
  "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/dc482zx1528\",\"https://oembed.com\":\"https://purl.stanford.edu/embed.json?&hide_title=true&url=https://purl.stanford.edu/dc482zx1528\"}",
@@ -4,7 +4,7 @@
4
4
  "princeton-child1"
5
5
  ],
6
6
  "dct_description_sm": [
7
- "Child record for testing the suppressed_b property. ",
7
+ "Child record for testing the gbl_suppressed_b property. ",
8
8
  "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
9
  ],
10
10
  "dct_language_sm": [
@@ -28,7 +28,8 @@
28
28
  "GBL Fixture records"
29
29
  ],
30
30
  "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
31
- "dcat_centroid_ss": "40.349999999999994,-74.655",
31
+ "dcat_bbox": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
32
+ "dcat_centroid": "40.349999999999994,-74.655",
32
33
  "dct_source_sm": [
33
34
  "princeton-1r66j405w"
34
35
  ],
@@ -4,7 +4,7 @@
4
4
  "princeton-child2"
5
5
  ],
6
6
  "dct_description_sm": [
7
- "Child record for testing the suppressed_b property. ",
7
+ "Child record for testing the gbl_suppressed_b property. ",
8
8
  "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
9
  ],
10
10
  "dct_language_sm": [
@@ -28,7 +28,8 @@
28
28
  "GBL Fixture records"
29
29
  ],
30
30
  "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
31
- "dcat_centroid_ss": "40.349999999999994,-74.655",
31
+ "dcat_bbox": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
32
+ "dcat_centroid": "40.349999999999994,-74.655",
32
33
  "dct_source_sm": [
33
34
  "princeton-1r66j405w"
34
35
  ],
@@ -28,7 +28,8 @@
28
28
  "GBL Fixture records"
29
29
  ],
30
30
  "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
31
- "dcat_centroid_ss": "40.349999999999994,-74.655",
31
+ "dcat_bbox": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
32
+ "dcat_centroid": "40.349999999999994,-74.655",
32
33
  "dct_source_sm": [
33
34
  "princeton-1r66j405w"
34
35
  ],
@@ -4,7 +4,7 @@
4
4
  "princeton-child4"
5
5
  ],
6
6
  "dct_description_sm": [
7
- "Child record for testing the suppressed_b property. ",
7
+ "Child record for testing the gbl_suppressed_b property. ",
8
8
  "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
9
  ],
10
10
  "dct_language_sm": [
@@ -28,7 +28,8 @@
28
28
  "GBL Fixture records"
29
29
  ],
30
30
  "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
31
- "dcat_centroid_ss": "40.349999999999994,-74.655",
31
+ "dcat_bbox": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
32
+ "dcat_centroid": "40.349999999999994,-74.655",
32
33
  "dct_source_sm": [
33
34
  "princeton-1r66j405w"
34
35
  ],
@@ -4,7 +4,7 @@
4
4
  "princeton-parent"
5
5
  ],
6
6
  "dct_description_sm": [
7
- "Parent record for testing the suppressed_b property. ",
7
+ "Parent record for testing the gbl_suppressed_b property. ",
8
8
  "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
9
  ],
10
10
  "dct_language_sm": [
@@ -14,7 +14,8 @@
14
14
  "Sanborn Map Company"
15
15
  ],
16
16
  "dct_publisher_sm": [
17
- "New York : Sanborn Map & Publishing Co., Limited, 1885."
17
+ "New York : Sanborn Map & Publishing Co., Limited, 1885.",
18
+ "Princeton University Library"
18
19
  ],
19
20
  "schema_provider_s": "Princeton",
20
21
  "gbl_resourceClass_sm": [
@@ -34,7 +35,8 @@
34
35
  "[1885 TO 1885]"
35
36
  ],
36
37
  "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
37
- "dcat_centroid_ss": "40.350,-74.655",
38
+ "dcat_bbox": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
39
+ "dcat_centroid": "40.350,-74.655",
38
40
  "dct_accessRights_s": "Public",
39
41
  "gbl_wxsIdentifier_s": "ark:/88435/1r66j405w",
40
42
  "dct_references_s": "{\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/5a%2F20%2F58%2F5a20585db50d44959fe5ae44821fd174%2Fintermediate_file.jp2/info.json\",\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/9a193476-5f2e-4f82-95a5-6db472e39b7b/manifest\"}",
@@ -44,7 +44,8 @@
44
44
  "Uganda"
45
45
  ],
46
46
  "locn_geometry": "ENVELOPE(29.572742,35.000308,4.234077,-1.478794)",
47
- "dcat_centroid_ss": "1.3776415000000002,32.286525",
47
+ "dcat_bbox": "ENVELOPE(29.572742,35.000308,4.234077,-1.478794)",
48
+ "dcat_centroid": "1.3776415000000002,32.286525",
48
49
  "dct_rights_sm": [
49
50
  "This item is in the public domain. There are no restrictions on use."
50
51
  ],
@@ -47,11 +47,12 @@
47
47
  "Pennsylvania"
48
48
  ],
49
49
  "locn_geometry": "ENVELOPE(-76.3394,-72.1916,46.5798,38.6693)",
50
- "dcat_centroid_ss": "42.62455,-74.2655",
50
+ "dcat_bbox": "ENVELOPE(-76.3394,-72.1916,46.5798,38.6693)",
51
+ "dcat_centroid": "42.62455,-74.2655",
51
52
  "dct_accessRights_s": "Public",
52
53
  "dct_format_s": "Raster",
53
54
  "gbl_wxsIdentifier_s": "02870w62c",
54
- "dct_references_s": "{\"http://iiif.io/api/image\":\"https://libimages.princeton.edu/loris/pudl0076/map_pownall/00000001.jp2/info.json\",\"http://schema.org/url\":\"http://arks.princeton.edu/ark:/88435/02870w62c\"}",
55
+ "dct_references_s": "{\"http://iiif.io/api/image\":\"https://iiif-cloud.princeton.edu/iiif/2/6c%2F52%2F12%2F6c5212e81bc845f59bb1cdc740a88bad%2Fintermediate_file/info.json\",\"http://schema.org/url\":\"http://arks.princeton.edu/ark:/88435/02870w62c\"}",
55
56
  "id": "princeton-02870w62c",
56
57
  "dct_identifier_sm": [
57
58
  "http://arks.princeton.edu/ark:/88435/02870w62c"
@@ -32,7 +32,8 @@
32
32
  "Massachusetts"
33
33
  ],
34
34
  "locn_geometry": "ENVELOPE(-73.533237,-69.898565,42.888068,41.230345)",
35
- "dcat_centroid_ss": "42.0592065,-71.715901",
35
+ "dcat_bbox": "ENVELOPE(-73.533237,-69.898565,42.888068,41.230345)",
36
+ "dcat_centroid": "42.0592065,-71.715901",
36
37
  "dct_accessRights_s": "Public",
37
38
  "dct_format_s": "Shapefile",
38
39
  "gbl_wxsIdentifier_s": "mit:SDE_DATA_US_MA_E25ZCTA5DCT_2000",
@@ -51,7 +51,8 @@
51
51
  "Mendocino County (Calif.)"
52
52
  ],
53
53
  "locn_geometry": "ENVELOPE(-123.387366,-122.52958,39.398403,38.302994)",
54
- "dcat_centroid_ss": "38.8506985,-122.958473",
54
+ "dcat_bbox": "ENVELOPE(-123.387366,-122.52958,39.398403,38.302994)",
55
+ "dcat_centroid": "38.8506985,-122.958473",
55
56
  "dct_rights_sm": [
56
57
  "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"
57
58
  ],
@@ -0,0 +1,48 @@
1
+ {
2
+ "gbl_mdVersion_s": "Aardvark",
3
+ "dct_identifier_sm": [
4
+ "ark:/99999/fk4544658v"
5
+ ],
6
+ "id": "princeton-fk4544658v-tilejson",
7
+ "dct_title_s": "The Balkans [and] Turkey : G.S.G.S. no. 2097 / War Office. General Staff. Geographical Section (TileJSON Fixture)",
8
+ "locn_geometry": "ENVELOPE(19.333333, 29.333333, 43.083333, 39.75)",
9
+ "dcat_bbox": "ENVELOPE(19.333333, 29.333333, 43.083333, 39.75)",
10
+ "schema_provider_s": "Princeton",
11
+ "dct_accessRights_s": "Public",
12
+ "dct_description_sm": [
13
+ "Relief shown by contours approximately 100 feet interval, spot heights, and shading. Title varies; some sheets are titled \"Turkey\". Shows international boundaries, railways, 2 categories of roads, telegraph lines, places of worship, ruins. Constantinople latest edition map has a glossary."
14
+ ],
15
+ "dct_creator_sm": [
16
+ "Great Britain. War Office. General Staff. Geographical Section"
17
+ ],
18
+ "dct_language_sm": [
19
+ "eng"
20
+ ],
21
+ "dct_publisher_sm": [
22
+ "[London] : War Office. General Staff. Geographical Section. General Staff, 1908-25."
23
+ ],
24
+ "dct_subject_sm": [
25
+ "Balkan Peninsula Maps",
26
+ "Turkey Maps",
27
+ "Topographic Maps"
28
+ ],
29
+ "dct_spatial_sm": [
30
+ "Balkan Peninsula",
31
+ "Turkey"
32
+ ],
33
+ "dct_issued_s": 1908,
34
+ "gbl_indexYear_im": [
35
+ "1908"
36
+ ],
37
+ "gbl_mdModified_dt": "2022-02-03T22:13:40Z",
38
+ "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/99125413918506421\",\"http://schema.org/thumbnailUrl\":\"https://figgy-staging.princeton.edu/downloads/6b55d939-7188-4bce-9550-0ac535441f22/file/9042b887-da2e-4aa9-9ca5-d3ba77f440c4\",\"http://iiif.io/api/image\":\"https://iiif-cloud-staging.princeton.edu/iiif/2/05%2F71%2F04%2F0571046f9c7149a3b950899323f70788%2Fintermediate_file/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy-staging.princeton.edu/concern/scanned_maps/2a91d82c-541c-426c-b787-cc62afe8f248/manifest\",\"https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames\":\"https://map-tiles-staging.princeton.edu/mosaicjson/tiles/WebMercatorQuad/{z}/{x}/{y}@1x.png?id=2a91d82c541c426cb787cc62afe8f248\",\"https://github.com/mapbox/tilejson-spec\":\"https://map-tiles-staging.princeton.edu/mosaicjson/tilejson.json?id=2a91d82c541c426cb787cc62afe8f248\"}",
39
+ "layer_geom_type_s": "Image",
40
+ "gbl_resourceClass_sm": [
41
+ "Maps",
42
+ "Web services"
43
+ ],
44
+ "gbl_resourceType_sm": [
45
+ "Military maps",
46
+ "Topographic maps"
47
+ ]
48
+ }
@@ -1,45 +1,42 @@
1
1
  {
2
- "dct_title_s": "Quaternary Fault and Fold Database of the United States",
2
+ "dct_title_s": "Agricultural Districts, Columbia County NY, 2009 (TMS)",
3
3
  "dct_alternative_sm": [
4
4
  "tms"
5
5
  ],
6
6
  "dct_description_sm": [
7
- "Quaternary Fault and Fold Database of the United States"
7
+ "These GIS files represent geographic boundaries for lands that are under the protection of NYS Agricultural District Law, administered by the New York State Department of Agriculture and Markets. The boundaries are derived from New York State Agricultural District, 1:24,000-scale, maps produced at county agencies. The district boundaries correspond to tax parcel data. District boundaries are joined into a file representing all of the Agricultural Districts within an entire county. Note that 2003 legislation allows lands to be added to districts on an annual basis. Electronic data provided here may predate those additions. Tax parcel detail and secondary rights-of-way are not included in this dataset. Rights-of-way for state and federal highways, railroads and utilities are only included when they are delineated on the original 1:24,000 scale maps. The data files are in ArcGIS shapefile format. A Geographic Information System (ArcGIS) file intended to represent the lands within agricultural district. Please note that boundaries may be generalizations; precise information can be obtained from the county or town tax parcel information."
8
8
  ],
9
9
  "dct_language_sm": [
10
10
  "eng"
11
11
  ],
12
- "dct_publisher_sm": [
13
- "Geological Survey (U.S.)"
14
- ],
15
- "schema_provider_s": "Stanford",
12
+ "schema_provider_s": "Cornell",
16
13
  "gbl_resourceClass_sm": [
17
14
  "Datasets"
18
15
  ],
19
16
  "gbl_resourceType_sm": [
20
- "Polyline data"
17
+ "Polygon"
21
18
  ],
22
19
  "dct_subject_sm": [
23
- "Earthquakes",
24
- "Faults"
20
+ "New York State Agricultural District boundaries",
21
+ "Agriculture and Markets",
22
+ "Agricultural Districts Mapping Program"
25
23
  ],
26
24
  "dcat_keyword_sm": [
27
25
  "GBL Fixture records"
28
26
  ],
29
27
  "dct_temporal_sm": [
30
- "2020"
28
+ "2009"
31
29
  ],
32
- "dct_issued_s": "1905-07-12",
30
+ "dct_issued_s": "2009-02-13",
33
31
  "dct_spatial_sm": [
34
- "Earth (Planet)",
35
- "North America"
32
+ "Columbia County NY"
36
33
  ],
37
- "locn_geometry": "ENVELOPE(-156.02,-70.8,65.59,18.93)",
38
- "dcat_centroid_ss": "42.260000000000005,-113.41",
34
+ "locn_geometry": "ENVELOPE(-73.918247, -73.367, 42.507614, 41.978298)",
35
+ "dcat_bbox": "ENVELOPE(-73.918247, -73.367, 42.507614, 41.978298)",
39
36
  "dct_accessRights_s": "Public",
40
37
  "dct_format_s": "Shapefile",
41
- "dct_references_s": "{\"http://schema.org/url\":\"https://www.usgs.gov/natural-hazards/earthquake-hazards/faults\",\"https://wiki.osgeo.org/wiki/Tile_Map_Service_Specification\":\"https://earthquake.usgs.gov/basemap/tiles/faults/{z}/{x}/{y}.png\",\"http://schema.org/downloadUrl\":\"https://earthquake.usgs.gov/static/lfs/nshm/qfaults/Qfaults_GIS.zip\"}",
42
- "id": "6f47b103-9955-4bbe-a364-387039623106",
43
- "gbl_mdModified_dt": "2021-06-11T18:44:16Z",
38
+ "dct_references_s": "{\"https://wiki.osgeo.org/wiki/Tile_Map_Service_Specification\":\"https://cugir.library.cornell.edu/geoserver/gwc/service/tms/1.0.0/cugir%3Acugir007957@EPSG%3A3857@png/{z}/{x}/{y}.png\",\"http://schema.org/downloadUrl\":\"https://cugir-data.s3.amazonaws.com/00/79/57/cugir-007957.zip\"}",
39
+ "id": "cugir-007957",
40
+ "gbl_mdModified_dt": "2019-05-24T23:12:06.151Z",
44
41
  "gbl_mdVersion_s": "Aardvark"
45
42
  }
@@ -25,7 +25,7 @@
25
25
  "Polygon data"
26
26
  ],
27
27
  "dcat_theme_sm": [
28
- "Planning and Cadastral"
28
+ "Property"
29
29
  ],
30
30
  "dcat_keyword_sm": [
31
31
  "GBL Fixture records"
@@ -35,7 +35,8 @@
35
35
  ],
36
36
  "dct_issued_s": "2015-10-01",
37
37
  "gbl_indexYear_im": [
38
- "2014"
38
+ "2014",
39
+ "2030"
39
40
  ],
40
41
  "gbl_dateRange_drsim": [
41
42
  "[2014 TO 2014]"
@@ -44,7 +45,8 @@
44
45
  "Minnesota"
45
46
  ],
46
47
  "locn_geometry": "ENVELOPE(-94.012,-92.732,45.415,44.471)",
47
- "dcat_centroid_ss": "44.943,-93.372",
48
+ "dcat_bbox": "ENVELOPE(-94.012,-92.732,45.415,44.471)",
49
+ "dcat_centroid": "44.943,-93.372",
48
50
  "dct_accessRights_s": "Public",
49
51
  "dct_format_s": "Shapefile",
50
52
  "dct_references_s": "{\"http://schema.org/downloadUrl\":\"ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_metc/plan_frmwrk2030dev_plan_ar2011/shp_plan_frmwrk2030dev_plan_ar2011.zip\",\"urn:x-esri:serviceType:ArcGIS#FeatureLayer\":\"https://arcgis.metc.state.mn.us/server/rest/services/GISLibrary/Framework2030PlanningAreas2011/FeatureServer/0\",\"http://schema.org/url\":\"https://gisdata.mn.gov/dataset/02236876-9c21-42f6-9870-d2562da8e44f\"}",
@@ -24,7 +24,7 @@
24
24
  "Raster data"
25
25
  ],
26
26
  "dcat_theme_sm": [
27
- "Imagery and Base Maps"
27
+ "Imagery"
28
28
  ],
29
29
  "dcat_keyword_sm": [
30
30
  "GBL Fixture records"
@@ -43,7 +43,8 @@
43
43
  "Minnesota"
44
44
  ],
45
45
  "locn_geometry": "ENVELOPE(-97.612501,-88.842351,49.464145,42.906949)",
46
- "dcat_centroid_ss": "46.185547,-93.227426",
46
+ "dcat_bbox": "ENVELOPE(-97.612501,-88.842351,49.464145,42.906949)",
47
+ "dcat_centroid": "46.185547,-93.227426",
47
48
  "dct_accessRights_s": "Public",
48
49
  "dct_format_s": "ArcGRID",
49
50
  "dct_references_s": "{\"http://schema.org/downloadUrl\":\"ftp://gdrs.dnr.state.mn.us/gdrs/data/pub/us_mn_state_dnr/fgdb_base_usgs_scanned_topo_100k_drg.zip\",\"http://schema.org/url\":\"https://gisdata.mn.gov/dataset/2eddde2f-c222-41ca-bd07-2fd74a21f4de\"}",
@@ -24,14 +24,11 @@
24
24
  "Raster data"
25
25
  ],
26
26
  "dcat_theme_sm": [
27
- "Imagery and Base Maps"
27
+ "Imagery"
28
28
  ],
29
29
  "dcat_keyword_sm": [
30
30
  "GBL Fixture records"
31
31
  ],
32
- "dct_isPartOf_sm": [
33
- "Minnesota Geospatial Commons"
34
- ],
35
32
  "dct_temporal_sm": [
36
33
  "1998"
37
34
  ],
@@ -46,7 +43,8 @@
46
43
  "Minnesota"
47
44
  ],
48
45
  "locn_geometry": "ENVELOPE(-97.991522,-87.177541,49.892443,42.891013)",
49
- "dcat_centroid_ss": "46.391728,-92.5845315",
46
+ "dcat_bbox": "ENVELOPE(-97.991522,-87.177541,49.892443,42.891013)",
47
+ "dcat_centroid": "46.391728,-92.5845315",
50
48
  "dct_accessRights_s": "Public",
51
49
  "dct_format_s": "GeoTIFF",
52
50
  "dct_references_s": "{\"http://schema.org/downloadUrl\":\"ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/base_usgs_scanned_topo_250k_drg/fgdb_base_usgs_scanned_topo_250k_drg.zip\",\"http://schema.org/url\":\"https://gisdata.mn.gov/dataset/e9c71086-6b25-4950-8e1c-84c2794e3382\"}",
@@ -34,7 +34,8 @@
34
34
  "[2015 TO 2018]"
35
35
  ],
36
36
  "locn_geometry": "ENVELOPE(-76.346,-76.176,36.971,36.82)",
37
- "dcat_centroid_ss": "36.8955,-76.261",
37
+ "dcat_bbox": "ENVELOPE(-76.346,-76.176,36.971,36.82)",
38
+ "dcat_centroid": "36.8955,-76.261",
38
39
  "dct_accessRights_s": "Public",
39
40
  "dct_format_s": "Shapefile",
40
41
  "gbl_wxsIdentifier_s": "Norfolk:police_point",
@@ -0,0 +1,41 @@
1
+ {
2
+ "gbl_mdVersion_s": "Aardvark",
3
+ "dct_identifier_sm": [
4
+ "ark:/99999/fk4db9hn29"
5
+ ],
6
+ "id": "princeton-fk4db9hn29",
7
+ "dct_title_s": "Orthofoto 2016 Wien (WMTS)",
8
+ "locn_geometry": "ENVELOPE(16.133423, 16.626434, 48.3348, 48.106056)",
9
+ "dcat_bbox": "ENVELOPE(16.133423, 16.626434, 48.3348, 48.106056)",
10
+ "schema_provider_s": "Princeton",
11
+ "dct_accessRights_s": "Public",
12
+ "dct_description_sm": [
13
+ "The Vienna orthophoto from the year 2016 covers the entire city area with a pixel size of 15 centimeters. The aerial images were taken on 18th and 27th of March and 5th of April 2016."
14
+ ],
15
+ "dct_creator_sm": [
16
+ "Magistrat Wien - Magistratsabteilung 41 - Stadtvermessung"
17
+ ],
18
+ "dct_spatial_sm": [
19
+ "Vienna",
20
+ "Austria"
21
+ ],
22
+ "dct_temporal_sm": [
23
+ "2022"
24
+ ],
25
+ "gbl_indexYear_im": [
26
+ "2022"
27
+ ],
28
+ "gbl_mdModified_dt": "2022-02-04T22:13:37Z",
29
+ "gbl_wxsIdentifier_s": "lb2016",
30
+ "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wmts\":\"https://maps.wien.gv.at/wmts/1.0.0/WMTSCapabilities.xml\"}",
31
+ "layer_geom_type_s": "Raster",
32
+ "gbl_resourceClass_sm": [
33
+ "Imagery"
34
+ ],
35
+ "gbl_resourceType_sm": [
36
+ "Aerial photographs",
37
+ "Raster data"
38
+ ],
39
+ "dct_format_s": "GeoTIFF",
40
+ "dct_issued_s": "2016-01-01T00:00:00Z"
41
+ }
@@ -0,0 +1,48 @@
1
+ {
2
+ "gbl_mdVersion_s": "Aardvark",
3
+ "dct_identifier_sm": [
4
+ "ark:/99999/fk4544658v"
5
+ ],
6
+ "id": "princeton-fk4544658v-wmts",
7
+ "dct_title_s": "The Balkans [and] Turkey : G.S.G.S. no. 2097 / War Office. General Staff. Geographical Section (WMTS Fixture)",
8
+ "locn_geometry": "ENVELOPE(19.333333, 29.333333, 43.083333, 39.75)",
9
+ "dcat_bbox": "ENVELOPE(19.333333, 29.333333, 43.083333, 39.75)",
10
+ "schema_provider_s": "Princeton",
11
+ "dct_accessRights_s": "Public",
12
+ "dct_description_sm": [
13
+ "Relief shown by contours approximately 100 feet interval, spot heights, and shading. Title varies; some sheets are titled \"Turkey\". Shows international boundaries, railways, 2 categories of roads, telegraph lines, places of worship, ruins. Constantinople latest edition map has a glossary."
14
+ ],
15
+ "dct_creator_sm": [
16
+ "Great Britain. War Office. General Staff. Geographical Section"
17
+ ],
18
+ "dct_language_sm": [
19
+ "eng"
20
+ ],
21
+ "dct_publisher_sm": [
22
+ "[London] : War Office. General Staff. Geographical Section. General Staff, 1908-25."
23
+ ],
24
+ "dct_subject_sm": [
25
+ "Balkan Peninsula Maps",
26
+ "Turkey Maps",
27
+ "Topographic Maps"
28
+ ],
29
+ "dct_spatial_sm": [
30
+ "Balkan Peninsula",
31
+ "Turkey"
32
+ ],
33
+ "dct_issued_s": 1908,
34
+ "gbl_indexYear_im": [
35
+ "1908"
36
+ ],
37
+ "gbl_mdModified_dt": "2022-02-03T22:13:40Z",
38
+ "gbl_wxsIdentifier_s": "mosaic",
39
+ "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/99125413918506421\",\"http://schema.org/thumbnailUrl\":\"https://figgy-staging.princeton.edu/downloads/6b55d939-7188-4bce-9550-0ac535441f22/file/9042b887-da2e-4aa9-9ca5-d3ba77f440c4\",\"http://iiif.io/api/image\":\"https://iiif-cloud-staging.princeton.edu/iiif/2/05%2F71%2F04%2F0571046f9c7149a3b950899323f70788%2Fintermediate_file/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy-staging.princeton.edu/concern/scanned_maps/2a91d82c-541c-426c-b787-cc62afe8f248/manifest\",\"http://www.opengis.net/def/serviceType/ogc/wmts\":\"https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?id=2a91d82c541c426cb787cc62afe8f248\"}",
40
+ "gbl_resourceClass_sm": [
41
+ "Maps",
42
+ "Web services"
43
+ ],
44
+ "gbl_resourceType_sm": [
45
+ "Military maps",
46
+ "Topographic maps"
47
+ ]
48
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "dct_identifier_sm": [
3
+ "6f47b103-9955-4bbe-a364-387039623106"
4
+ ],
5
+ "dct_title_s": "Quaternary Fault and Fold Database of the United States (XYZ)",
6
+ "dct_description_sm":[
7
+ "Quaternary Fault and Fold Database of the United States"
8
+ ],
9
+ "dct_accessRights_s": "Public",
10
+ "schema_provider_s": "Stanford",
11
+ "dct_references_s": "{\"http://schema.org/url\":\"https://www.usgs.gov/natural-hazards/earthquake-hazards/faults\",\"https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames\":\"https://earthquake.usgs.gov/basemap/tiles/faults/{z}/{x}/{y}.png\",\"http://schema.org/downloadUrl\":\"https://earthquake.usgs.gov/static/lfs/nshm/qfaults/Qfaults_GIS.zip\"}",
12
+ "id": "6f47b103-9955-4bbe-a364-387039623106-xyz",
13
+ "gbl_resourceClass_sm": [
14
+ "Datasets",
15
+ "Web services"
16
+ ],
17
+ "gbl_resourceType_sm": [
18
+ "Line data"
19
+ ],
20
+ "dct_format_s": "Shapefile",
21
+ "dct_language_sm": [
22
+ "eng"
23
+ ],
24
+ "dct_publisher_sm": [
25
+ "Geological Survey (U.S.)"
26
+ ],
27
+ "dct_subject_sm": [
28
+ "Earthquakes",
29
+ "Faults"
30
+ ],
31
+ "dct_issued_s": 2020,
32
+ "gbl_indexYear_im": [
33
+ "2020"
34
+ ],
35
+ "dct_temporal_sm": [
36
+ "2020"
37
+ ],
38
+ "dct_spatial_sm": [
39
+ "Earth (Planet)",
40
+ "North America"
41
+ ],
42
+ "locn_geometry": "ENVELOPE(-156.02, -70.80, 65.59, 18.93)",
43
+ "dcat_bbox": "ENVELOPE(-156.02, -70.80, 65.59, 18.93)",
44
+ "gbl_mdModified_dt": "2021-06-11T17:55:01Z",
45
+ "gbl_mdVersion_s": "Aardvark"
46
+ }