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
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+ require 'spec_helper'
3
+
4
+ feature 'tms layer' do
5
+ scenario 'displays tms layer', js: true do
6
+ visit solr_document_path('6f47b103-9955-4bbe-a364-387039623106')
7
+ expect(page).to have_css '.leaflet-control-zoom', visible: true
8
+ expect(page).to have_css "img[src*='earthquake.usgs.gov']"
9
+ end
10
+ end
@@ -2,39 +2,51 @@
2
2
 
3
3
  If you add a new document, please add it to the table below, and indicate its purpose.
4
4
 
5
- | document | purpose |
6
- | -------- | ------- |
7
- | actual-papermap1 |Nondigitized paper map with a link to a library catalog|
8
- | actual-point1 |Point dataset with WMS and WFS|
9
- | actual-polygon1 |Polygon dataset (no direct download) with WFS, WMS, and FGDC metadata as XML|
10
- | actual-raster1 |Restricted raster layer with WMS and metadata in MODS and ISO 19139|
11
- | baruch_ancestor1 |SQLite Database with documentation download. Referenced as parent|
12
- | baruch_ancestor2 |Geodatabase with documentation download. Referenced as parent|
13
- | baruch_documentation_download |Point dataset with WMS and WFS, documentation download, and two parent records|
14
- | bbox-spans-180 |Scanned map with IIIF and direct TIFF download that spans across the 180th meridian|
15
- | cornell_html_metadata |Point dataset with WMS, WFS, direct download, and FGDC metadata XML and HTML|
16
- | esri-dynamic-layer-single-layer |ArcGIS Dynamic Map Layer with single layer indicated|
17
- | esri-feature-layer |ArcGIS Feature Layer - point dataset|
18
- | esri-image-map-layer |ArcGIS Image Map Layer with GeoTIFF direct download|
19
- | esri-tiled_map_layer |ArcGIS tiled map layer|
20
- | esri-wms-layer |Dataset with ArcGIS Dynamic Map Layer, ArcGIS WMS, and direct download|
21
- | harvard_raster |Raster with WMS and Harvard style download function|
22
- | iiif-eastern-hemisphere |Eastern hemisphere scanned map with IIIF and direct TIFF download|
23
- | index_map_point | GeoJSON index map of points |
24
- | index_map_polygon | GeoJSON index map of polygons, with a downloadUrl for the index itself |
25
- | index_map_polygon-no-downloadurl | GeoJSON index map of polygons, but lacking a downloadUrl for the index itself |
26
- | index-map-stanford | old-style (pre-GeoJSON) index map of rectangular polygons |
27
- | no_spatial |File without geometry type or solr_geometry (will cause error)|
28
- | princeton-child1.json | Child record for testing the `suppressed_b` property |
29
- | princeton-child2.json | Child record for testing the `suppressed_b` property |
30
- | princeton-child3.json | Child record for testing the `suppressed_b` property |
31
- | princeton-child4.json | Child record for testing the `suppressed_b` property |
32
- | princeton-parent.json | Parent record for testing the `suppressed_b` property |
33
- | public_direct_download | includes a tentative `dcat_distribution_sm` property |
34
- | public_iiif_princeton |Scanned map with IIIF|
35
- | public_polygon_mit |Polygon shapefile with WMS and WFS|
36
- | restricted-line |Restricted line layer with WFS, WMS and metadata in MODS and ISO 19139|
37
- | umn_metro_result1.json |Bounding box of metropolitan area and ArcGIS Dynamic Map Layer|
38
- | umn_state_result1.json |Bounding box of state area and static image in references|
39
- | umn_state_result2.json |Bounding box of state area and raster download|
40
- | uva_slug_colon.json | Multipoint dataset with WMS and WFS and a colon in the slug and layer ID |
5
+ # Listing of GeoBlacklight .json test documents
6
+
7
+ If you add a new document, please add it to the table below, and indicate its purpose.
8
+
9
+ |
10
+ | Filename | Title | ID | Purpose |
11
+ |---------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
12
+ | [actual-papermap1](actual-papermap1.json) | 1:1 500 000 series [cartographic material] : tectonic map of Britain, Ireland and adjacent areas / British Geological Survey ; Geological Survey of Ireland ; Geological Survey of Northern Ireland. | mit-001145244 | Nondigitized paper map with a link to a library catalog |
13
+ | [actual-point1](actual-point1.json) | 2014 New York City Places | nyu-2451-34564 | Point dataset with WMS and WFS |
14
+ | [actual-polygon1](actual-polygon1.json) | 100 Foot Grid Cambridge MA 2004 | tufts-cambridgegrid100-04 | Polygon dataset (no direct download) with WFS, WMS, and FGDC metadata as XML |
15
+ | [actual-raster1](actual-raster1.json) | 1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005 | stanford-dp018hs9766 | Restricted raster layer with WMS and metadata in MODS and ISO 19139 |
16
+ | [baruch_ancestor1](baruch_ancestor1.json) | 2016 NYC Geodatabase, Open Source Version (jan2016) | nyu_2451_34635 | SQLite Database with documentation download Referenced as parent |
17
+ | [baruch_ancestor2](baruch_ancestor2.json) | 2016 NYC Geodatabase, ArcGIS Version (jan2016) | nyu_2451_34636 | Geodatabase with documentation download Referenced as parent |
18
+ | [baruch_documentation_download](baruch_documentation_download.json) | 2015 New York City Subway Complexes and Ridership | nyu_2451_34502 | Point dataset with WMS and WFS, documentation download, and two parent records |
19
+ | [bbox-spans-180](bbox-spans-180.json) | East Asia and Oceania | princeton-sx61dn82p | Scanned map with IIIF and direct TIFF download that spans across the 180th meridian |
20
+ | [cornell_html_metadata](cornell_html_metadata.json) | Air Monitoring Stations, Adirondack Park, 2000 | cugir-007741 | Point dataset with WMS, WFS, direct download, and FGDC metadata XML and HTML |
21
+ | [esri-dynamic-layer-all-layers](esri-dynamic-layer-all-layers.json) | Glacial Boundaries: Illinois, 1998 | 90f14ff4-1359-4beb-b931-5cb41d20ab90 | This record points to an the top level of an Esri Rest Web Map Service It does not specify a layer |
22
+ | [esri-dynamic-layer-single-layer](esri-dynamic-layer-single-layer.json) | Abandoned Quarries: Indiana | 4669301e-b4b2-4c8b-bf40-01b968a2865b | ArcGIS Dynamic Map Layer with single layer indicated |
23
+ | [esri-feature-layer](esri-feature-layer.json) | Transit - Airports: Maryland | f406332e63eb4478a9560ad86ae90327_18 | ArcGIS Feature Layer - point dataset |
24
+ | [esri-image-map-layer](esri-image-map-layer.json) | Wabash Topo (27): Indiana, 1929 | 32653ed6-8d83-4692-8a06-bf13ffe2c018 | ArcGIS Image Map Layer with GeoTIFF direct download |
25
+ | [esri-tiled_map_layer](esri-tiled_map_layer.json) | Soil Survey Geographic (SSURGO) | nyu-test-soil-survey-map | ArcGIS tiled map layer |
26
+ | [esri-wms-layer](esri-wms-layer.json) | Agriculture Census: Indiana, 1997 | purdue-urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa | Dataset with ArcGIS Dynamic Map Layer, ArcGIS WMS, and direct download |
27
+ | [harvard_raster](harvard_raster.json) | Saint Petersburg Region, Russia, 1834 (Raster Image) | harvard-g7064-s2-1834-k3 | This layer is a georeferenced raster image of the historic paper map |
28
+ | [iiif-eastern-hemisphere](iiif-eastern-hemisphere.json) | A new & accurate map of Asia: drawn from actual surveys, and otherwise collected from journals | 57f0f116-b64e-4773-8684-96ba09afb549 | Eastern hemisphere scanned map with IIIF manifest |
29
+ | [index_map_point](index_map_point.json) | New York Aerial Photos (1960s) | cornell-ny-aerial-photos-1960s | GeoJSON index map of points |
30
+ | [index-map-polygon](index-map-polygon.json) | Index of Digital Elevation Models (DEM), New York | cugir-008186-no-downloadurl | GeoJSON index map of polygons, with a downloadUrl for the index itself |
31
+ | [index-map-polygon-no-downloadurl](index-map-polygon-no-downloadurl.json) | Index of Digital Elevation Models (DEM), New York | cugir-008186 | GeoJSON index map of polygons, but lacking a downloadUrl for the index itself |
32
+ | [index-map-stanford](index-map-stanford.json) | Dabao Kinbōzu, Maps Index | stanford-fb897vt9938 | old-style (pre-GeoJSON) index map of rectangular polygons |
33
+ | [metadata_no_geom](metadata_no_geom.json) | Ames Library of South Asia Maps | 05d-p16022coll246-noGeo | This is a collection level record without spatial coordinates |
34
+ | [metadata_no_provider](metadata_no_provider.json) | Social Explorer | 99-0001-noprovider | This is a website record that does not have a Provider (aardvark)/ provider (GBL Metadata 1.0) |
35
+ | [multiple-downloads](multiple-downloads.json) | Test record with additional download formats | cugir-007950 | This is a test record containing new-style references as nested child documents In addition to the original shapefile download, the references section contains additional PDF and KMZ downloads |
36
+ | [no_locn_geometry](no_locn_geometry.json) | University of Minnesota Digital Conservancy DRUM | 05d-03-noGeomType | This is a collection level record without spatial coordinates or a Geometry Type (GBL Metadata 1.0) |
37
+ | [no_spatial](no_spatial.json) | ASTER Global Emissivity Dataset 1-kilometer V003 - AG1KM | aster-global-emissivity-dataset-1-kilometer-v003-ag1kmcad20 | File without geometry type or solr_geometry (will cause error) |
38
+ | [oembed](oembed.json) | Jōshū Kusatsu Onsenzu | stanford-dc482zx1528 | This record has an Oembed reference link |
39
+ | [princeton-child1](princeton-child1.json) | Princeton, Mercer County, New Jersey (Sheet 1) | princeton-n009w382v | Child record for testing the suppressed_b property |
40
+ | [princeton-child2](princeton-child2.json) | Princeton, Mercer County, New Jersey (Sheet 2) | princeton-jq085m62x | Child record for testing the suppressed_b property |
41
+ | [princeton-child3](princeton-child3.json) | Princeton, Mercer County, New Jersey (Sheet 3) | princeton-n009w382v-fake1 | Child record for testing the suppressed_b property |
42
+ | [princeton-child4](princeton-child4.json) | Princeton, Mercer County, New Jersey (Sheet 4) | princeton-n009w382v-fake2 | Child record for testing the suppressed_b property |
43
+ | [princeton-parent](princeton-parent.json) | Princeton, Mercer County, New Jersey | princeton-1r66j405w | Parent record for testing the suppressed_b property |
44
+ | [public_direct_download](public_direct_download.json) | 2005 Rural Poverty GIS Database: Uganda | stanford-cz128vq0535 | includes a tentative dcat_distribution_sm property |
45
+ | [public_iiif_princeton](public_iiif_princeton.json) | The provinces of New York and New Jersey, with part of Pensilvania, and the Province of Quebec | princeton-02870w62c | Scanned map with IIIF |
46
+ | [public_polygon_mit](public_polygon_mit.json) | Massachusetts (ZCTA - 5 digit zip code tabulation area, 2000) | mit-f6rqs4ucovjk2 | Polygon shapefile with WMS and WFS |
47
+ | [restricted-line](restricted-line.json) | 10 Meter Contours: Russian River Basin, California | stanford-cg357zz0321 | Restricted line layer with WFS, WMS and metadata in MODS and ISO 19139 |
48
+ | [tms](tms.json) | Quaternary Fault and Fold Database of the United States | 6f47b103-9955-4bbe-a364-387039623106 | Includes a TMS type of web service |
49
+ | [umn_metro_result1](umn_metro_result1.json) | 2030 Regional Development Framework Planning Areas: Metro Twin Cities, Minnesota, 2011 | 02236876-9c21-42f6-9870-d2562da8e44f | Bounding box of metropolitan area and ArcGIS Dynamic Feature Service |
50
+ | [umn_state_result1](umn_state_result1.json) | 1:100k Digital Raster Graphic - Collars Removed: Minnesota | 2eddde2f-c222-41ca-bd07-2fd74a21f4de | Bounding box of state area and static image in references |
51
+ | [umn_state_result2](umn_state_result2.json) | 1:250k Digital Raster Graphic - Collars Removed: Minnesota | e9c71086-6b25-4950-8e1c-84c2794e3382 | Bounding box of state area and raster download |
52
+ | [uva_slug_colon](uva_slug_colon.json) | Norfolk 2005 Police Stations | uva-Norfolk:police_point | Multipoint dataset with WMS and WFS and a colon in the slug and layer ID |
@@ -1,23 +1,46 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_description_s": "Panel title. Depths shown by isolines. \"Geological map [copyright] NERC 1996.\" Also available on flat sheet. \"Sheet 1\"--on panel. Includes text, notes, organizations' logos, and ancillary map of \"Orogenic terranes of Britain, Ireland and surrounding seas.\"",
4
- "dc_format_s": "Paper",
5
- "dc_identifier_s": "urn:arrowsmith.mit.edu:MIT.001145244",
6
- "dc_language_s": "English",
7
- "dc_publisher_s": "British Geological Survey",
8
- "dc_rights_s": "Public",
9
- "dc_title_s": "1:1 500 000 series [cartographic material] : tectonic map of Britain, Ireland and adjacent areas / British Geological Survey ; Geological Survey of Ireland ; Geological Survey of Northern Ireland.",
10
- "dc_type_s": "Dataset",
11
- "dct_references_s": "{\"http://schema.org/url\":\"http://library.mit.edu/item/001145244\"}",
2
+ "dct_title_s": "1:1 500 000 series [cartographic material] : tectonic map of Britain, Ireland and adjacent areas / British Geological Survey ; Geological Survey of Ireland ; Geological Survey of Northern Ireland.",
3
+ "dct_alternative_sm": [
4
+ "actual-papermap1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Nondigitized paper map with a link to a library catalog. ",
8
+ "Panel title. Depths shown by isolines. \"Geological map [copyright] NERC 1996.\" Also available on flat sheet. \"Sheet 1\"--on panel. Includes text, notes, organizations\\' logos, and ancillary map of \"Orogenic terranes of Britain, Ireland and surrounding seas.\""
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "British Geological Survey"
15
+ ],
16
+ "schema_provider_s": "MIT",
17
+ "gbl_resourceClass_sm": [
18
+ "Maps"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "Paper map",
22
+ "GBL Fixture records"
23
+ ],
12
24
  "dct_temporal_sm": [
13
25
  "1996"
14
26
  ],
15
- "dct_issued_s": "2000",
16
- "dct_provenance_s": "MIT",
17
- "layer_slug_s": "mit-001145244",
18
- "layer_id_s": "MIT:001145244",
19
- "layer_geom_type_s": "Paper Map",
20
- "layer_modified_dt": "2014-12-04T21:32:59Z",
21
- "solr_geom": "ENVELOPE(-13.0, 4.0, 62.0, 49.0)",
22
- "solr_year_i": 1996
27
+ "dct_issued_s": "1905-06-22",
28
+ "gbl_indexYear_im": [
29
+ "1996"
30
+ ],
31
+ "gbl_dateRange_drsim": [
32
+ "[1996 TO 1996]"
33
+ ],
34
+ "locn_geometry": "ENVELOPE(-13,4,62,49)",
35
+ "dcat_centroid_ss": "55.5,-4.5",
36
+ "dct_accessRights_s": "Public",
37
+ "dct_format_s": "Paper",
38
+ "gbl_wxsIdentifier_s": "MIT:001145244",
39
+ "dct_references_s": "{\"http://schema.org/url\":\"http://library.mit.edu/item/001145244\"}",
40
+ "id": "mit-001145244",
41
+ "dct_identifier_sm": [
42
+ "urn:arrowsmith.mit.edu:MIT.001145244"
43
+ ],
44
+ "gbl_mdModified_dt": "2021-06-11T18:30:23Z",
45
+ "gbl_mdVersion_s": "Aardvark"
23
46
  }
@@ -1,37 +1,57 @@
1
1
  {
2
- "dc_creator_sm": [
3
- ],
4
- "dc_description_s": "This point shapefile was created as a guide to New York City’s non-neighborhood place locations that appear in “New York: A City of Neighborhoods.” These place locations include parks, cemeteries, and airports. Best estimates of label centroids were established at a 1:1,000 scale, but are ideally viewed at a 1:50,000 scale.",
5
- "dc_format_s": "Shapefile",
6
- "dc_identifier_s": "http://hdl.handle.net/2451/34564",
7
- "dc_language_s": "English",
8
- "dc_publisher_s": "New York (City). Department of City Planning",
9
- "dc_rights_s": "Public",
10
- "dc_subject_sm": [
2
+ "dct_title_s": "2014 New York City Places",
3
+ "dct_alternative_sm": [
4
+ "actual-point1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Point dataset with WMS and WFS. ",
8
+ "This point shapefile was created as a guide to New York City’s non-neighborhood place locations that appear in “New York: A City of Neighborhoods.” These place locations include parks, cemeteries, and airports. Best estimates of label centroids were established at a 1:1,000 scale, but are ideally viewed at a 1:50,000 scale."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "New York (City). Department of City Planning"
15
+ ],
16
+ "schema_provider_s": "NYU",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
19
+ ],
20
+ "gbl_resourceType_sm": [
21
+ "Point data"
22
+ ],
23
+ "dct_subject_sm": [
11
24
  "Airports",
12
25
  "Parks",
13
26
  "Public spaces"
14
27
  ],
15
- "dc_title_s": "2014 New York City Places",
16
- "dc_type_s": "Dataset",
17
- "dct_isPartOf_sm": [
18
- "Bytes of the Big Apple"
19
- ],
20
- "dct_issued_s": "2014",
21
- "dct_provenance_s": "NYU",
22
- "dct_references_s": "{\"http://schema.org/url\":\"http://hdl.handle.net/2451/34564\",\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74563/nyu_2451_34564.zip\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://maps-public.geo.nyu.edu/geoserver/sdr/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://maps-public.geo.nyu.edu/geoserver/sdr/wms\"}",
23
- "dct_spatial_sm": [
24
- "New York, New York, United States"
28
+ "dcat_keyword_sm": [
29
+ "GBL Fixture records"
25
30
  ],
26
31
  "dct_temporal_sm": [
27
32
  "2014"
28
33
  ],
29
- "geoblacklight_version": "1.0",
30
- "layer_geom_type_s": "Point",
31
- "layer_id_s": "sdr:nyu_2451_34564",
32
- "layer_modified_dt": "2016-04-20T21:31:14Z",
33
- "layer_slug_s": "nyu-2451-34564",
34
- "nyu_addl_dspace_s": "35497",
35
- "solr_geom": "ENVELOPE(-74.2485646353495, -73.7322869841185, 40.8962098695574, 40.4995658893951)",
36
- "solr_year_i": 2014
34
+ "dct_issued_s": "1905-07-06",
35
+ "gbl_indexYear_im": [
36
+ "1905"
37
+ ],
38
+ "gbl_dateRange_drsim": [
39
+ "[1905 TO 2014]"
40
+ ],
41
+ "dct_spatial_sm": [
42
+ "New York, New York"
43
+ ],
44
+ "locn_geometry": "ENVELOPE(-74.24856464,-73.73228698,40.89620987,40.49956589)",
45
+ "dcat_centroid_ss": "40.697887879999996,-73.99042581",
46
+ "dct_accessRights_s": "Public",
47
+ "dct_format_s": "Shapefile",
48
+ "gbl_wxsIdentifier_s": "sdr:nyu_2451_34564",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74563/nyu_2451_34564.zip\",\"http://schema.org/url\":\"http://hdl.handle.net/2451/34564\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://maps-public.geo.nyu.edu/geoserver/sdr/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://maps-public.geo.nyu.edu/geoserver/sdr/wms\"}",
50
+ "id": "nyu-2451-34564",
51
+ "dct_identifier_sm": [
52
+ "http://hdl.handle.net/2451/34564",
53
+ "35497"
54
+ ],
55
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
56
+ "gbl_mdVersion_s": "Aardvark"
37
57
  }
@@ -1,23 +1,48 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_description_s": "This polygon dataset is a 100 foot grid overlay for Cambridge, MA.",
4
- "dc_format_s": "Shapefile",
5
- "dc_identifier_s": "urn:geodata.tufts.edu:Tufts.CambridgeGrid100_04",
6
- "dc_language_s": "English",
7
- "dc_publisher_s": "Cambridge (Mass.) Geographic Information Systems",
8
- "dc_rights_s": "Public",
9
- "dc_title_s": "100 Foot Grid Cambridge MA 2004",
10
- "dc_type_s": "Dataset",
11
- "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"http://geoserver01.uit.tufts.edu/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://geoserver01.uit.tufts.edu/wms\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.tufts/master/165/242/110/132/fgdc.xml\"}",
2
+ "dct_title_s": "100 Foot Grid Cambridge MA 2004",
3
+ "dct_alternative_sm": [
4
+ "actual-polygon1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Polygon dataset (no direct download) with WFS, WMS, and FGDC metadata as XML. ",
8
+ "This polygon dataset is a 100 foot grid overlay for Cambridge, MA."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "Cambridge (Mass.) Geographic Information Systems"
15
+ ],
16
+ "schema_provider_s": "Tufts",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
19
+ ],
20
+ "gbl_resourceType_sm": [
21
+ "Polygon data"
22
+ ],
23
+ "dcat_keyword_sm": [
24
+ "GBL Fixture records"
25
+ ],
12
26
  "dct_temporal_sm": [
13
27
  "2004"
14
28
  ],
15
- "dct_issued_s": "2005",
16
- "dct_provenance_s": "Tufts",
17
- "layer_slug_s": "tufts-cambridgegrid100-04",
18
- "layer_id_s": "sde:GISPORTAL.GISOWNER01.CAMBRIDGEGRID100_04",
19
- "layer_geom_type_s": "Polygon",
20
- "layer_modified_dt": "2014-12-04T21:33:07Z",
21
- "solr_geom": "ENVELOPE(-71.163984, -71.052581, 42.408316, 42.34757)",
22
- "solr_year_i": 2004
29
+ "dct_issued_s": "1905-06-27",
30
+ "gbl_indexYear_im": [
31
+ "2004"
32
+ ],
33
+ "gbl_dateRange_drsim": [
34
+ "[2004 TO 2004]"
35
+ ],
36
+ "locn_geometry": "ENVELOPE(-71.163984,-71.052581,42.408316,42.34757)",
37
+ "dcat_centroid_ss": "42.377943,-71.1082825",
38
+ "dct_accessRights_s": "Public",
39
+ "dct_format_s": "Shapefile",
40
+ "gbl_wxsIdentifier_s": "sde:GISPORTAL.GISOWNER01.CAMBRIDGEGRID100_04",
41
+ "dct_references_s": "{\"http://www.opengis.net/cat/csw/csdgm\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.tufts/master/165/242/110/132/fgdc.xml\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"http://geoserver01.uit.tufts.edu/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://geoserver01.uit.tufts.edu/wms\"}",
42
+ "id": "tufts-cambridgegrid100-04",
43
+ "dct_identifier_sm": [
44
+ "urn:geodata.tufts.edu:Tufts.CambridgeGrid100_04"
45
+ ],
46
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
47
+ "gbl_mdVersion_s": "Aardvark"
23
48
  }
@@ -1,38 +1,67 @@
1
1
  {
2
- "dc_identifier_s": "http://purl.stanford.edu/dp018hs9766",
3
- "dc_title_s": "1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005",
4
- "dc_description_s": "This layer is a 10-color shaded relief GeoTIFF that contains high-resolution bathymetric data collected from the Elkhorn Slough region of Monterey Bay, California. The survey for Elkhorn Slough was conducted 8/12/2005 - 8/15/2005. Elkhorn Slough, one of the largest remaining coastal wetlands in California, has been directly subjected to tidal scour since the opening of Moss Landing Harbor in 1946. This erosion endangers the habitat of several rare and endangered species and disrupts the wetland ecosystem as a whole. In 2003, the Seafloor Mapping Lab of California State University, Monterey Bay created the most detailed bathymetry model of the Slough to date using a combination of multi-beam sonar, single-beam sonar and aerial photography. This layer was created as part of the California Seafloor Mapping Project.This project was conducted to determine changes in the pattern of erosion and deposition in Elkhorn Slough since surveys conducted in 1993, 2001 and 2003. Marine data offered here represent the efforts of a comprehensive state waters mapping program for California launched by the California State Coastal Conservancy, Ocean Protection Council, Department of Fish and Game, and the NOAA National Marine Sanctuary Program. The ultimate goal is the creation of a high-resolution 1:24,000 scale geologic and habitat base map series covering all of California's 14,500 km2 state waters out to the 3 mile limit, and support of the state's Marine Life Protection Act Initiative (MLPA) goal to create a statewide network of Marine Protected Areas (MPAs). This statewide project requires, involves and leverages expertise from industry, resource management agencies and academia. The tiered mapping campaign involves the use of state-of-the-art sonar, LIDAR (aerial laser) and video seafloor mapping technologies; computer aided classification and visualization; expert geologic and habitat interpretations codified into strip maps spanning California's land/sea boundary; and the creation of an online, publicly accessible data repository for the dissemination of all mapping products.\n",
5
- "dc_rights_s": "Restricted",
6
- "dct_provenance_s": "Stanford",
7
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/dp018hs9766\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:dp018hs9766/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/dp018hs9766.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/dp/018/hs/9766/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wcs\":\"https://geowebservices-restricted.stanford.edu/geoserver/wcs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
8
- "layer_id_s": "druid:dp018hs9766",
9
- "layer_slug_s": "stanford-dp018hs9766",
10
- "layer_geom_type_s": "Raster",
11
- "layer_modified_dt": "2015-04-16T23:09:17Z",
12
- "dc_format_s": "GeoTIFF",
13
- "dc_language_s": "English",
14
- "dc_type_s": "Dataset",
15
- "dc_publisher_s": "Seafloor Mapping Lab",
16
- "dc_creator_sm": [
2
+ "dct_title_s": "1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005",
3
+ "dct_alternative_sm": [
4
+ "actual-raster1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Restricted raster layer with WMS and metadata in MODS and ISO 19139. ",
8
+ "This layer is a 10-color shaded relief GeoTIFF that contains high-resolution bathymetric data collected from the Elkhorn Slough region of Monterey Bay, California. The survey for Elkhorn Slough was conducted 8/12/2005 - 8/15/2005. Elkhorn Slough, one of the largest remaining coastal wetlands in California, has been directly subjected to tidal scour since the opening of Moss Landing Harbor in 1946. This erosion endangers the habitat of several rare and endangered species and disrupts the wetland ecosystem as a whole. In 2003, the Seafloor Mapping Lab of California State University, Monterey Bay created the most detailed bathymetry model of the Slough to date using a combination of multi-beam sonar, single-beam sonar and aerial photography. This layer was created as part of the California Seafloor Mapping Project.This project was conducted to determine changes in the pattern of erosion and deposition in Elkhorn Slough since surveys conducted in 1993, 2001 and 2003. Marine data offered here represent the efforts of a comprehensive state waters mapping program for California launched by the California State Coastal Conservancy, Ocean Protection Council, Department of Fish and Game, and the NOAA National Marine Sanctuary Program. The ultimate goal is the creation of a high-resolution 1:24,000 scale geologic and habitat base map series covering all of California's 14,500 km2 state waters out to the 3 mile limit, and support of the state's Marine Life Protection Act Initiative (MLPA) goal to create a statewide network of Marine Protected Areas (MPAs). This statewide project requires, involves and leverages expertise from industry, resource management agencies and academia. The tiered mapping campaign involves the use of state-of-the-art sonar, LIDAR (aerial laser) and video seafloor mapping technologies; computer aided classification and visualization; expert geologic and habitat interpretations codified into strip maps spanning California's land/sea boundary; and the creation of an online, publicly accessible data repository for the dissemination of all mapping products.\\n"
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Seafloor Mapping Lab"
15
+ ],
16
+ "dct_publisher_sm": [
17
17
  "Seafloor Mapping Lab"
18
18
  ],
19
- "dc_subject_sm": [
19
+ "schema_provider_s": "Stanford",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Raster data"
25
+ ],
26
+ "dct_subject_sm": [
20
27
  "Continental margins",
21
- "Multibeam mapping",
22
- "Elevation",
28
+ "Multibeam mapping"
29
+ ],
30
+ "dcat_theme_sm": [
23
31
  "Imagery and Base Maps",
32
+ "Elevation",
24
33
  "Inland Waters"
25
34
  ],
26
- "dct_issued_s": "2005",
35
+ "dcat_keyword_sm": [
36
+ "GBL Fixture records"
37
+ ],
27
38
  "dct_temporal_sm": [
28
39
  "2005"
29
40
  ],
41
+ "dct_issued_s": "1905-06-27",
42
+ "gbl_indexYear_im": [
43
+ "2005"
44
+ ],
45
+ "gbl_dateRange_drsim": [
46
+ "[2005 TO 2005]"
47
+ ],
30
48
  "dct_spatial_sm": [
31
49
  "Elkhorn Slough (Calif.)",
32
50
  "Monterey Bay (Calif.)"
33
51
  ],
34
- "solr_geom": "ENVELOPE(-121.7948738, -121.7389503, 36.8606925, 36.8085911)",
35
- "solr_year_i": 2005,
36
- "stanford_rights_metadata_s": "<?xml version=\"1.0\"?>\n<rightsMetadata>\n <access type=\"discover\">\n <machine>\n <world/>\n </machine>\n </access>\n <access type=\"read\">\n <machine>\n <group>Stanford</group>\n </machine>\n </access>\n <use>\n <human type=\"useAndReproduction\">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.</human>\n <human type=\"creativeCommons\"/>\n <machine type=\"creativeCommons\"/>\n </use>\n <copyright>\n <human>Copyright ownership resides with the originator.</human>\n </copyright>\n</rightsMetadata>\n",
37
- "geoblacklight_version": "1.0"
52
+ "locn_geometry": "ENVELOPE(-121.7948738,-121.7389503,36.8606925,36.8085911)",
53
+ "dcat_centroid_ss": "36.8346418,-121.76691205",
54
+ "dct_rights_sm": [
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"
56
+ ],
57
+ "dct_accessRights_s": "Restricted",
58
+ "dct_format_s": "GeoTIFF",
59
+ "gbl_wxsIdentifier_s": "druid:dp018hs9766",
60
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://stacks.stanford.edu/file/druid:dp018hs9766/data.zip\",\"http://schema.org/url\":\"http://purl.stanford.edu/dp018hs9766\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/dp/018/hs/9766/iso19139.xml\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/dp018hs9766.mods\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
61
+ "id": "stanford-dp018hs9766",
62
+ "dct_identifier_sm": [
63
+ "http://purl.stanford.edu/dp018hs9766"
64
+ ],
65
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
66
+ "gbl_mdVersion_s": "Aardvark"
38
67
  }
@@ -0,0 +1,48 @@
1
+ {
2
+ "id": "all-relationships",
3
+ "gbl_mdVersion_s": "Aardvark",
4
+ "dct_title_s": "All Relationships",
5
+ "dct_description_sm": [
6
+ "This example record is to show all of the possible item relations."
7
+ ],
8
+ "dct_creator_sm": [
9
+ "GeoBlacklight Community"
10
+ ],
11
+ "gbl_resourceClass_sm": [
12
+ "Other"
13
+ ],
14
+ "dct_temporal_sm": [
15
+ "1900"
16
+ ],
17
+ "dct_spatial_sm": [
18
+ "United States"
19
+ ],
20
+ "pcdm_memberOf_sm": [
21
+ "the-related-record"
22
+ ],
23
+ "dct_isPartOf_sm": [
24
+ "the-related-record"
25
+ ],
26
+ "dct_source_sm": [
27
+ "the-related-record"
28
+ ],
29
+ "dct_isReplacedBy_sm": [
30
+ "the-related-record"
31
+ ],
32
+ "dct_isVersionOf_sm": [
33
+ "the-related-record"
34
+ ],
35
+ "dct_relation_sm": [
36
+ "the-related-record"
37
+ ],
38
+ "dct_replaces_sm": [
39
+ "the-related-record"
40
+ ],
41
+ "dct_format_s": "Shapefile",
42
+ "gbl_georeferenced_b": false,
43
+ "dct_references_s": "{\"http://schema.org/url\":\"https://example.com\"}",
44
+ "schema_provider_s": "GeoBlacklight Community",
45
+ "dct_accessRights_s": "Public",
46
+ "gbl_suppressed_b": false,
47
+ "gbl_mdModified_dt": "2021-08-25T15:31:34Z"
48
+ }