geoblacklight 4.0.0.pre.alpha.3 → 4.0.0.pre.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) 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/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 +45 -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 +26 -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/config/locales/geoblacklight.en.yml +4 -1
  54. data/geoblacklight.gemspec +6 -6
  55. data/lib/generators/geoblacklight/install_generator.rb +1 -1
  56. data/lib/generators/geoblacklight/templates/assets/_customizations.scss +5 -4
  57. data/lib/generators/geoblacklight/templates/assets/application.scss +0 -3
  58. data/lib/generators/geoblacklight/templates/catalog_controller.rb +74 -56
  59. data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +5 -5
  60. data/lib/generators/geoblacklight/templates/settings.yml +36 -23
  61. data/lib/geoblacklight/bounding_box.rb +4 -0
  62. data/lib/geoblacklight/constants.rb +3 -0
  63. data/lib/geoblacklight/engine.rb +3 -2
  64. data/lib/geoblacklight/faraday_middleware/follow_redirects.rb +176 -0
  65. data/lib/geoblacklight/item_viewer.rb +13 -1
  66. data/lib/geoblacklight/metadata/base.rb +2 -1
  67. data/lib/geoblacklight/version.rb +1 -1
  68. data/lib/geoblacklight/view_helper_override.rb +2 -28
  69. data/lib/geoblacklight.rb +0 -10
  70. data/lib/tasks/geoblacklight.rake +1 -1
  71. data/schema/geoblacklight-schema-aardvark.json +3 -23
  72. data/solr/conf/schema.xml +37 -43
  73. data/solr/conf/solrconfig.xml +17 -17
  74. data/spec/components/geoblacklight/icon_facet_item_component_spec.rb +17 -0
  75. data/spec/controllers/catalog_controller_spec.rb +1 -1
  76. data/spec/features/download_layer_spec.rb +31 -14
  77. data/spec/features/esri_viewer_spec.rb +5 -1
  78. data/spec/features/full_screen_controll_spec.rb +15 -0
  79. data/spec/features/home_page_spec.rb +2 -2
  80. data/spec/features/index_map_spec.rb +2 -2
  81. data/spec/features/missing_metadata_spec.rb +1 -1
  82. data/spec/features/multiple_downloads_spec.rb +2 -1
  83. data/spec/features/relations_spec.rb +1 -1
  84. data/spec/features/saved_searches_spec.rb +1 -1
  85. data/spec/features/search_results_complex_geometry_spec.rb +24 -0
  86. data/spec/features/search_results_icons_spec.rb +16 -0
  87. data/spec/features/search_results_map_spec.rb +2 -2
  88. data/spec/features/search_spec.rb +17 -0
  89. data/spec/features/show_page_download_spec.rb +6 -3
  90. data/spec/features/show_page_metadata_spec.rb +2 -2
  91. data/spec/features/split_view.html.erb_spec.rb +12 -1
  92. data/spec/features/tilejson_spec.rb +22 -0
  93. data/spec/features/tms_spec.rb +2 -2
  94. data/spec/features/web_services_modal_spec.rb +35 -2
  95. data/spec/features/wmts_spec.rb +34 -0
  96. data/spec/features/xyz_spec.rb +10 -0
  97. data/spec/fixtures/manifests/tilejson.json +21 -0
  98. data/spec/fixtures/manifests/wmts-multiple.xml +813 -0
  99. data/spec/fixtures/manifests/wmts-single.xml +126 -0
  100. data/spec/fixtures/solr_documents/README.md +46 -43
  101. data/spec/fixtures/solr_documents/actual-papermap1.json +2 -1
  102. data/spec/fixtures/solr_documents/actual-point1.json +2 -1
  103. data/spec/fixtures/solr_documents/actual-polygon1.json +2 -1
  104. data/spec/fixtures/solr_documents/actual-raster1.json +3 -2
  105. data/spec/fixtures/solr_documents/baruch_ancestor1.json +2 -1
  106. data/spec/fixtures/solr_documents/baruch_ancestor2.json +2 -1
  107. data/spec/fixtures/solr_documents/baruch_documentation_download.json +1 -1
  108. data/spec/fixtures/solr_documents/bbox-spans-180.json +2 -1
  109. data/spec/fixtures/solr_documents/cornell_html_metadata.json +4 -3
  110. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +3 -2
  111. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +3 -2
  112. data/spec/fixtures/solr_documents/esri-feature-layer.json +2 -1
  113. data/spec/fixtures/solr_documents/esri-image-map-layer.json +3 -2
  114. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +2 -1
  115. data/spec/fixtures/solr_documents/esri-wms-layer.json +2 -1
  116. data/spec/fixtures/solr_documents/harvard_raster.json +3 -2
  117. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +3 -2
  118. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +2 -1
  119. data/spec/fixtures/solr_documents/index-map-polygon.json +2 -1
  120. data/spec/fixtures/solr_documents/index-map-stanford.json +2 -1
  121. data/spec/fixtures/solr_documents/index_map_point.json +3 -2
  122. data/spec/fixtures/solr_documents/metadata_no_provider.json +2 -1
  123. data/spec/fixtures/solr_documents/multiple-downloads.json +3 -2
  124. data/spec/fixtures/solr_documents/no_spatial.json +1 -4
  125. data/spec/fixtures/solr_documents/oembed.json +2 -1
  126. data/spec/fixtures/solr_documents/princeton-child1.json +3 -2
  127. data/spec/fixtures/solr_documents/princeton-child2.json +3 -2
  128. data/spec/fixtures/solr_documents/princeton-child3.json +2 -1
  129. data/spec/fixtures/solr_documents/princeton-child4.json +3 -2
  130. data/spec/fixtures/solr_documents/princeton-parent.json +5 -3
  131. data/spec/fixtures/solr_documents/public_direct_download.json +2 -1
  132. data/spec/fixtures/solr_documents/public_iiif_princeton.json +3 -2
  133. data/spec/fixtures/solr_documents/public_polygon_mit.json +2 -1
  134. data/spec/fixtures/solr_documents/restricted-line.json +2 -1
  135. data/spec/fixtures/solr_documents/tilejson.json +48 -0
  136. data/spec/fixtures/solr_documents/tms.json +15 -18
  137. data/spec/fixtures/solr_documents/umn_metro_result1.json +5 -3
  138. data/spec/fixtures/solr_documents/umn_state_result1.json +3 -2
  139. data/spec/fixtures/solr_documents/umn_state_result2.json +3 -5
  140. data/spec/fixtures/solr_documents/uva_slug_colon.json +2 -1
  141. data/spec/fixtures/solr_documents/wmts-multiple.json +41 -0
  142. data/spec/fixtures/solr_documents/wmts-single-layer.json +48 -0
  143. data/spec/fixtures/solr_documents/xyz.json +46 -0
  144. data/spec/helpers/geoblacklight_helper_spec.rb +12 -35
  145. data/spec/lib/geoblacklight/document_presenter_spec.rb +3 -3
  146. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
  147. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
  148. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +1 -1
  149. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
  150. data/spec/lib/geoblacklight/download_spec.rb +2 -2
  151. data/spec/lib/geoblacklight/metadata/base_spec.rb +19 -1
  152. data/spec/lib/geoblacklight/references_spec.rb +1 -1
  153. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +5 -0
  154. data/spec/lib/geoblacklight/view_helper_override_spec.rb +0 -10
  155. data/spec/models/concerns/geoblacklight/bbox_filter_field_spec.rb +77 -0
  156. data/spec/models/concerns/geoblacklight/bbox_filter_query_spec.rb +105 -0
  157. data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +2 -1
  158. data/spec/models/concerns/geoblacklight/suppressed_records_search_behavior_spec.rb +31 -0
  159. data/spec/presenters/geoblacklight/bbox_item_presenter_spec.rb +36 -0
  160. data/spec/spec_helper.rb +6 -1
  161. data/spec/test_app_templates/Gemfile.extra +1 -0
  162. data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -4
  163. data/spec/views/catalog/_show_downloads.html.erb_spec.rb +5 -5
  164. data/template.rb +2 -4
  165. data/vendor/assets/images/fullscreen.png +0 -0
  166. data/vendor/assets/images/fullscreen@2x.png +0 -0
  167. data/vendor/assets/javascripts/Leaflet.fullscreen.js +152 -0
  168. data/vendor/assets/javascripts/esri-leaflet.js +10 -3
  169. data/vendor/assets/javascripts/esri-leaflet.js.map +1 -1
  170. data/vendor/assets/javascripts/leaflet-iiif.js +39 -18
  171. data/vendor/assets/javascripts/leaflet-src.js.erb +14062 -0
  172. data/vendor/assets/javascripts/leaflet-src.js.map +1 -1
  173. data/vendor/assets/stylesheets/leaflet.css +640 -634
  174. data/vendor/assets/stylesheets/leaflet.fullscreen.css +40 -0
  175. metadata +92 -49
  176. data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +0 -71
  177. data/app/views/catalog/_download_generated_link.html.erb +0 -4
  178. data/app/views/catalog/_download_link.html.erb +0 -3
  179. data/app/views/catalog/_downloads_generated.html.erb +0 -6
  180. data/app/views/catalog/_downloads_primary.html.erb +0 -21
  181. data/app/views/catalog/_downloads_secondary.html.erb +0 -39
  182. data/app/views/catalog/_icon_facet.html.erb +0 -16
  183. data/bin/coverage.rb +0 -36
  184. data/lib/generators/geoblacklight/templates/Procfile +0 -3
  185. data/lib/generators/geoblacklight/templates/package.json +0 -14
  186. data/lib/generators/geoblacklight/templates/webpacker.yml +0 -67
  187. data/lib/generators/geoblacklight/webpacker_generator.rb +0 -36
  188. data/lib/geoblacklight/catalog_helper_override.rb +0 -14
  189. data/spec/models/concerns/geoblacklight/spatial_search_behavior_spec.rb +0 -97
  190. data/vendor/assets/javascripts/leaflet.js.erb +0 -13922
  191. data/vendor/assets/stylesheets/leaflet-label.css +0 -54
@@ -0,0 +1,126 @@
1
+ <Capabilities xmlns="http://www.opengis.net/wmts/1.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd" version="1.0.0">
2
+ <ows:ServiceIdentification>
3
+ <ows:Title>"Mosaic"</ows:Title>
4
+ <ows:ServiceType>OGC WMTS</ows:ServiceType>
5
+ <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
6
+ </ows:ServiceIdentification>
7
+ <ows:OperationsMetadata>
8
+ <ows:Operation name="GetCapabilities">
9
+ <ows:DCP>
10
+ <ows:HTTP>
11
+ <ows:Get xlink:href="https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255">
12
+ <ows:Constraint name="GetEncoding">
13
+ <ows:AllowedValues>
14
+ <ows:Value>RESTful</ows:Value>
15
+ </ows:AllowedValues>
16
+ </ows:Constraint>
17
+ </ows:Get>
18
+ </ows:HTTP>
19
+ </ows:DCP>
20
+ </ows:Operation>
21
+ <ows:Operation name="GetTile">
22
+ <ows:DCP>
23
+ <ows:HTTP>
24
+ <ows:Get xlink:href="https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255">
25
+ <ows:Constraint name="GetEncoding">
26
+ <ows:AllowedValues>
27
+ <ows:Value>RESTful</ows:Value>
28
+ </ows:AllowedValues>
29
+ </ows:Constraint>
30
+ </ows:Get>
31
+ </ows:HTTP>
32
+ </ows:DCP>
33
+ </ows:Operation>
34
+ </ows:OperationsMetadata>
35
+ <Contents>
36
+ <Layer>
37
+ <ows:Title>Mosaic</ows:Title>
38
+ <ows:Identifier>mosaic</ows:Identifier>
39
+ <ows:Abstract>Mosaic</ows:Abstract>
40
+ <ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
41
+ <ows:LowerCorner>19.22222222200001 39.74997750505241</ows:LowerCorner>
42
+ <ows:UpperCorner>29.356941715411907 43.083333000050004</ows:UpperCorner>
43
+ </ows:WGS84BoundingBox>
44
+ <Style isDefault="true">
45
+ <ows:Identifier>default</ows:Identifier>
46
+ </Style>
47
+ <Format>image/png</Format>
48
+ <TileMatrixSetLink>
49
+ <TileMatrixSet>WebMercatorQuad</TileMatrixSet>
50
+ </TileMatrixSetLink>
51
+ <ResourceURL format="image/png" resourceType="tile" template="https://map-tiles-staging.princeton.edu/mosaicjson/tiles/WebMercatorQuad/{TileMatrix}/{TileCol}/{TileRow}@1x.png?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255"/>
52
+ </Layer>
53
+ <TileMatrixSet>
54
+ <ows:Identifier>WebMercatorQuad</ows:Identifier>
55
+ <ows:SupportedCRS>EPSG:3857</ows:SupportedCRS>
56
+
57
+
58
+ <TileMatrix>
59
+ <ows:Identifier>8</ows:Identifier>
60
+ <ScaleDenominator>2183915.09386217</ScaleDenominator>
61
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
62
+ <TileWidth>256</TileWidth>
63
+ <TileHeight>256</TileHeight>
64
+ <MatrixWidth>256</MatrixWidth>
65
+ <MatrixHeight>256</MatrixHeight>
66
+ </TileMatrix>
67
+
68
+
69
+ <TileMatrix>
70
+ <ows:Identifier>9</ows:Identifier>
71
+ <ScaleDenominator>1091957.54693108</ScaleDenominator>
72
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
73
+ <TileWidth>256</TileWidth>
74
+ <TileHeight>256</TileHeight>
75
+ <MatrixWidth>512</MatrixWidth>
76
+ <MatrixHeight>512</MatrixHeight>
77
+ </TileMatrix>
78
+
79
+
80
+ <TileMatrix>
81
+ <ows:Identifier>10</ows:Identifier>
82
+ <ScaleDenominator>545978.773465544</ScaleDenominator>
83
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
84
+ <TileWidth>256</TileWidth>
85
+ <TileHeight>256</TileHeight>
86
+ <MatrixWidth>1024</MatrixWidth>
87
+ <MatrixHeight>1024</MatrixHeight>
88
+ </TileMatrix>
89
+
90
+
91
+ <TileMatrix>
92
+ <ows:Identifier>11</ows:Identifier>
93
+ <ScaleDenominator>272989.386732772</ScaleDenominator>
94
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
95
+ <TileWidth>256</TileWidth>
96
+ <TileHeight>256</TileHeight>
97
+ <MatrixWidth>2048</MatrixWidth>
98
+ <MatrixHeight>2048</MatrixHeight>
99
+ </TileMatrix>
100
+
101
+
102
+ <TileMatrix>
103
+ <ows:Identifier>12</ows:Identifier>
104
+ <ScaleDenominator>136494.693366386</ScaleDenominator>
105
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
106
+ <TileWidth>256</TileWidth>
107
+ <TileHeight>256</TileHeight>
108
+ <MatrixWidth>4096</MatrixWidth>
109
+ <MatrixHeight>4096</MatrixHeight>
110
+ </TileMatrix>
111
+
112
+
113
+ <TileMatrix>
114
+ <ows:Identifier>13</ows:Identifier>
115
+ <ScaleDenominator>68247.346683193</ScaleDenominator>
116
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
117
+ <TileWidth>256</TileWidth>
118
+ <TileHeight>256</TileHeight>
119
+ <MatrixWidth>8192</MatrixWidth>
120
+ <MatrixHeight>8192</MatrixHeight>
121
+ </TileMatrix>
122
+
123
+ </TileMatrixSet>
124
+ </Contents>
125
+ <ServiceMetadataURL xlink:href="https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255"/>
126
+ </Capabilities>
@@ -6,47 +6,50 @@ If you add a new document, please add it to the table below, and indicate its pu
6
6
 
7
7
  If you add a new document, please add it to the table below, and indicate its purpose.
8
8
 
9
- |
10
- | Filename | Title | ID | Purpose |
9
+ |
10
+ | Filename | Title | ID | Purpose |
11
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 |
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 locn_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 gbl_suppressed_b property
40
+ | [princeton-child2](princeton-child2.json) | Princeton, Mercer County, New Jersey (Sheet 2) | princeton-jq085m62x | Child record for testing the gbl_suppressed_b property
41
+ | [princeton-child3](princeton-child3.json) | Princeton, Mercer County, New Jersey (Sheet 3) | princeton-n009w382v-fake1 | Child record for testing the gbl_suppressed_b property
42
+ | [princeton-child4](princeton-child4.json) | Princeton, Mercer County, New Jersey (Sheet 4) | princeton-n009w382v-fake2 | Child record for testing the gbl_suppressed_b property
43
+ | [princeton-parent](princeton-parent.json) | Princeton, Mercer County, New Jersey | princeton-1r66j405w | Parent record for testing the gbl_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) | Agricultural Districts, Columbia County NY, 2009 (TMS) | cugir-007957 | Includes a reference to a TMS 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
53
+ | [wmts-multiple](wmts-multiple.json) | Orthofoto 2016 Wien (WMTS) | princeton-fk4db9hn29 | Raster dataset with gbl_wxsIdentifier_s value and reference to WMTS service that supports multiple layers
54
+ | [wmts-single-layer](wmts-single-layer.json) | The Balkans [and] Turkey : G.S.G.S. no. 2097 | princeton-fk4544658v-wmts | Raster mosaic dataset with reference to a WMTS service that supports one layer
55
+ | [xyz](xyz.json)| Quaternary Fault and Fold Database of the United States (XYZ) | 6f47b103-9955-4bbe-a364-387039623106-xyz | Line shapefile with an XYZ tile service reference
@@ -32,7 +32,8 @@
32
32
  "[1996 TO 1996]"
33
33
  ],
34
34
  "locn_geometry": "ENVELOPE(-13,4,62,49)",
35
- "dcat_centroid_ss": "55.5,-4.5",
35
+ "dcat_bbox": "ENVELOPE(-13,4,62,49)",
36
+ "dcat_centroid": "55.5,-4.5",
36
37
  "dct_accessRights_s": "Public",
37
38
  "dct_format_s": "Paper",
38
39
  "gbl_wxsIdentifier_s": "MIT:001145244",
@@ -42,7 +42,8 @@
42
42
  "New York, New York"
43
43
  ],
44
44
  "locn_geometry": "ENVELOPE(-74.24856464,-73.73228698,40.89620987,40.49956589)",
45
- "dcat_centroid_ss": "40.697887879999996,-73.99042581",
45
+ "dcat_bbox": "ENVELOPE(-74.24856464,-73.73228698,40.89620987,40.49956589)",
46
+ "dcat_centroid": "40.697887879999996,-73.99042581",
46
47
  "dct_accessRights_s": "Public",
47
48
  "dct_format_s": "Shapefile",
48
49
  "gbl_wxsIdentifier_s": "sdr:nyu_2451_34564",
@@ -34,7 +34,8 @@
34
34
  "[2004 TO 2004]"
35
35
  ],
36
36
  "locn_geometry": "ENVELOPE(-71.163984,-71.052581,42.408316,42.34757)",
37
- "dcat_centroid_ss": "42.377943,-71.1082825",
37
+ "dcat_bbox": "ENVELOPE(-71.163984,-71.052581,42.408316,42.34757)",
38
+ "dcat_centroid": "42.377943,-71.1082825",
38
39
  "dct_accessRights_s": "Public",
39
40
  "dct_format_s": "Shapefile",
40
41
  "gbl_wxsIdentifier_s": "sde:GISPORTAL.GISOWNER01.CAMBRIDGEGRID100_04",
@@ -28,7 +28,7 @@
28
28
  "Multibeam mapping"
29
29
  ],
30
30
  "dcat_theme_sm": [
31
- "Imagery and Base Maps",
31
+ "Imagery",
32
32
  "Elevation",
33
33
  "Inland Waters"
34
34
  ],
@@ -50,7 +50,8 @@
50
50
  "Monterey Bay (Calif.)"
51
51
  ],
52
52
  "locn_geometry": "ENVELOPE(-121.7948738,-121.7389503,36.8606925,36.8085911)",
53
- "dcat_centroid_ss": "36.8346418,-121.76691205",
53
+ "dcat_bbox": "ENVELOPE(-121.7948738,-121.7389503,36.8606925,36.8085911)",
54
+ "dcat_centroid": "36.8346418,-121.76691205",
54
55
  "dct_rights_sm": [
55
56
  "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
  ],
@@ -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",