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,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
  }
@@ -1,24 +1,41 @@
1
1
  {
2
- "dc_identifier_s": "http://purl.stanford.edu/dc482zx1528",
3
- "dc_title_s": "Jōshū Kusatsu Onsenzu",
4
- "dc_description_s": "Publication date estimate from dealer description.",
5
- "dc_rights_s": "Public",
6
- "dct_provenance_s": "Stanford",
7
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/dc482zx1528\",\"https://oembed.com\":\"https://purl.stanford.edu/embed.json?&hide_title=true&url=https://purl.stanford.edu/dc482zx1528\"}",
8
- "layer_slug_s": "stanford-dc482zx1528",
9
- "layer_geom_type_s": "Image",
10
- "dc_format_s": "JPEG",
11
- "dc_language_s": "Japanese",
12
- "dc_type_s": "Image",
13
- "dc_publisher_s": "Kikyōya Genkichi han",
14
- "dc_subject_sm": [
15
- "Hot springs",
16
- "Kusatsu-machi",
2
+ "dct_title_s": "Jōshū Kusatsu Onsenzu",
3
+ "dct_alternative_sm": [
4
+ "oembed"
5
+ ],
6
+ "dct_description_sm": [
7
+ "This record has an Oembed reference link. ",
8
+ "Publication date estimate from dealer description."
9
+ ],
10
+ "dct_language_sm": [
11
+ "jpn"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "Kikyōya Genkichi han"
15
+ ],
16
+ "schema_provider_s": "Stanford",
17
+ "gbl_resourceClass_sm": [
17
18
  "Maps"
18
19
  ],
20
+ "dct_subject_sm": [
21
+ "Hot springs",
22
+ "Kusatsu-machi"
23
+ ],
24
+ "dcat_keyword_sm": [
25
+ "GBL Fixture records"
26
+ ],
19
27
  "dct_spatial_sm": [
20
28
  "Japan"
21
29
  ],
22
- "solr_geom": "ENVELOPE(138.523426, 138.630362, 36.656354, 36.597519)",
23
- "geoblacklight_version": "1.0"
30
+ "locn_geometry": "ENVELOPE(138.523426,138.630362,36.656354,36.597519)",
31
+ "dcat_centroid_ss": "36.6269365,138.57689399999998",
32
+ "dct_accessRights_s": "Public",
33
+ "dct_format_s": "JPEG",
34
+ "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/dc482zx1528\",\"https://oembed.com\":\"https://purl.stanford.edu/embed.json?&hide_title=true&url=https://purl.stanford.edu/dc482zx1528\"}",
35
+ "id": "stanford-dc482zx1528",
36
+ "dct_identifier_sm": [
37
+ "http://purl.stanford.edu/dc482zx1528"
38
+ ],
39
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
40
+ "gbl_mdVersion_s": "Aardvark"
24
41
  }
@@ -1,30 +1,47 @@
1
1
  {
2
- "call_number_s": "HMC04 (Princeton)",
3
- "dc_creator_sm": [
4
- "Sanborn Map Company"
5
- ],
6
- "dc_description_s": "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left.",
7
- "dc_format_s": "TIFF",
8
- "dc_identifier_s": "ark:/88435/n009w382v",
9
- "dc_language_s": "eng",
10
- "dc_publisher_s": "New York : Sanborn Map & Publishing Co., Limited, 1885.",
11
- "dc_rights_s": "Public",
12
- "dc_subject_sm": [
13
- "Real property-New Jersey-Princeton-Maps",
14
- "Princeton (N.J.)-Maps"
15
- ],
16
- "dc_title_s": "Princeton, Mercer County, New Jersey (Sheet 1)",
17
- "dct_provenance_s": "Princeton",
18
- "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/ff89fcc8-e61b-4b27-938f-a03e63d4f5f1\",\"http://schema.org/thumbnailUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/0cb6b6c7-bce2-46a8-8c79-2864c7ec5459\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/5a%2F20%2F58%2F5a20585db50d44959fe5ae44821fd174%2Fintermediate_file.jp2/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/2806e4cf-effc-4827-b116-952dfe776d14/manifest\"}",
19
- "dc_source_sm": [
20
- "princeton-1r66j405w"
21
- ],
22
- "geoblacklight_version": "1.0",
23
- "layer_geom_type_s": "Image",
24
- "layer_id_s": "public-figgy:p-b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588",
25
- "layer_modified_dt": "2018-06-20T22:23:54Z",
26
- "layer_slug_s": "princeton-n009w382v",
27
- "solr_geom": "ENVELOPE(-74.68, -74.63, 40.37, 40.33)",
28
- "suppressed_b": true,
29
- "uuid": "princeton-n009w382v"
2
+ "dct_title_s": "Princeton, Mercer County, New Jersey (Sheet 1)",
3
+ "dct_alternative_sm": [
4
+ "princeton-child1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Child record for testing the suppressed_b property. ",
8
+ "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Sanborn Map Company"
15
+ ],
16
+ "dct_publisher_sm": [
17
+ "New York : Sanborn Map & Publishing Co., Limited, 1885."
18
+ ],
19
+ "schema_provider_s": "Princeton",
20
+ "gbl_resourceClass_sm": [
21
+ "Maps"
22
+ ],
23
+ "dct_subject_sm": [
24
+ "Real property-New Jersey-Princeton-Maps",
25
+ "Princeton (N.J.)-Maps"
26
+ ],
27
+ "dcat_keyword_sm": [
28
+ "GBL Fixture records"
29
+ ],
30
+ "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
31
+ "dcat_centroid_ss": "40.349999999999994,-74.655",
32
+ "dct_source_sm": [
33
+ "princeton-1r66j405w"
34
+ ],
35
+ "dct_accessRights_s": "Public",
36
+ "dct_format_s": "TIFF",
37
+ "gbl_wxsIdentifier_s": "public-figgy:p-b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588",
38
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/ff89fcc8-e61b-4b27-938f-a03e63d4f5f1\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/5a%2F20%2F58%2F5a20585db50d44959fe5ae44821fd174%2Fintermediate_file.jp2/info.json\",\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/2806e4cf-effc-4827-b116-952dfe776d14/manifest\"}",
39
+ "id": "princeton-n009w382v",
40
+ "dct_identifier_sm": [
41
+ "ark:/88435/n009w382v",
42
+ "HMC04 (Princeton)"
43
+ ],
44
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
45
+ "gbl_mdVersion_s": "Aardvark",
46
+ "gbl_suppressed_b": true
30
47
  }
@@ -1,30 +1,47 @@
1
1
  {
2
- "call_number_s": "HMC04 (Princeton)",
3
- "dc_creator_sm": [
4
- "Sanborn Map Company"
5
- ],
6
- "dc_description_s": "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left.",
7
- "dc_format_s": "TIFF",
8
- "dc_identifier_s": "ark:/88435/jq085m62x",
9
- "dc_language_s": "eng",
10
- "dc_publisher_s": "New York : Sanborn Map & Publishing Co., Limited, 1885.",
11
- "dc_rights_s": "Public",
12
- "dc_subject_sm": [
13
- "Real property-New Jersey-Princeton-Maps",
14
- "Princeton (N.J.)-Maps"
15
- ],
16
- "dc_title_s": "Princeton, Mercer County, New Jersey (Sheet 2)",
17
- "dct_provenance_s": "Princeton",
18
- "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/db890be9-02bf-43c1-85c8-69c0684e25f6/file/dc08e083-5044-4949-bdd1-9d16a1fef818\",\"http://schema.org/thumbnailUrl\":\"https://figgy.princeton.edu/downloads/db890be9-02bf-43c1-85c8-69c0684e25f6/file/342e2f50-c9ff-4f86-9317-f5ce331e766e\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/a6%2Fb9%2Ff9%2Fa6b9f96251724546ae37ea3fa37a5e57%2Fintermediate_file.jp2/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/68e90289-74ce-4f21-89e5-852f3e96ce35/manifest\"}",
19
- "dc_source_sm": [
20
- "princeton-1r66j405w"
21
- ],
22
- "geoblacklight_version": "1.0",
23
- "layer_geom_type_s": "Image",
24
- "layer_id_s": "public-figgy:p-db890be9-02bf-43c1-85c8-69c0684e25f6",
25
- "layer_modified_dt": "2018-06-20T22:24:29Z",
26
- "layer_slug_s": "princeton-jq085m62x",
27
- "solr_geom": "ENVELOPE(-74.68, -74.63, 40.37, 40.33)",
28
- "suppressed_b": true,
29
- "uuid": "princeton-jq085m62x"
2
+ "dct_title_s": "Princeton, Mercer County, New Jersey (Sheet 2)",
3
+ "dct_alternative_sm": [
4
+ "princeton-child2"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Child record for testing the suppressed_b property. ",
8
+ "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Sanborn Map Company"
15
+ ],
16
+ "dct_publisher_sm": [
17
+ "New York : Sanborn Map & Publishing Co., Limited, 1885."
18
+ ],
19
+ "schema_provider_s": "Princeton",
20
+ "gbl_resourceClass_sm": [
21
+ "Maps"
22
+ ],
23
+ "dct_subject_sm": [
24
+ "Real property-New Jersey-Princeton-Maps",
25
+ "Princeton (N.J.)-Maps"
26
+ ],
27
+ "dcat_keyword_sm": [
28
+ "GBL Fixture records"
29
+ ],
30
+ "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
31
+ "dcat_centroid_ss": "40.349999999999994,-74.655",
32
+ "dct_source_sm": [
33
+ "princeton-1r66j405w"
34
+ ],
35
+ "dct_accessRights_s": "Public",
36
+ "dct_format_s": "TIFF",
37
+ "gbl_wxsIdentifier_s": "public-figgy:p-db890be9-02bf-43c1-85c8-69c0684e25f6",
38
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/db890be9-02bf-43c1-85c8-69c0684e25f6/file/dc08e083-5044-4949-bdd1-9d16a1fef818\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/a6%2Fb9%2Ff9%2Fa6b9f96251724546ae37ea3fa37a5e57%2Fintermediate_file.jp2/info.json\",\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/68e90289-74ce-4f21-89e5-852f3e96ce35/manifest\"}",
39
+ "id": "princeton-jq085m62x",
40
+ "dct_identifier_sm": [
41
+ "ark:/88435/jq085m62x",
42
+ "HMC04 (Princeton)"
43
+ ],
44
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
45
+ "gbl_mdVersion_s": "Aardvark",
46
+ "gbl_suppressed_b": true
30
47
  }
@@ -1,30 +1,47 @@
1
1
  {
2
- "call_number_s": "HMC04 (Princeton)",
3
- "dc_creator_sm": [
4
- "Sanborn Map Company"
5
- ],
6
- "dc_description_s": "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left.",
7
- "dc_format_s": "TIFF",
8
- "dc_identifier_s": "ark:/88435/n009w382v",
9
- "dc_language_s": "eng",
10
- "dc_publisher_s": "New York : Sanborn Map & Publishing Co., Limited, 1885.",
11
- "dc_rights_s": "Public",
12
- "dc_subject_sm": [
13
- "Real property-New Jersey-Princeton-Maps",
14
- "Princeton (N.J.)-Maps"
15
- ],
16
- "dc_title_s": "Princeton, Mercer County, New Jersey (Sheet 3)",
17
- "dct_provenance_s": "Princeton",
18
- "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/ff89fcc8-e61b-4b27-938f-a03e63d4f5f1\",\"http://schema.org/thumbnailUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/0cb6b6c7-bce2-46a8-8c79-2864c7ec5459\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/5a%2F20%2F58%2F5a20585db50d44959fe5ae44821fd174%2Fintermediate_file.jp2/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/2806e4cf-effc-4827-b116-952dfe776d14/manifest\"}",
19
- "dc_source_sm": [
20
- "princeton-1r66j405w"
21
- ],
22
- "geoblacklight_version": "1.0",
23
- "layer_geom_type_s": "Image",
24
- "layer_id_s": "public-figgy:p-b6ba3091-fcf4-4d2d-9d6a-df7df5c8c598",
25
- "layer_modified_dt": "2018-06-20T22:23:54Z",
26
- "layer_slug_s": "princeton-n009w382v-fake1",
27
- "solr_geom": "ENVELOPE(-74.68, -74.63, 40.37, 40.33)",
28
- "suppressed_b": true,
29
- "uuid": "princeton-n009w382v-fake1"
2
+ "dct_title_s": "Princeton, Mercer County, New Jersey (Sheet 3)",
3
+ "dct_alternative_sm": [
4
+ "princeton-child3"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Child record for testing the suppressed_b property. ",
8
+ "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Sanborn Map Company"
15
+ ],
16
+ "dct_publisher_sm": [
17
+ "New York : Sanborn Map & Publishing Co., Limited, 1885."
18
+ ],
19
+ "schema_provider_s": "Princeton",
20
+ "gbl_resourceClass_sm": [
21
+ "Maps"
22
+ ],
23
+ "dct_subject_sm": [
24
+ "Real property-New Jersey-Princeton-Maps",
25
+ "Princeton (N.J.)-Maps"
26
+ ],
27
+ "dcat_keyword_sm": [
28
+ "GBL Fixture records"
29
+ ],
30
+ "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
31
+ "dcat_centroid_ss": "40.349999999999994,-74.655",
32
+ "dct_source_sm": [
33
+ "princeton-1r66j405w"
34
+ ],
35
+ "dct_accessRights_s": "Public",
36
+ "dct_format_s": "TIFF",
37
+ "gbl_wxsIdentifier_s": "public-figgy:p-b6ba3091-fcf4-4d2d-9d6a-df7df5c8c598",
38
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/ff89fcc8-e61b-4b27-938f-a03e63d4f5f1\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/5a%2F20%2F58%2F5a20585db50d44959fe5ae44821fd174%2Fintermediate_file.jp2/info.json\",\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/2806e4cf-effc-4827-b116-952dfe776d14/manifest\"}",
39
+ "id": "princeton-n009w382v-fake1",
40
+ "dct_identifier_sm": [
41
+ "ark:/88435/n009w382v",
42
+ "HMC04 (Princeton)"
43
+ ],
44
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
45
+ "gbl_mdVersion_s": "Aardvark",
46
+ "gbl_suppressed_b": true
30
47
  }