geoblacklight 4.0.0.pre.alpha.2 → 4.0.0.pre.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE.md +1 -1
  3. data/.github/workflows/ruby.yml +27 -103
  4. data/.gitignore +1 -0
  5. data/.rubocop.yml +6 -6
  6. data/.rubocop_todo.yml +0 -3
  7. data/.solr_wrapper +2 -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/parent-item.svg +3 -0
  17. data/app/assets/images/blacklight/university-of-colorado-boulder.svg +6 -0
  18. data/app/assets/images/blacklight/websites.svg +4 -0
  19. data/app/assets/javascripts/geoblacklight/controls/fullscreen.js +8 -0
  20. data/app/assets/javascripts/geoblacklight/geoblacklight.js +2 -1
  21. data/app/assets/javascripts/geoblacklight/viewers/esri.js +1 -0
  22. data/app/assets/javascripts/geoblacklight/viewers/index_map.js +1 -0
  23. data/app/assets/javascripts/geoblacklight/viewers/tilejson.js +33 -0
  24. data/app/assets/javascripts/geoblacklight/viewers/tms.js +2 -2
  25. data/app/assets/javascripts/geoblacklight/viewers/viewer.js +3 -0
  26. data/app/assets/javascripts/geoblacklight/viewers/wms.js +2 -2
  27. data/app/assets/javascripts/geoblacklight/viewers/wmts.js +85 -0
  28. data/app/assets/javascripts/geoblacklight/viewers/xyz.js +10 -0
  29. data/app/assets/stylesheets/geoblacklight/geoblacklight.scss +1 -0
  30. data/app/assets/stylesheets/geoblacklight/modules/_base.scss +0 -1
  31. data/app/assets/stylesheets/geoblacklight/modules/_styles.scss +5 -1
  32. data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +20 -47
  33. data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +68 -0
  34. data/app/assets/stylesheets/geoblacklight/modules/item.scss +16 -0
  35. data/app/assets/stylesheets/geoblacklight/modules/modal.scss +6 -0
  36. data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +4 -0
  37. data/app/components/geoblacklight/icon_facet_item_component.rb +33 -0
  38. data/app/helpers/geoblacklight_helper.rb +6 -45
  39. data/app/models/concerns/geoblacklight/bbox_filter_field.rb +64 -0
  40. data/app/models/concerns/geoblacklight/bbox_filter_query.rb +50 -0
  41. data/app/models/concerns/geoblacklight/solr_document.rb +1 -1
  42. data/app/models/concerns/geoblacklight/suppressed_records_search_behavior.rb +31 -0
  43. data/app/presenters/geoblacklight/bbox_item_presenter.rb +9 -0
  44. data/app/views/catalog/_downloads_collapse.html.erb +27 -0
  45. data/app/views/catalog/_header_icons.html.erb +2 -2
  46. data/app/views/catalog/_index_split_default.html.erb +2 -2
  47. data/app/views/catalog/_show_default_viewer_container.html.erb +17 -0
  48. data/app/views/catalog/_show_downloads.html.erb +10 -21
  49. data/app/views/catalog/_show_sidebar.html.erb +3 -0
  50. data/app/views/catalog/_show_web_services.html.erb +11 -0
  51. data/app/views/catalog/_web_services.html.erb +3 -2
  52. data/app/views/catalog/web_services.html.erb +1 -1
  53. data/app/views/shared/_header_navbar.html.erb +13 -3
  54. data/config/locales/geoblacklight.en.yml +5 -1
  55. data/geoblacklight.gemspec +7 -7
  56. data/lib/generators/geoblacklight/install_generator.rb +1 -1
  57. data/lib/generators/geoblacklight/templates/assets/_customizations.scss +5 -4
  58. data/lib/generators/geoblacklight/templates/assets/application.scss +0 -3
  59. data/lib/generators/geoblacklight/templates/catalog_controller.rb +86 -57
  60. data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +5 -5
  61. data/lib/generators/geoblacklight/templates/settings.yml +43 -25
  62. data/lib/geoblacklight/bounding_box.rb +5 -1
  63. data/lib/geoblacklight/constants.rb +3 -0
  64. data/lib/geoblacklight/engine.rb +3 -2
  65. data/lib/geoblacklight/faraday_middleware/follow_redirects.rb +176 -0
  66. data/lib/geoblacklight/item_viewer.rb +13 -1
  67. data/lib/geoblacklight/metadata/base.rb +2 -1
  68. data/lib/geoblacklight/version.rb +1 -1
  69. data/lib/geoblacklight/view_helper_override.rb +2 -28
  70. data/lib/geoblacklight.rb +0 -10
  71. data/lib/tasks/geoblacklight.rake +1 -1
  72. data/schema/geoblacklight-schema-aardvark.json +3 -23
  73. data/solr/conf/schema.xml +37 -43
  74. data/solr/conf/solrconfig.xml +17 -17
  75. data/spec/components/geoblacklight/icon_facet_item_component_spec.rb +17 -0
  76. data/spec/config/initializers/rails_config_spec.rb +1 -1
  77. data/spec/controllers/catalog_controller_spec.rb +1 -1
  78. data/spec/controllers/wms_controller_spec.rb +1 -1
  79. data/spec/features/download_layer_spec.rb +31 -14
  80. data/spec/features/esri_viewer_spec.rb +5 -1
  81. data/spec/features/full_screen_controll_spec.rb +15 -0
  82. data/spec/features/home_page_spec.rb +2 -2
  83. data/spec/features/index_map_spec.rb +2 -2
  84. data/spec/features/missing_metadata_spec.rb +1 -1
  85. data/spec/features/multiple_downloads_spec.rb +2 -1
  86. data/spec/features/relations_spec.rb +12 -1
  87. data/spec/features/saved_searches_spec.rb +1 -1
  88. data/spec/features/search_results_complex_geometry_spec.rb +24 -0
  89. data/spec/features/search_results_icons_spec.rb +16 -0
  90. data/spec/features/search_results_map_spec.rb +2 -2
  91. data/spec/features/search_spec.rb +17 -0
  92. data/spec/features/show_page_download_spec.rb +29 -0
  93. data/spec/features/show_page_metadata_spec.rb +2 -2
  94. data/spec/features/split_view.html.erb_spec.rb +12 -1
  95. data/spec/features/tilejson_spec.rb +22 -0
  96. data/spec/features/tms_spec.rb +2 -2
  97. data/spec/features/web_services_modal_spec.rb +35 -2
  98. data/spec/features/wmts_spec.rb +34 -0
  99. data/spec/features/xyz_spec.rb +10 -0
  100. data/spec/fixtures/manifests/tilejson.json +21 -0
  101. data/spec/fixtures/manifests/wmts-multiple.xml +813 -0
  102. data/spec/fixtures/manifests/wmts-single.xml +126 -0
  103. data/spec/fixtures/solr_documents/README.md +46 -43
  104. data/spec/fixtures/solr_documents/actual-papermap1.json +2 -1
  105. data/spec/fixtures/solr_documents/actual-point1.json +2 -1
  106. data/spec/fixtures/solr_documents/actual-polygon1.json +2 -1
  107. data/spec/fixtures/solr_documents/actual-raster1.json +3 -2
  108. data/spec/fixtures/solr_documents/b1g_wabash_child_15.json +62 -0
  109. data/spec/fixtures/solr_documents/b1g_wabash_child_16.json +64 -0
  110. data/spec/fixtures/solr_documents/b1g_wabash_child_17.json +62 -0
  111. data/spec/fixtures/solr_documents/b1g_wabash_child_18.json +62 -0
  112. data/spec/fixtures/solr_documents/b1g_wabash_parent.json +59 -0
  113. data/spec/fixtures/solr_documents/baruch_ancestor1.json +2 -1
  114. data/spec/fixtures/solr_documents/baruch_ancestor2.json +2 -1
  115. data/spec/fixtures/solr_documents/baruch_documentation_download.json +1 -1
  116. data/spec/fixtures/solr_documents/bbox-spans-180.json +2 -1
  117. data/spec/fixtures/solr_documents/cornell_html_metadata.json +4 -3
  118. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +3 -2
  119. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +3 -2
  120. data/spec/fixtures/solr_documents/esri-feature-layer.json +2 -1
  121. data/spec/fixtures/solr_documents/esri-image-map-layer.json +3 -2
  122. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +2 -1
  123. data/spec/fixtures/solr_documents/esri-wms-layer.json +2 -1
  124. data/spec/fixtures/solr_documents/harvard_raster.json +3 -2
  125. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +3 -2
  126. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +2 -1
  127. data/spec/fixtures/solr_documents/index-map-polygon.json +2 -1
  128. data/spec/fixtures/solr_documents/index-map-stanford.json +2 -1
  129. data/spec/fixtures/solr_documents/index_map_point.json +3 -2
  130. data/spec/fixtures/solr_documents/metadata_no_provider.json +2 -1
  131. data/spec/fixtures/solr_documents/multiple-downloads.json +3 -2
  132. data/spec/fixtures/solr_documents/no_spatial.json +1 -4
  133. data/spec/fixtures/solr_documents/oembed.json +2 -1
  134. data/spec/fixtures/solr_documents/princeton-child1.json +3 -2
  135. data/spec/fixtures/solr_documents/princeton-child2.json +3 -2
  136. data/spec/fixtures/solr_documents/princeton-child3.json +2 -1
  137. data/spec/fixtures/solr_documents/princeton-child4.json +3 -2
  138. data/spec/fixtures/solr_documents/princeton-parent.json +5 -3
  139. data/spec/fixtures/solr_documents/public_direct_download.json +2 -1
  140. data/spec/fixtures/solr_documents/public_iiif_princeton.json +3 -2
  141. data/spec/fixtures/solr_documents/public_polygon_mit.json +2 -1
  142. data/spec/fixtures/solr_documents/restricted-line.json +2 -1
  143. data/spec/fixtures/solr_documents/tilejson.json +48 -0
  144. data/spec/fixtures/solr_documents/tms.json +15 -18
  145. data/spec/fixtures/solr_documents/umn_metro_result1.json +5 -3
  146. data/spec/fixtures/solr_documents/umn_state_result1.json +3 -2
  147. data/spec/fixtures/solr_documents/umn_state_result2.json +3 -5
  148. data/spec/fixtures/solr_documents/uva_slug_colon.json +2 -1
  149. data/spec/fixtures/solr_documents/wmts-multiple.json +41 -0
  150. data/spec/fixtures/solr_documents/wmts-single-layer.json +48 -0
  151. data/spec/fixtures/solr_documents/xyz.json +46 -0
  152. data/spec/helpers/geoblacklight_helper_spec.rb +12 -35
  153. data/spec/lib/geoblacklight/document_presenter_spec.rb +3 -3
  154. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
  155. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
  156. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +1 -1
  157. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
  158. data/spec/lib/geoblacklight/download_spec.rb +2 -2
  159. data/spec/lib/geoblacklight/metadata/base_spec.rb +19 -1
  160. data/spec/lib/geoblacklight/metadata_transformer/fgdc_spec.rb +1 -1
  161. data/spec/lib/geoblacklight/metadata_transformer/iso19139_spec.rb +1 -1
  162. data/spec/lib/geoblacklight/references_spec.rb +5 -3
  163. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +5 -0
  164. data/spec/lib/geoblacklight/view_helper_override_spec.rb +0 -10
  165. data/spec/lib/geoblacklight/wms_layer_spec.rb +1 -1
  166. data/spec/models/concerns/geoblacklight/bbox_filter_field_spec.rb +96 -0
  167. data/spec/models/concerns/geoblacklight/bbox_filter_query_spec.rb +105 -0
  168. data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +2 -1
  169. data/spec/models/concerns/geoblacklight/suppressed_records_search_behavior_spec.rb +31 -0
  170. data/spec/presenters/geoblacklight/bbox_item_presenter_spec.rb +36 -0
  171. data/spec/spec_helper.rb +8 -3
  172. data/spec/test_app_templates/Gemfile.extra +1 -0
  173. data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -4
  174. data/spec/views/catalog/_show_downloads.html.erb_spec.rb +5 -5
  175. data/template.rb +2 -4
  176. data/vendor/assets/images/fullscreen.png +0 -0
  177. data/vendor/assets/images/fullscreen@2x.png +0 -0
  178. data/vendor/assets/javascripts/Leaflet.fullscreen.js +152 -0
  179. data/vendor/assets/javascripts/esri-leaflet.js +10 -3
  180. data/vendor/assets/javascripts/esri-leaflet.js.map +1 -1
  181. data/vendor/assets/javascripts/leaflet-iiif.js +39 -18
  182. data/vendor/assets/javascripts/leaflet-src.js.erb +14126 -0
  183. data/vendor/assets/javascripts/leaflet-src.js.map +1 -1
  184. data/vendor/assets/stylesheets/leaflet.css +640 -634
  185. data/vendor/assets/stylesheets/leaflet.fullscreen.css +40 -0
  186. metadata +108 -53
  187. data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +0 -71
  188. data/app/views/catalog/_download_generated_link.html.erb +0 -4
  189. data/app/views/catalog/_download_link.html.erb +0 -3
  190. data/app/views/catalog/_downloads_generated.html.erb +0 -6
  191. data/app/views/catalog/_downloads_primary.html.erb +0 -21
  192. data/app/views/catalog/_downloads_secondary.html.erb +0 -39
  193. data/app/views/catalog/_icon_facet.html.erb +0 -16
  194. data/bin/coverage.rb +0 -36
  195. data/lib/generators/geoblacklight/templates/Procfile +0 -3
  196. data/lib/generators/geoblacklight/templates/package.json +0 -14
  197. data/lib/generators/geoblacklight/templates/webpacker.yml +0 -67
  198. data/lib/generators/geoblacklight/webpacker_generator.rb +0 -36
  199. data/lib/geoblacklight/catalog_helper_override.rb +0 -14
  200. data/spec/models/concerns/geoblacklight/spatial_search_behavior_spec.rb +0 -97
  201. data/vendor/assets/javascripts/leaflet.js.erb +0 -13922
  202. data/vendor/assets/stylesheets/leaflet-label.css +0 -54
@@ -0,0 +1,59 @@
1
+ {
2
+ "id": "88cc9b19-3294-4da9-9edd-775c81fb1c59",
3
+ "gbl_mdVersion_s": "Aardvark",
4
+ "dct_title_s": "Wabash River Topographic Maps: Indiana, 1929",
5
+ "dct_description_sm": [
6
+ "See Related Records below to download individual GeoTIFFs. The maps represented here are tiff files owned by Purdue University's 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."
7
+ ],
8
+ "dct_language_sm": [
9
+ "eng"
10
+ ],
11
+ "dct_creator_sm": [
12
+ "Brock & Weymouth Inc.",
13
+ "United States Engineer Office"
14
+ ],
15
+ "dct_publisher_sm": [
16
+ "Purdue University Libraries"
17
+ ],
18
+ "gbl_resourceClass_sm": [
19
+ "Maps"
20
+ ],
21
+ "dcat_keyword_sm": [
22
+ "Topography",
23
+ "Purdue Georeferenced Imagery"
24
+ ],
25
+ "dcat_theme_sm": [
26
+ "Imagery and Base Maps"
27
+ ],
28
+ "dct_issued_s": "2015-10-17",
29
+ "dct_temporal_sm": [
30
+ "1929"
31
+ ],
32
+ "gbl_dateRange_drsim": [
33
+ "[1929 TO 1929]"
34
+ ],
35
+ "gbl_indexYear_im": [
36
+ 1929
37
+ ],
38
+ "dct_spatial_sm": [
39
+ "Indiana"
40
+ ],
41
+ "locn_geometry": "ENVELOPE(-87.5291,-86.2066,40.8009,39.3999)",
42
+ "dcat_bbox": "ENVELOPE(-87.5291,-86.2066,40.8009,39.3999)",
43
+ "dcat_centroid": "40.1004,-86.86785",
44
+ "pcdm_memberOf_sm": [
45
+ "09d-01"
46
+ ],
47
+ "gbl_resourceType_sm": [
48
+ "Topographic maps"
49
+ ],
50
+ "dct_format_s": "Image Service",
51
+ "dct_references_s": "{\"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/\"}",
52
+ "dct_identifier_sm": [
53
+ "88cc9b19-3294-4da9-9edd-775c81fb1c59"
54
+ ],
55
+ "schema_provider_s": "Purdue University",
56
+ "dct_accessRights_s": "Public",
57
+ "gbl_suppressed_b": false,
58
+ "gbl_mdModified_dt": "2021-05-07T23:00:10Z"
59
+ }
@@ -57,7 +57,8 @@
57
57
  "Borough of Staten Island, New York"
58
58
  ],
59
59
  "locn_geometry": "ENVELOPE(-74.255895,-73.700272,40.915282,40.495929)",
60
- "dcat_centroid_ss": "40.7056055,-73.9780835",
60
+ "dcat_bbox": "ENVELOPE(-74.255895,-73.700272,40.915282,40.495929)",
61
+ "dcat_centroid": "40.7056055,-73.9780835",
61
62
  "dct_accessRights_s": "Public",
62
63
  "dct_format_s": "SQLite Database",
63
64
  "gbl_wxsIdentifier_s": "sdr:nyu_2451_34635",
@@ -57,7 +57,8 @@
57
57
  "Borough of Staten Island, New York"
58
58
  ],
59
59
  "locn_geometry": "ENVELOPE(-74.255895,-73.700272,40.915282,40.495929)",
60
- "dcat_centroid_ss": "40.7056055,-73.9780835",
60
+ "dcat_bbox": "ENVELOPE(-74.255895,-73.700272,40.915282,40.495929)",
61
+ "dcat_centroid": "40.7056055,-73.9780835",
61
62
  "dct_accessRights_s": "Public",
62
63
  "dct_format_s": "Geodatabase",
63
64
  "gbl_wxsIdentifier_s": "sdr:nyu_2451_34636",
@@ -57,7 +57,7 @@
57
57
  "Borough of Queens, New York"
58
58
  ],
59
59
  "locn_geometry": "ENVELOPE(-74.030876,-73.755405,40.903125,40.576127)",
60
- "dcat_centroid_ss": "40.739626,-73.8931405",
60
+ "dcat_centroid": "40.739626,-73.8931405",
61
61
  "dct_source_sm": [
62
62
  "nyu_2451_34635",
63
63
  "nyu_2451_34636"
@@ -24,7 +24,8 @@
24
24
  "GBL Fixture records"
25
25
  ],
26
26
  "locn_geometry": "ENVELOPE(-124.7333333,68,62.45,-53.23333333)",
27
- "dcat_centroid_ss": "4.608,-28.366",
27
+ "dcat_bbox": "ENVELOPE(-124.7333333,68,62.45,-53.23333333)",
28
+ "dcat_centroid": "4.608,-28.366",
28
29
  "dct_accessRights_s": "Public",
29
30
  "dct_format_s": "TIFF",
30
31
  "gbl_wxsIdentifier_s": "public-figgy:a990e1b4-7f0e-44b8-ae2a-de7e93cdd74a",
@@ -28,7 +28,7 @@
28
28
  ],
29
29
  "dcat_theme_sm": [
30
30
  "Environment",
31
- "Climatology, Meteorology and Atmosphere"
31
+ "Climate"
32
32
  ],
33
33
  "dcat_keyword_sm": [
34
34
  "GBL Fixture records"
@@ -47,12 +47,13 @@
47
47
  "New York"
48
48
  ],
49
49
  "locn_geometry": "ENVELOPE(-74.989258,-73.858335,44.67778,43.452994)",
50
- "dcat_centroid_ss": "44.065387,-74.42379650000001",
50
+ "dcat_bbox": "ENVELOPE(-74.989258,-73.858335,44.67778,43.452994)",
51
+ "dcat_centroid": "44.065387,-74.42379650000001",
51
52
  "dct_accessRights_s": "Public",
52
53
  "dct_format_s": "Shapefile",
53
54
  "gbl_fileSize_s": "0.07 MB",
54
55
  "gbl_wxsIdentifier_s": "cugir007741",
55
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://schema.org/downloadUrl:https://s3.amazonaws.com/cugir-data/00/77/41/cugir-007741.zip\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/77/41/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/77/41/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\"}",
56
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://s3.amazonaws.com/cugir-data/00/77/41/cugir-007741.zip\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/77/41/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/77/41/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\"}",
56
57
  "id": "cugir-007741",
57
58
  "dct_identifier_sm": [
58
59
  "https://cugir.library.cornell.edu/catalog/cugir-007741"
@@ -24,7 +24,7 @@
24
24
  "Polygon data"
25
25
  ],
26
26
  "dcat_theme_sm": [
27
- "Geoscientific Information"
27
+ "Geology"
28
28
  ],
29
29
  "dcat_keyword_sm": [
30
30
  "GBL Fixture records"
@@ -43,7 +43,8 @@
43
43
  "Illinois"
44
44
  ],
45
45
  "locn_geometry": "ENVELOPE(-91.513518,-87.495214,42.508348,36.969972)",
46
- "dcat_centroid_ss": "39.73916,-89.504366",
46
+ "dcat_bbox": "ENVELOPE(-91.513518,-87.495214,42.508348,36.969972)",
47
+ "dcat_centroid": "39.73916,-89.504366",
47
48
  "dct_accessRights_s": "Public",
48
49
  "dct_format_s": "Shapefile",
49
50
  "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\"}",
@@ -25,7 +25,7 @@
25
25
  "Point data"
26
26
  ],
27
27
  "dcat_theme_sm": [
28
- "Geoscientific Information"
28
+ "Geology"
29
29
  ],
30
30
  "dcat_keyword_sm": [
31
31
  "GBL Fixture records"
@@ -44,7 +44,8 @@
44
44
  "Indiana"
45
45
  ],
46
46
  "locn_geometry": "ENVELOPE(-87.9324,-86.2569,39.8521,37.8626)",
47
- "dcat_centroid_ss": "38.85735,-87.09465",
47
+ "dcat_bbox": "ENVELOPE(-87.9324,-86.2569,39.8521,37.8626)",
48
+ "dcat_centroid": "38.85735,-87.09465",
48
49
  "dct_accessRights_s": "Public",
49
50
  "dct_format_s": "Shapefile",
50
51
  "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\"}",
@@ -43,7 +43,8 @@
43
43
  "Maryland"
44
44
  ],
45
45
  "locn_geometry": "ENVELOPE(-79.4539,-75.124,39.7194,37.9667)",
46
- "dcat_centroid_ss": "38.843050000000005,-77.28895",
46
+ "dcat_bbox": "ENVELOPE(-79.4539,-75.124,39.7194,37.9667)",
47
+ "dcat_centroid": "38.843050000000005,-77.28895",
47
48
  "dct_accessRights_s": "Public",
48
49
  "dct_format_s": "Shapefile",
49
50
  "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\"}",
@@ -21,7 +21,7 @@
21
21
  "Topographic maps"
22
22
  ],
23
23
  "dcat_theme_sm": [
24
- "Imagery and Base Maps"
24
+ "Imagery"
25
25
  ],
26
26
  "dcat_keyword_sm": [
27
27
  "GBL Fixture records"
@@ -40,7 +40,8 @@
40
40
  "Indiana"
41
41
  ],
42
42
  "locn_geometry": "ENVELOPE(-87.324704,-87.174404,40.310695,40.233691)",
43
- "dcat_centroid_ss": "40.272193,-87.24955399999999",
43
+ "dcat_bbox": "ENVELOPE(-87.324704,-87.174404,40.310695,40.233691)",
44
+ "dcat_centroid": "40.272193,-87.24955399999999",
44
45
  "dct_source_sm": [
45
46
  "88cc9b19-3294-4da9-9edd-775c81fb1c59"
46
47
  ],
@@ -33,7 +33,8 @@
33
33
  "[2010 TO 2010]"
34
34
  ],
35
35
  "locn_geometry": "ENVELOPE(-129.4956,-64.4393,48.6336,21.8079)",
36
- "dcat_centroid_ss": "35.22075,-96.96745",
36
+ "dcat_bbox": "ENVELOPE(-129.4956,-64.4393,48.6336,21.8079)",
37
+ "dcat_centroid": "35.22075,-96.96745",
37
38
  "dct_accessRights_s": "Public",
38
39
  "dct_format_s": "GeoTIFF",
39
40
  "gbl_wxsIdentifier_s": "test-soil-survey_map",
@@ -44,7 +44,8 @@
44
44
  "Indiana"
45
45
  ],
46
46
  "locn_geometry": "ENVELOPE(-88.1607,-84.6882,41.7753,37.7554)",
47
- "dcat_centroid_ss": "39.76,-86.42",
47
+ "dcat_bbox": "ENVELOPE(-88.1607,-84.6882,41.7753,37.7554)",
48
+ "dcat_centroid": "39.76,-86.42",
48
49
  "dct_accessRights_s": "Public",
49
50
  "dct_format_s": "Shapefile",
50
51
  "gbl_wxsIdentifier_s": "0",
@@ -29,7 +29,7 @@
29
29
  "Bodies of water"
30
30
  ],
31
31
  "dcat_theme_sm": [
32
- "Imagery and Base Maps",
32
+ "Imagery",
33
33
  "Transportation"
34
34
  ],
35
35
  "dcat_keyword_sm": [
@@ -49,7 +49,8 @@
49
49
  "Russia Saint Petersburg"
50
50
  ],
51
51
  "locn_geometry": "ENVELOPE(30.013108,30.875309,60.041712,59.669749)",
52
- "dcat_centroid_ss": "59.8557305,30.444208500000002",
52
+ "dcat_bbox": "ENVELOPE(30.013108,30.875309,60.041712,59.669749)",
53
+ "dcat_centroid": "59.8557305,30.444208500000002",
53
54
  "dct_accessRights_s": "Public",
54
55
  "dct_format_s": "GeoTIFF",
55
56
  "gbl_wxsIdentifier_s": "cite:G7064_S2_1834_K3",
@@ -29,8 +29,9 @@
29
29
  "gbl_dateRange_drsim": [
30
30
  "[1750 TO 1750]"
31
31
  ],
32
- "locn_geometry": "ENVELOPE(25,-168.35,81.66,-12.93)",
33
- "dcat_centroid_ss": "34.365,-71.675",
32
+ "locn_geometry": "MULTIPOLYGON (((-180 81.66,-168.35 81.66,-168.35 -12.93, -180 -12.93, -180 81.66),(25 81.66,25 -12.93,180 -12.93,180 81.66, 25 81.66)))",
33
+ "dcat_bbox": "ENVELOPE(25,-168.35,81.66,-12.93)",
34
+ "dcat_centroid": "34.365,-71.675",
34
35
  "dct_accessRights_s": "Public",
35
36
  "dct_format_s": "JPEG",
36
37
  "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\"}",
@@ -44,7 +44,8 @@
44
44
  "New York"
45
45
  ],
46
46
  "locn_geometry": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
47
- "dcat_centroid_ss": "42.749928,-75.750363",
47
+ "dcat_bbox": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
48
+ "dcat_centroid": "42.749928,-75.750363",
48
49
  "dct_accessRights_s": "Public",
49
50
  "dct_format_s": "GeoTIFF",
50
51
  "gbl_wxsIdentifier_s": "cugir008186",
@@ -44,7 +44,8 @@
44
44
  "New York"
45
45
  ],
46
46
  "locn_geometry": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
47
- "dcat_centroid_ss": "42.749928,-75.750363",
47
+ "dcat_bbox": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
48
+ "dcat_centroid": "42.749928,-75.750363",
48
49
  "dct_accessRights_s": "Public",
49
50
  "dct_format_s": "GeoTIFF",
50
51
  "gbl_wxsIdentifier_s": "cugir008186",
@@ -49,7 +49,8 @@
49
49
  "Davao (Philippines)"
50
50
  ],
51
51
  "locn_geometry": "ENVELOPE(125,126,7.3333,6.6666)",
52
- "dcat_centroid_ss": "6.99995,125.5",
52
+ "dcat_bbox": "ENVELOPE(125,126,7.3333,6.6666)",
53
+ "dcat_centroid": "6.99995,125.5",
53
54
  "dct_rights_sm": [
54
55
  "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
  ],
@@ -26,7 +26,7 @@
26
26
  "Index maps"
27
27
  ],
28
28
  "dcat_theme_sm": [
29
- "Imagery and Base Maps"
29
+ "Imagery"
30
30
  ],
31
31
  "dcat_keyword_sm": [
32
32
  "GBL Fixture records"
@@ -42,7 +42,8 @@
42
42
  "New York"
43
43
  ],
44
44
  "locn_geometry": "ENVELOPE(-74.783,-74.733,40.2,40.166)",
45
- "dcat_centroid_ss": "40.183,-74.75800000000001",
45
+ "dcat_bbox": "ENVELOPE(-74.783,-74.733,40.2,40.166)",
46
+ "dcat_centroid": "40.183,-74.75800000000001",
46
47
  "dct_accessRights_s": "Public",
47
48
  "dct_format_s": "GeoJSON",
48
49
  "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\"}",
@@ -30,7 +30,8 @@
30
30
  "United States"
31
31
  ],
32
32
  "locn_geometry": "ENVELOPE(-179.9,-64.4,71.6,-14.8)",
33
- "dcat_centroid_ss": "28.4,-122.15",
33
+ "dcat_bbox": "ENVELOPE(-179.9,-64.4,71.6,-14.8)",
34
+ "dcat_centroid": "28.4,-122.15",
34
35
  "dct_accessRights_s": "Restricted",
35
36
  "dct_references_s": "{\"http://schema.org/url\":\"https://www.socialexplorer.com/\"}",
36
37
  "id": "99-0001-noprovider",
@@ -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
+ }