geoblacklight 3.3.0 → 4.0.0.pre.alpha.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +34 -28
  3. data/.rubocop.yml +5 -0
  4. data/.rubocop_todo.yml +11 -6
  5. data/README.md +1 -1
  6. data/Rakefile +7 -8
  7. data/app/assets/images/blacklight/michigan-state-university.svg +6 -0
  8. data/app/assets/images/blacklight/pennsylvania-state-university.svg +6 -0
  9. data/app/assets/images/blacklight/purdue-university.svg +6 -0
  10. data/app/assets/images/blacklight/the-ohio-state-university.svg +7 -0
  11. data/app/assets/images/blacklight/university-of-chicago.svg +6 -0
  12. data/app/assets/images/blacklight/university-of-illinois-urbana-champaign.svg +6 -0
  13. data/app/assets/images/blacklight/university-of-iowa.svg +5 -0
  14. data/app/assets/images/blacklight/university-of-maryland.svg +5 -0
  15. data/app/assets/images/blacklight/university-of-michigan.svg +5 -0
  16. data/app/assets/images/blacklight/university-of-minnesota.svg +5 -0
  17. data/app/assets/images/blacklight/university-of-nebraska-lincoln.svg +8 -0
  18. data/app/assets/images/blacklight/university-of-wisconsin-madison.svg +5 -0
  19. data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +41 -0
  20. data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +6 -0
  21. data/app/components/geoblacklight/homepage_feature_facet_component.html.erb +11 -0
  22. data/app/components/geoblacklight/homepage_feature_facet_component.rb +13 -0
  23. data/{lib → app/helpers}/geoblacklight/geoblacklight_helper_behavior.rb +6 -4
  24. data/app/helpers/geoblacklight_helper.rb +1 -22
  25. data/app/models/concerns/geoblacklight/solr_document/citation.rb +2 -2
  26. data/app/models/concerns/geoblacklight/solr_document.rb +4 -4
  27. data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +3 -3
  28. data/app/views/catalog/_arcgis.html.erb +1 -1
  29. data/app/views/catalog/_data_dictionary.html.erb +1 -2
  30. data/app/views/catalog/_downloads_primary.html.erb +1 -1
  31. data/app/views/catalog/_header_icons.html.erb +1 -1
  32. data/app/views/catalog/_home_text.html.erb +7 -29
  33. data/app/views/catalog/_show_header_default.html.erb +1 -1
  34. data/app/views/relation/_relations.html.erb +15 -0
  35. data/app/views/relation/index.html.erb +4 -16
  36. data/app/views/relation/index.json.jbuilder +6 -2
  37. data/config/initializers/new_gbl_settings_defaults_3_4.yml +6 -0
  38. data/config/initializers/rails_config.rb +0 -4
  39. data/config/locales/geoblacklight.en.yml +8 -0
  40. data/geoblacklight.gemspec +1 -1
  41. data/lib/generators/geoblacklight/templates/catalog_controller.rb +82 -35
  42. data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +195 -0
  43. data/lib/generators/geoblacklight/templates/settings.yml +87 -22
  44. data/lib/geoblacklight/download/geojson_download.rb +1 -1
  45. data/lib/geoblacklight/download/geotiff_download.rb +1 -1
  46. data/lib/geoblacklight/download/hgl_download.rb +1 -1
  47. data/lib/geoblacklight/download/kmz_download.rb +1 -1
  48. data/lib/geoblacklight/download/shapefile_download.rb +1 -1
  49. data/lib/geoblacklight/engine.rb +0 -2
  50. data/lib/geoblacklight/geometry.rb +18 -3
  51. data/lib/geoblacklight/references.rb +1 -1
  52. data/lib/geoblacklight/relation/ancestors.rb +4 -3
  53. data/lib/geoblacklight/relation/descendants.rb +4 -3
  54. data/lib/geoblacklight/relation/relation_response.rb +21 -6
  55. data/lib/geoblacklight/version.rb +1 -1
  56. data/lib/geoblacklight/view_helper_override.rb +1 -1
  57. data/lib/geoblacklight.rb +0 -1
  58. data/schema/{geoblacklight-schema.json → geoblacklight-schema-1.0.json} +1 -1
  59. data/schema/geoblacklight-schema-aardvark.json +211 -0
  60. data/solr/conf/schema.xml +38 -30
  61. data/solr/conf/solrconfig.xml +15 -15
  62. data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +39 -0
  63. data/spec/config/initializers/rails_config_spec.rb +9 -8
  64. data/spec/controllers/catalog_controller_spec.rb +6 -6
  65. data/spec/features/download_layer_spec.rb +1 -1
  66. data/spec/features/esri_viewer_spec.rb +1 -1
  67. data/spec/features/home_page_spec.rb +4 -4
  68. data/spec/features/layer_opacity_spec.rb +1 -0
  69. data/spec/features/metadata_panel_spec.rb +1 -1
  70. data/spec/features/missing_metadata_spec.rb +2 -2
  71. data/spec/features/relations_spec.rb +2 -2
  72. data/spec/features/search_results_map_spec.rb +2 -1
  73. data/spec/features/search_results_overlap_ratio_spec.rb +2 -2
  74. data/spec/features/split_view.html.erb_spec.rb +15 -11
  75. data/spec/fixtures/solr_documents/README.md +48 -36
  76. data/spec/fixtures/solr_documents/actual-papermap1.json +41 -18
  77. data/spec/fixtures/solr_documents/actual-point1.json +47 -27
  78. data/spec/fixtures/solr_documents/actual-polygon1.json +43 -18
  79. data/spec/fixtures/solr_documents/actual-raster1.json +52 -23
  80. data/spec/fixtures/solr_documents/all-relationships.json +48 -0
  81. data/spec/fixtures/solr_documents/baruch_ancestor1.json +62 -37
  82. data/spec/fixtures/solr_documents/baruch_ancestor2.json +62 -37
  83. data/spec/fixtures/solr_documents/baruch_documentation_download.json +60 -34
  84. data/spec/fixtures/solr_documents/bbox-spans-180.json +34 -16
  85. data/spec/fixtures/solr_documents/cornell_html_metadata.json +46 -26
  86. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +43 -25
  87. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +45 -28
  88. data/spec/fixtures/solr_documents/esri-feature-layer.json +44 -34
  89. data/spec/fixtures/solr_documents/esri-image-map-layer.json +45 -31
  90. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +42 -17
  91. data/spec/fixtures/solr_documents/esri-wms-layer.json +46 -21
  92. data/spec/fixtures/solr_documents/harvard_raster.json +55 -36
  93. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +35 -22
  94. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +48 -27
  95. data/spec/fixtures/solr_documents/index-map-polygon.json +48 -27
  96. data/spec/fixtures/solr_documents/index-map-stanford.json +54 -25
  97. data/spec/fixtures/solr_documents/index_map_point.json +54 -26
  98. data/spec/fixtures/solr_documents/metadata_no_geom.json +27 -0
  99. data/spec/fixtures/solr_documents/metadata_no_provider.json +39 -0
  100. data/spec/fixtures/solr_documents/multiple-downloads.json +33 -20
  101. data/spec/fixtures/solr_documents/no_locn_geometry.json +25 -0
  102. data/spec/fixtures/solr_documents/no_spatial.json +37 -19
  103. data/spec/fixtures/solr_documents/oembed.json +34 -17
  104. data/spec/fixtures/solr_documents/princeton-child1.json +45 -28
  105. data/spec/fixtures/solr_documents/princeton-child2.json +45 -28
  106. data/spec/fixtures/solr_documents/princeton-child3.json +45 -28
  107. data/spec/fixtures/solr_documents/princeton-child4.json +45 -28
  108. data/spec/fixtures/solr_documents/princeton-parent.json +46 -23
  109. data/spec/fixtures/solr_documents/public_direct_download.json +48 -21
  110. data/spec/fixtures/solr_documents/public_iiif_princeton.json +49 -24
  111. data/spec/fixtures/solr_documents/public_polygon_mit.json +31 -15
  112. data/spec/fixtures/solr_documents/restricted-line.json +52 -21
  113. data/spec/fixtures/solr_documents/the-related-record.json +27 -0
  114. data/spec/fixtures/solr_documents/tms.json +33 -17
  115. data/spec/fixtures/solr_documents/umn_metro_result1.json +44 -28
  116. data/spec/fixtures/solr_documents/umn_state_result1.json +44 -26
  117. data/spec/fixtures/solr_documents/umn_state_result2.json +45 -24
  118. data/spec/fixtures/solr_documents/uva_slug_colon.json +43 -20
  119. data/spec/{lib → helpers}/geoblacklight/geoblacklight_helper_behavior_spec.rb +1 -0
  120. data/spec/helpers/geoblacklight_helper_spec.rb +0 -19
  121. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
  122. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
  123. data/spec/lib/geoblacklight/download/hgl_download_spec.rb +1 -1
  124. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +1 -1
  125. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
  126. data/spec/lib/geoblacklight/download_spec.rb +1 -1
  127. data/spec/lib/geoblacklight/geometry_spec.rb +15 -4
  128. data/spec/lib/geoblacklight/references_spec.rb +2 -2
  129. data/spec/lib/geoblacklight/relation/ancestors_spec.rb +3 -3
  130. data/spec/lib/geoblacklight/relation/descendants_spec.rb +3 -3
  131. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +32 -17
  132. data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -4
  133. data/spec/spec_helper.rb +2 -0
  134. data/spec/support/view_component_capybara_test_helpers.rb +8 -0
  135. metadata +41 -29
  136. data/app/views/catalog/_document_action.html.erb +0 -6
  137. data/app/views/catalog/_facet_tag_item.html.erb +0 -3
  138. data/app/views/catalog/_facet_tag_layout.html.erb +0 -2
  139. data/app/views/relation/_ancestors.html.erb +0 -8
  140. data/app/views/relation/_descendants.html.erb +0 -15
  141. data/config/initializers/new_gbl_settings_defaults_3_3.yml +0 -10
  142. data/schema/format-values.md +0 -50
  143. data/schema/geoblacklight-schema-deprecated.md +0 -39
  144. data/schema/geoblacklight-schema.md +0 -323
  145. data/schema/geometry-type-values.md +0 -11
  146. data/schema/references.md +0 -23
  147. data/schema/schema-commentary.md +0 -198
  148. data/schema/subjects.md +0 -41
  149. data/schema/type-values.md +0 -10
  150. data/spec/fixtures/solr_documents/metadata_no_dct_provenance_s.json +0 -30
  151. data/spec/fixtures/solr_documents/metadata_no_layer_geom_type_s.json +0 -17
  152. data/spec/fixtures/solr_documents/metadata_no_solr_geom.json +0 -23
@@ -1,37 +1,58 @@
1
1
  {
2
- "geoblacklight_version":"1.0",
3
- "dc_identifier_s":"http://cugir.library.cornell.edu/catalog/cugir-008186#no-downloadUrl",
4
- "dc_title_s":"Index of Digital Elevation Models (DEM), New York",
5
- "dc_description_s":"This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile, but this record doesn't include a downloadUrl for the index map itself.",
6
- "dc_rights_s":"Public",
7
- "dct_provenance_s":"Cornell",
8
- "dct_references_s":"{\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\"}",
9
- "layer_id_s":"cugir008186",
10
- "layer_slug_s":"cugir-008186-no-downloadurl",
11
- "dc_type_s":"Dataset",
12
- "dc_format_s":"GeoTIFF",
13
- "layer_geom_type_s":"Raster",
14
- "layer_modified_dt":"2018-12-20T00:00:00Z",
15
- "dc_creator_sm":[
2
+ "dct_title_s": "Index of Digital Elevation Models (DEM), New York",
3
+ "dct_alternative_sm": [
4
+ "index-map-polygon-no-downloadurl"
5
+ ],
6
+ "dct_description_sm": [
7
+ "GeoJSON index map of polygons, but lacking a downloadUrl for the index itself. ",
8
+ "This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile. Each DEM raster has a pixel resolution of approximately 10 meters. Elevation values were derived from USGS contour lines mapped at a scale of 1:24,000. DEMs can be used as source data for digital orthophotos and as layers in geographic information systems for earth science analysis. DEMs can also serve as tools for volumetric analysis, for site location of towers, or for drainage basin delineation. These data are collected as part of the National Mapping Program."
9
+ ],
10
+ "dct_creator_sm": [
16
11
  "U.S. Geological Survey"
17
12
  ],
18
- "dc_publisher_sm":[
13
+ "dct_publisher_sm": [
19
14
  "U.S. Geological Survey"
20
15
  ],
21
- "dc_subject_sm":[
22
- "digital elevation model",
23
- "digital terrain model",
24
- "hypsography",
25
- "altitude",
26
- "topography",
27
- "Index maps"
16
+ "schema_provider_s": "Cornell",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
28
19
  ],
29
- "dct_spatial_sm":[
30
- "New York"
20
+ "gbl_resourceType_sm": [
21
+ "Raster data",
22
+ "Index maps",
23
+ "Digital elevation models",
24
+ "Digital terrain models"
31
25
  ],
32
- "dct_temporal_sm":[
26
+ "dct_subject_sm": [
27
+ "Hypsography",
28
+ "Altitude",
29
+ "Topography"
30
+ ],
31
+ "dcat_keyword_sm": [
32
+ "GBL Fixture records"
33
+ ],
34
+ "dct_temporal_sm": [
33
35
  "1995"
34
36
  ],
35
- "solr_geom":"ENVELOPE(-79.750232, -71.750494, 44.999963, 40.499893)",
36
- "solr_year_i":1995
37
+ "gbl_indexYear_im": [
38
+ "1995"
39
+ ],
40
+ "gbl_dateRange_drsim": [
41
+ "[1995 TO 1995]"
42
+ ],
43
+ "dct_spatial_sm": [
44
+ "New York"
45
+ ],
46
+ "locn_geometry": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
47
+ "dcat_centroid_ss": "42.749928,-75.750363",
48
+ "dct_accessRights_s": "Public",
49
+ "dct_format_s": "GeoTIFF",
50
+ "gbl_wxsIdentifier_s": "cugir008186",
51
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\",\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\"}",
52
+ "id": "cugir-008186",
53
+ "dct_identifier_sm": [
54
+ "http://cugir.library.cornell.edu/catalog/cugir-008186"
55
+ ],
56
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
57
+ "gbl_mdVersion_s": "Aardvark"
37
58
  }
@@ -1,37 +1,58 @@
1
1
  {
2
- "geoblacklight_version":"1.0",
3
- "dc_identifier_s":"http://cugir.library.cornell.edu/catalog/cugir-008186",
4
- "dc_title_s":"Index of Digital Elevation Models (DEM), New York",
5
- "dc_description_s":"This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile. Each DEM raster has a pixel resolution of approximately 10 meters. Elevation values were derived from USGS contour lines mapped at a scale of 1:24,000. DEMs can be used as source data for digital orthophotos and as layers in geographic information systems for earth science analysis. DEMs can also serve as tools for volumetric analysis, for site location of towers, or for drainage basin delineation. These data are collected as part of the National Mapping Program.",
6
- "dc_rights_s":"Public",
7
- "dct_provenance_s":"Cornell",
8
- "dct_references_s":"{\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://schema.org/downloadUrl\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\"}",
9
- "layer_id_s":"cugir008186",
10
- "layer_slug_s":"cugir-008186",
11
- "dc_type_s":"Dataset",
12
- "dc_format_s":"GeoTIFF",
13
- "layer_geom_type_s":"Raster",
14
- "layer_modified_dt":"2018-12-20T00:00:00Z",
15
- "dc_creator_sm":[
2
+ "dct_title_s": "Index of Digital Elevation Models (DEM), New York",
3
+ "dct_alternative_sm": [
4
+ "index-map-polygon"
5
+ ],
6
+ "dct_description_sm": [
7
+ "GeoJSON index map of polygons, with a downloadUrl for the index itself. ",
8
+ "This is an index of all the available DEM (digital elevation model) tiles within New York state. Download links are provided for each tile, but this record doesn't include a downloadUrl for the index map itself."
9
+ ],
10
+ "dct_creator_sm": [
16
11
  "U.S. Geological Survey"
17
12
  ],
18
- "dc_publisher_sm":[
13
+ "dct_publisher_sm": [
19
14
  "U.S. Geological Survey"
20
15
  ],
21
- "dc_subject_sm":[
22
- "digital elevation model",
23
- "digital terrain model",
24
- "hypsography",
25
- "altitude",
26
- "topography",
27
- "Index maps"
16
+ "schema_provider_s": "Cornell",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
28
19
  ],
29
- "dct_spatial_sm":[
30
- "New York"
20
+ "gbl_resourceType_sm": [
21
+ "Raster data",
22
+ "Index maps",
23
+ "Digital elevation models",
24
+ "Digital terrain models"
31
25
  ],
32
- "dct_temporal_sm":[
26
+ "dct_subject_sm": [
27
+ "Hypsography",
28
+ "Altitude",
29
+ "Topography"
30
+ ],
31
+ "dcat_keyword_sm": [
32
+ "GBL Fixture records"
33
+ ],
34
+ "dct_temporal_sm": [
33
35
  "1995"
34
36
  ],
35
- "solr_geom":"ENVELOPE(-79.750232, -71.750494, 44.999963, 40.499893)",
36
- "solr_year_i":1995
37
+ "gbl_indexYear_im": [
38
+ "1995"
39
+ ],
40
+ "gbl_dateRange_drsim": [
41
+ "[1995 TO 1995]"
42
+ ],
43
+ "dct_spatial_sm": [
44
+ "New York"
45
+ ],
46
+ "locn_geometry": "ENVELOPE(-79.750232,-71.750494,44.999963,40.499893)",
47
+ "dcat_centroid_ss": "42.749928,-75.750363",
48
+ "dct_accessRights_s": "Public",
49
+ "dct_format_s": "GeoTIFF",
50
+ "gbl_wxsIdentifier_s": "cugir008186",
51
+ "dct_references_s": "{\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/81/86/fgdc.html\",\"https://openindexmaps.org\":\"https://s3.amazonaws.com/cugir-data/00/81/86/cugir-008186-index.geojson\"}",
52
+ "id": "cugir-008186-no-downloadurl",
53
+ "dct_identifier_sm": [
54
+ "http://cugir.library.cornell.edu/catalog/cugir-008186#no-downloadUrl"
55
+ ],
56
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
57
+ "gbl_mdVersion_s": "Aardvark"
37
58
  }
@@ -1,37 +1,66 @@
1
1
  {
2
- "dc_identifier_s": "http://purl.stanford.edu/fb897vt9938",
3
- "dc_title_s": "Dabao Kinbōzu, Maps Index",
4
- "dc_description_s": "This polygon GeoJSON file is an index to 1:50000 scale maps of Davao (Philippines), titled 'Dabao Kinbōzu -- ダバオ近傍圖/Dabao Kinbōzu.’ This map series was originally produced by the Japanese Land Survey Department of the General Staff Headquarters in 1944. Stanford University Libraries holds a large collection of Japanese military and imperial maps, referred to as gaihōzu, or \"maps of outer lands.\" These maps were produced starting in the early Meiji (1868-1912) era and the end of World War II by the Land Survey Department of the General Staff Headquarters, the former Japanese Army. The Library is in the process of scanning and making available all of the maps in the collection. To create this index, footprints were generated using the fishnet tool, and metadata were supplied for the digitized paper maps by Stanford University Libraries. After the footprints were created, the GeoJSON was trimmed and labeled according to the sources.This layer provides an index map that can be used to locate individual scanned map sheets.",
5
- "dc_rights_s": "Public",
6
- "dct_provenance_s": "Stanford",
7
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/fb897vt9938\",\"http://schema.org/downloadUrl\":\"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/fb897vt9938.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/iso19139.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/default.html\",\"https://openindexmaps.org\": \"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\"}",
8
- "layer_id_s": "druid:fb897vt9938",
9
- "layer_slug_s": "stanford-fb897vt9938",
10
- "layer_geom_type_s": "Polygon",
11
- "layer_modified_dt": "2016-10-20T21:07:24Z",
12
- "dc_format_s": "GeoJSON",
13
- "dc_language_s": "English",
14
- "dc_type_s": "Dataset",
15
- "dc_publisher_s": "Stanford Digital Repository",
16
- "dc_creator_sm": [
2
+ "dct_title_s": "Dabao Kinbōzu, Maps Index",
3
+ "dct_alternative_sm": [
4
+ "index-map-stanford"
5
+ ],
6
+ "dct_description_sm": [
7
+ "old-style (pre-GeoJSON) index map of rectangular polygons. ",
8
+ "This polygon GeoJSON file is an index to 1:50000 scale maps of Davao (Philippines), titled \\'Dabao Kinbōzu -- ダバオ近傍圖/Dabao Kinbōzu.’ This map series was originally produced by the Japanese Land Survey Department of the General Staff Headquarters in 1944. Stanford University Libraries holds a large collection of Japanese military and imperial maps, referred to as gaihōzu, or \"maps of outer lands.\" These maps were produced starting in the early Meiji (1868-1912) era and the end of World War II by the Land Survey Department of the General Staff Headquarters, the former Japanese Army. The Library is in the process of scanning and making available all of the maps in the collection. To create this index, footprints were generated using the fishnet tool, and metadata were supplied for the digitized paper maps by Stanford University Libraries. After the footprints were created, the GeoJSON was trimmed and labeled according to the sources.This layer provides an index map that can be used to locate individual scanned map sheets."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
17
14
  "Stanford Geospatial Center"
18
15
  ],
19
- "dc_subject_sm": [
16
+ "dct_publisher_sm": [
17
+ "Stanford Digital Repository"
18
+ ],
19
+ "schema_provider_s": "Stanford",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Polygon data",
20
25
  "Military maps",
21
26
  "Topographic maps",
22
- "Index maps",
23
- "Grids (Cartography)",
24
- "Boundaries",
25
- "Military"
27
+ "Index maps"
28
+ ],
29
+ "dct_subject_sm": [
30
+ "Grids (Cartography)"
31
+ ],
32
+ "dcat_theme_sm": [
33
+ "Boundaries"
34
+ ],
35
+ "dcat_keyword_sm": [
36
+ "GBL Fixture records"
26
37
  ],
27
- "dct_issued_s": "2016",
28
38
  "dct_temporal_sm": [
29
39
  "1944"
30
40
  ],
41
+ "dct_issued_s": "1905-07-08",
42
+ "gbl_indexYear_im": [
43
+ "1944"
44
+ ],
45
+ "gbl_dateRange_drsim": [
46
+ "[1944 TO 1944]"
47
+ ],
31
48
  "dct_spatial_sm": [
32
49
  "Davao (Philippines)"
33
50
  ],
34
- "solr_geom": "ENVELOPE(125, 126, 7.3333, 6.6666)",
35
- "solr_year_i": 1944,
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 <world/>\n </machine>\n </access>\n <use>\n <human type=\"useAndReproduction\">This item is in the public domain. There are no restrictions on use.</human>\n <human type=\"creativeCommons\"/>\n <machine type=\"creativeCommons\"/>\n </use>\n <copyright>\n <human>This work is in the Public Domain, meaning that it is not subject to copyright.</human>\n </copyright>\n</rightsMetadata>\n"
37
- }
51
+ "locn_geometry": "ENVELOPE(125,126,7.3333,6.6666)",
52
+ "dcat_centroid_ss": "6.99995,125.5",
53
+ "dct_rights_sm": [
54
+ "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
+ "dct_accessRights_s": "Public",
57
+ "dct_format_s": "GeoJSON",
58
+ "gbl_wxsIdentifier_s": "druid:fb897vt9938",
59
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/default.html\",\"http://schema.org/url\":\"http://purl.stanford.edu/fb897vt9938\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:fb897vt9938/iso19139.xml\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/fb897vt9938.mods\",\"https://openindexmaps.org\":\"https://gist.githubusercontent.com/mejackreed/4a44f1f7cc4fbb926068738e903a9e96/raw/fedfb0e599d647920f084627b7dca8f88a358757/stanford-fb897vt9938.geojson\"}",
60
+ "id": "stanford-fb897vt9938",
61
+ "dct_identifier_sm": [
62
+ "http://purl.stanford.edu/fb897vt9938"
63
+ ],
64
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
65
+ "gbl_mdVersion_s": "Aardvark"
66
+ }
@@ -1,27 +1,55 @@
1
1
  {
2
- "dc_description_s": "This is a description",
3
- "solr_geom": "ENVELOPE(-74.783, -74.733, 40.20, 40.166)",
4
- "dct_references_s": "{\"https://openindexmaps.org\":\"https://raw.githubusercontent.com/OpenIndexMaps/edu.cornell/master/ny-aerial-photos-1960s.geojson\",\"http://schema.org/downloadUrl\":\"https://raw.githubusercontent.com/OpenIndexMaps/edu.cornell/master/ny-aerial-photos-1960s.geojson\"}",
5
- "dc_rights_s": "Public",
6
- "dct_provenance_s": "Cornell",
7
- "dc_subject_sm": [
8
- "Aerial photographs",
9
- "Index maps"
10
- ],
11
- "dc_format_s": "GeoJSON",
12
- "layer_slug_s": "cornell-ny-aerial-photos-1960s",
13
- "dc_creator_sm": [
14
- "Jane Doe"
15
- ],
16
- "dc_type_s": "Dataset",
17
- "dc_identifier_s": "cornell-ny-aerial-photos-1960s",
18
- "dc_publisher_s": "The Publisher",
19
- "dct_spatial_sm": [
20
- "New York"
21
- ],
22
- "dc_title_s": "New York Aerial Photos (1960s)",
23
- "dct_issued_s": "c.1960",
24
- "layer_geom_type_s": "Point",
25
- "dc_language_s": "English",
26
- "geoblacklight_version": "1.0"
27
- }
2
+ "dct_title_s": "New York Aerial Photos (1960s)",
3
+ "dct_alternative_sm": [
4
+ "index_map_point"
5
+ ],
6
+ "dct_description_sm": [
7
+ "GeoJSON index map of points. ",
8
+ "This is a description"
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Jane Doe"
15
+ ],
16
+ "dct_publisher_sm": [
17
+ "The Publisher"
18
+ ],
19
+ "schema_provider_s": "Cornell",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Point data",
25
+ "Aerial photographs",
26
+ "Index maps"
27
+ ],
28
+ "dcat_theme_sm": [
29
+ "Imagery and Base Maps"
30
+ ],
31
+ "dcat_keyword_sm": [
32
+ "GBL Fixture records"
33
+ ],
34
+ "dct_issued_s": "c.1960",
35
+ "gbl_indexYear_im": [
36
+ "1960"
37
+ ],
38
+ "gbl_dateRange_drsim": [
39
+ "[1960 TO 1969]"
40
+ ],
41
+ "dct_spatial_sm": [
42
+ "New York"
43
+ ],
44
+ "locn_geometry": "ENVELOPE(-74.783,-74.733,40.2,40.166)",
45
+ "dcat_centroid_ss": "40.183,-74.75800000000001",
46
+ "dct_accessRights_s": "Public",
47
+ "dct_format_s": "GeoJSON",
48
+ "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\"}",
49
+ "id": "cornell-ny-aerial-photos-1960s",
50
+ "dct_identifier_sm": [
51
+ "cornell-ny-aerial-photos-1960s"
52
+ ],
53
+ "gbl_mdModified_dt": "2021-06-11T17:52:15Z",
54
+ "gbl_mdVersion_s": "Aardvark"
55
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "dct_title_s": "Ames Library of South Asia Maps",
3
+ "dct_alternative_sm": [
4
+ "metadata_no_geom"
5
+ ],
6
+ "dct_description_sm": [
7
+ "This is a collection level record without spatial coordinates. ",
8
+ "A collection of maps covering Asia held by the University of Minnesota's Ames Library of South Asia."
9
+ ],
10
+ "dct_publisher_sm": [
11
+ "University of Minnesota"
12
+ ],
13
+ "schema_provider_s": "University of Minnesota",
14
+ "gbl_resourceClass_sm": [
15
+ "Collections"
16
+ ],
17
+ "dct_spatial_sm": [
18
+ "Asia",
19
+ "India",
20
+ "Afghanistan"
21
+ ],
22
+ "dct_accessRights_s": "Public",
23
+ "dct_references_s": "{\"http://schema.org/url\":\"https://umedia.lib.umn.edu/search?facets[collection_name_s][]=Ames+Library+of+South+Asia+Maps\"}",
24
+ "id": "05d-p16022coll246-noGeo",
25
+ "gbl_mdModified_dt": "2021-06-11T18:38:42Z",
26
+ "gbl_mdVersion_s": "Aardvark"
27
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "dct_title_s": "Social Explorer",
3
+ "dct_alternative_sm": [
4
+ "metadata_no_provider"
5
+ ],
6
+ "dct_description_sm": [
7
+ "This is a website record that does not have a Provider (aardvark)/ provider (GBL Metadata 1.0). ",
8
+ "Requires creating a free account or logging in through an organization with licensed access. This interactive website includes the entire US census history from 1790 to 2000, the American Community Survey (ACS), and the Religious Congregations and Membership Study (RCMS) from 1980 to 2000? the most complete census available on religion in the U.S. Overall, the site contains 39 billion data points, 200,000 variables, and 15,000 interactive maps"
9
+ ],
10
+ "dct_creator_sm": [
11
+ "Queens College (New York, N.Y.). Department of Sociology"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "Social Explorer"
15
+ ],
16
+ "gbl_resourceClass_sm": [
17
+ "Websites"
18
+ ],
19
+ "dcat_theme_sm": [
20
+ "Society"
21
+ ],
22
+ "dcat_keyword_sm": [
23
+ "licensed database",
24
+ "GBL Fixture records"
25
+ ],
26
+ "dct_temporal_sm": [
27
+ "1790-present"
28
+ ],
29
+ "dct_spatial_sm": [
30
+ "United States"
31
+ ],
32
+ "locn_geometry": "ENVELOPE(-179.9,-64.4,71.6,-14.8)",
33
+ "dcat_centroid_ss": "28.4,-122.15",
34
+ "dct_accessRights_s": "Restricted",
35
+ "dct_references_s": "{\"http://schema.org/url\":\"https://www.socialexplorer.com/\"}",
36
+ "id": "99-0001-noprovider",
37
+ "gbl_mdModified_dt": "2021-06-11T18:35:25Z",
38
+ "gbl_mdVersion_s": "Aardvark"
39
+ }
@@ -1,30 +1,43 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_identifier_s": "https://cugir.library.cornell.edu/catalog/cugir-007950",
4
- "dc_title_s": "Test record with additional download formats",
5
- "dc_description_s": "This is a test record containing new-style references as nested child documents. In addition to the origianl shapefile download, the references section contains additional PDF and KMZ downloads.",
6
- "dc_rights_s": "Public",
7
- "dct_provenance_s": "Cornell",
8
- "dct_references_s": "{\"http:\/\/schema.org\/downloadUrl\":[{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/cugir-007950.zip\",\"label\":\"Shapefile\"},{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/agBROO.pdf\",\"label\":\"PDF\"},{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/agBROO2011.kmz\",\"label\":\"KMZ\"}],\"http:\/\/www.opengis.net\/cat\/csw\/csdgm\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/fgdc.xml\",\"http:\/\/www.w3.org\/1999\/xhtml\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/fgdc.html\",\"http:\/\/www.opengis.net\/def\/serviceType\/ogc\/wfs\":\"https:\/\/cugir.library.cornell.edu\/geoserver\/cugir\/wfs\",\"http:\/\/www.opengis.net\/def\/serviceType\/ogc\/wms\":\"https:\/\/cugir.library.cornell.edu\/geoserver\/cugir\/wms\"}",
9
- "layer_id_s": "cugir007950",
10
- "layer_slug_s": "cugir-007950",
11
- "dc_type_s": "Dataset",
12
- "dc_format_s": "Shapefile",
13
- "layer_geom_type_s": "Polygon",
14
- "layer_modified_dt": "2019-05-24T00:00:00Z",
15
- "dc_creator_sm": [
2
+ "dct_title_s": "Test record with additional download formats",
3
+ "dct_alternative_sm": [
4
+ "multiple-downloads"
5
+ ],
6
+ "dct_description_sm": [
7
+ "This is a test record containing new-style references as nested child documents. In addition to the origianl shapefile download, the references section contains additional PDF and KMZ downloads."
8
+ ],
9
+ "dct_creator_sm": [
16
10
  "Cornell Institute for Resource Information Sciences (Cornell IRIS)",
17
11
  "NYS Department of Agriculture and Markets"
18
12
  ],
19
- "dc_subject_sm": [
13
+ "schema_provider_s": "Cornell",
14
+ "gbl_resourceClass_sm": [
15
+ "Datasets"
16
+ ],
17
+ "gbl_resourceType_sm": [
18
+ "Polygon data"
19
+ ],
20
+ "dct_subject_sm": [
20
21
  "New York State Agricultural District boundaries",
21
22
  "Agriculture and Markets",
22
23
  "Agricultural Districts Mapping Program"
23
24
  ],
24
- "dct_spatial_sm": ["Broome County NY"],
25
+ "dcat_keyword_sm": [
26
+ "GBL Fixture records"
27
+ ],
28
+ "dct_temporal_sm": [
29
+ "2011"
30
+ ],
25
31
  "dct_issued_s": "2011-02-28",
26
- "dct_temporal_sm": ["2011"],
27
- "dct_isPartOf_sm": ["Agricultural Districts (NYS Ag and Markets)"],
28
- "solr_geom": "ENVELOPE(-76.12987, -75.42034, 42.414648, 41.997963)",
29
- "solr_year_i": 2011
32
+ "dct_spatial_sm": [
33
+ "Broome County NY"
34
+ ],
35
+ "locn_geometry": "ENVELOPE(-76.12987,-75.42034,42.414648,41.997963)",
36
+ "dcat_centroid_ss": "42.2063055,-75.775105",
37
+ "dct_accessRights_s": "Public",
38
+ "dct_format_s": "Shapefile",
39
+ "dct_references_s": "{\"http:\/\/schema.org\/downloadUrl\":[{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/cugir-007950.zip\",\"label\":\"Shapefile\"},{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/agBROO.pdf\",\"label\":\"PDF\"},{\"url\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/agBROO2011.kmz\",\"label\":\"KMZ\"}],\"http:\/\/www.opengis.net\/cat\/csw\/csdgm\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/fgdc.xml\",\"http:\/\/www.w3.org\/1999\/xhtml\":\"https:\/\/cugir-data.s3.amazonaws.com\/00\/79\/50\/fgdc.html\",\"http:\/\/www.opengis.net\/def\/serviceType\/ogc\/wfs\":\"https:\/\/cugir.library.cornell.edu\/geoserver\/cugir\/wfs\",\"http:\/\/www.opengis.net\/def\/serviceType\/ogc\/wms\":\"https:\/\/cugir.library.cornell.edu\/geoserver\/cugir\/wms\"}",
40
+ "id": "cugir-007950",
41
+ "gbl_mdModified_dt": "2021-06-11T18:39:49Z",
42
+ "gbl_mdVersion_s": "Aardvark"
30
43
  }
@@ -0,0 +1,25 @@
1
+ {
2
+ "dct_title_s": "University of Minnesota Digital Conservancy DRUM",
3
+ "dct_alternative_sm": [
4
+ "no_locn_geometry"
5
+ ],
6
+ "dct_description_sm": [
7
+ "This is a collection level record without spatial coordinates or a Geometry Type (GBL Metadata 1.0). ",
8
+ "DRUM is a publicly available collection of digital research data generated by University of Minnesota researchers, students, and staff. Anyone can search and download the data housed in the repository, instantly or by request."
9
+ ],
10
+ "dct_publisher_sm": [
11
+ "University of Minnesota Digital Conservancy"
12
+ ],
13
+ "schema_provider_s": "University of Minnesota",
14
+ "gbl_resourceClass_sm": [
15
+ "Collections"
16
+ ],
17
+ "dcat_keyword_sm": [
18
+ "GBL Fixture records"
19
+ ],
20
+ "dct_accessRights_s": "Public",
21
+ "dct_references_s": "{\"http://schema.org/url\":\"https://conservancy.umn.edu/handle/11299/166578\"}",
22
+ "id": "05d-03-noGeomType",
23
+ "gbl_mdModified_dt": "2021-06-11T18:36:48Z",
24
+ "gbl_mdVersion_s": "Aardvark"
25
+ }
@@ -1,21 +1,39 @@
1
1
  {
2
- "dc_identifier_s": "c0515c4e-97dc-4fff-82cb-f65144482631",
3
- "dc_title_s": "ASTER Global Emissivity Dataset 1-kilometer V003 - AG1KM",
4
- "dc_rights_s": "Public",
5
- "layer_geom_type_s": "dataset",
6
- "dct_provenance_s": "U.S. Geological Survey, Department of the Interior",
7
- "dc_description_s": "The Advanced Spaceborne Thermal Emission and Reflection radiometer Global Emissivity Database (ASTER GED) was developed by the National Aeronautics and Space Administration's (NASA) Jet Propulsion Laboratory (JPL), California Institute of Technology. The North America portion of this collection was formerly called the North American ASTER Land Surface Emissivity Database (NAALSED) - a seasonal dataset consisting of mean summer (J-A-S) and winter (J-F-M) products. ASTER GED products are output on 1degree x 1 degree grids at 100-meter or 1-kilometer spatial resolution (nominal) and include the mean emissivity and standard deviation for all 5 ASTER thermal infrared bands, mean land surface temperature (LST) and standard deviation, a re-sampled ASTER GDEM (not included in the North America Winter products), land-water mask, mean Normalized Difference Vegetation Index (NDVI) and standard deviation, latitude, longitude, and observation count. Additional ASTER GED product information is available at https://lpdaac.usgs.gov/products/community_products_table. Product tiles are available in HDF and binary format and may be downloaded via HTTP by visiting the following data clients: NASA Reverb (http://reverb.echo.nasa.gov), LP DAAC Data Pool (http://e4ftl01.cr.usgs.gov/ASTT/), or EarthExplorer (http://earthexplorer.usgs.gov).",
8
- "layer_slug_s": "aster-global-emissivity-dataset-1-kilometer-v003-ag1kmcad20",
9
- "dc_subject_sm": [
10
- "imagery",
11
- "land surface temperature",
12
- "u.s. geological survey (usgs)",
13
- "earth observing system",
14
- "land processes distributed active archive center (lpdaac)",
15
- "aster",
16
- "normalized difference vegetation index",
17
- "terra",
18
- "image map",
19
- "emissivity"
20
- ]
2
+ "dct_title_s": "ASTER Global Emissivity Dataset 1-kilometer V003 - AG1KM",
3
+ "dct_alternative_sm": [
4
+ "no_spatial"
5
+ ],
6
+ "dct_description_sm": [
7
+ "File without geometry type or solr_geometry (will cause error). ",
8
+ "The Advanced Spaceborne Thermal Emission and Reflection radiometer Global Emissivity Database (ASTER GED) was developed by the National Aeronautics and Space Administration's (NASA) Jet Propulsion Laboratory (JPL), California Institute of Technology. The North America portion of this collection was formerly called the North American ASTER Land Surface Emissivity Database (NAALSED) - a seasonal dataset consisting of mean summer (J-A-S) and winter (J-F-M) products. ASTER GED products are output on 1degree x 1 degree grids at 100-meter or 1-kilometer spatial resolution (nominal) and include the mean emissivity and standard deviation for all 5 ASTER thermal infrared bands, mean land surface temperature (LST) and standard deviation, a re-sampled ASTER GDEM (not included in the North America Winter products), land-water mask, mean Normalized Difference Vegetation Index (NDVI) and standard deviation, latitude, longitude, and observation count. Additional ASTER GED product information is available at https://lpdaac.usgs.gov/products/community_products_table. Product tiles are available in HDF and binary format and may be downloaded via HTTP by visiting the following data clients: NASA Reverb (http://reverb.echo.nasa.gov), LP DAAC Data Pool (http://e4ftl01.cr.usgs.gov/ASTT/), or EarthExplorer (http://earthexplorer.usgs.gov)."
9
+ ],
10
+ "schema_provider_s": "U.S. Geological Survey, Department of the Interior",
11
+ "gbl_resourceClass_sm": [
12
+ "Imagery"
13
+ ],
14
+ "dct_subject_sm": [
15
+ "Land surface temperature",
16
+ "U.S. Geological survey (USGS)",
17
+ "Earth observing system",
18
+ "Land processes distributed active archive center (LPDAAC)",
19
+ "Aster",
20
+ "Normalized difference vegetation index",
21
+ "Terra",
22
+ "Image map",
23
+ "Emissivity"
24
+ ],
25
+ "dcat_theme_sm": [
26
+ "Imagery and Base Maps"
27
+ ],
28
+ "dcat_keyword_sm": [
29
+ "GBL Fixture records"
30
+ ],
31
+ "dct_accessRights_s": "Public",
32
+ "dct_references_s": "{}",
33
+ "id": "aster-global-emissivity-dataset-1-kilometer-v003-ag1kmcad20",
34
+ "dct_identifier_sm": [
35
+ "c0515c4e-97dc-4fff-82cb-f65144482631"
36
+ ],
37
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
38
+ "gbl_mdVersion_s": "Aardvark"
21
39
  }