geoblacklight 3.4.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 (110) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +5 -0
  3. data/app/models/concerns/geoblacklight/solr_document/citation.rb +2 -2
  4. data/app/models/concerns/geoblacklight/solr_document.rb +4 -4
  5. data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +3 -3
  6. data/app/views/catalog/_header_icons.html.erb +1 -1
  7. data/app/views/catalog/_home_text.html.erb +2 -2
  8. data/app/views/relation/_relations.html.erb +15 -0
  9. data/app/views/relation/index.html.erb +4 -16
  10. data/app/views/relation/index.json.jbuilder +6 -2
  11. data/config/initializers/rails_config.rb +0 -8
  12. data/config/locales/geoblacklight.en.yml +8 -0
  13. data/lib/generators/geoblacklight/templates/catalog_controller.rb +78 -36
  14. data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +195 -0
  15. data/lib/generators/geoblacklight/templates/settings.yml +81 -22
  16. data/lib/geoblacklight/download/geojson_download.rb +1 -1
  17. data/lib/geoblacklight/download/geotiff_download.rb +1 -1
  18. data/lib/geoblacklight/download/hgl_download.rb +1 -1
  19. data/lib/geoblacklight/download/kmz_download.rb +1 -1
  20. data/lib/geoblacklight/download/shapefile_download.rb +1 -1
  21. data/lib/geoblacklight/references.rb +1 -1
  22. data/lib/geoblacklight/relation/ancestors.rb +4 -3
  23. data/lib/geoblacklight/relation/descendants.rb +4 -3
  24. data/lib/geoblacklight/relation/relation_response.rb +21 -6
  25. data/lib/geoblacklight/version.rb +1 -1
  26. data/schema/{geoblacklight-schema.json → geoblacklight-schema-1.0.json} +1 -1
  27. data/schema/geoblacklight-schema-aardvark.json +211 -0
  28. data/solr/conf/schema.xml +38 -30
  29. data/solr/conf/solrconfig.xml +15 -15
  30. data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +1 -1
  31. data/spec/config/initializers/rails_config_spec.rb +5 -8
  32. data/spec/controllers/catalog_controller_spec.rb +6 -6
  33. data/spec/features/download_layer_spec.rb +1 -1
  34. data/spec/features/esri_viewer_spec.rb +0 -1
  35. data/spec/features/home_page_spec.rb +4 -4
  36. data/spec/features/missing_metadata_spec.rb +2 -2
  37. data/spec/features/relations_spec.rb +2 -2
  38. data/spec/features/search_results_map_spec.rb +2 -1
  39. data/spec/features/search_results_overlap_ratio_spec.rb +2 -2
  40. data/spec/features/split_view.html.erb_spec.rb +15 -11
  41. data/spec/fixtures/solr_documents/README.md +48 -36
  42. data/spec/fixtures/solr_documents/actual-papermap1.json +41 -18
  43. data/spec/fixtures/solr_documents/actual-point1.json +47 -27
  44. data/spec/fixtures/solr_documents/actual-polygon1.json +43 -18
  45. data/spec/fixtures/solr_documents/actual-raster1.json +52 -23
  46. data/spec/fixtures/solr_documents/all-relationships.json +48 -0
  47. data/spec/fixtures/solr_documents/baruch_ancestor1.json +62 -37
  48. data/spec/fixtures/solr_documents/baruch_ancestor2.json +62 -37
  49. data/spec/fixtures/solr_documents/baruch_documentation_download.json +60 -34
  50. data/spec/fixtures/solr_documents/bbox-spans-180.json +34 -16
  51. data/spec/fixtures/solr_documents/cornell_html_metadata.json +46 -26
  52. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +43 -25
  53. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +45 -28
  54. data/spec/fixtures/solr_documents/esri-feature-layer.json +44 -34
  55. data/spec/fixtures/solr_documents/esri-image-map-layer.json +45 -31
  56. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +42 -17
  57. data/spec/fixtures/solr_documents/esri-wms-layer.json +46 -21
  58. data/spec/fixtures/solr_documents/harvard_raster.json +55 -36
  59. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +35 -22
  60. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +48 -27
  61. data/spec/fixtures/solr_documents/index-map-polygon.json +48 -27
  62. data/spec/fixtures/solr_documents/index-map-stanford.json +54 -25
  63. data/spec/fixtures/solr_documents/index_map_point.json +54 -26
  64. data/spec/fixtures/solr_documents/metadata_no_geom.json +27 -0
  65. data/spec/fixtures/solr_documents/metadata_no_provider.json +39 -0
  66. data/spec/fixtures/solr_documents/multiple-downloads.json +33 -20
  67. data/spec/fixtures/solr_documents/no_locn_geometry.json +25 -0
  68. data/spec/fixtures/solr_documents/no_spatial.json +37 -19
  69. data/spec/fixtures/solr_documents/oembed.json +34 -17
  70. data/spec/fixtures/solr_documents/princeton-child1.json +45 -28
  71. data/spec/fixtures/solr_documents/princeton-child2.json +45 -28
  72. data/spec/fixtures/solr_documents/princeton-child3.json +45 -28
  73. data/spec/fixtures/solr_documents/princeton-child4.json +45 -28
  74. data/spec/fixtures/solr_documents/princeton-parent.json +46 -23
  75. data/spec/fixtures/solr_documents/public_direct_download.json +48 -21
  76. data/spec/fixtures/solr_documents/public_iiif_princeton.json +49 -24
  77. data/spec/fixtures/solr_documents/public_polygon_mit.json +31 -15
  78. data/spec/fixtures/solr_documents/restricted-line.json +52 -21
  79. data/spec/fixtures/solr_documents/the-related-record.json +27 -0
  80. data/spec/fixtures/solr_documents/tms.json +33 -17
  81. data/spec/fixtures/solr_documents/umn_metro_result1.json +44 -28
  82. data/spec/fixtures/solr_documents/umn_state_result1.json +44 -26
  83. data/spec/fixtures/solr_documents/umn_state_result2.json +45 -24
  84. data/spec/fixtures/solr_documents/uva_slug_colon.json +43 -20
  85. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
  86. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
  87. data/spec/lib/geoblacklight/download/hgl_download_spec.rb +1 -1
  88. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +1 -1
  89. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
  90. data/spec/lib/geoblacklight/download_spec.rb +1 -1
  91. data/spec/lib/geoblacklight/references_spec.rb +2 -2
  92. data/spec/lib/geoblacklight/relation/ancestors_spec.rb +3 -3
  93. data/spec/lib/geoblacklight/relation/descendants_spec.rb +3 -3
  94. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +32 -17
  95. data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -4
  96. metadata +15 -19
  97. data/app/views/relation/_ancestors.html.erb +0 -8
  98. data/app/views/relation/_descendants.html.erb +0 -15
  99. data/config/initializers/new_gbl_settings_defaults_3_3.yml +0 -10
  100. data/schema/format-values.md +0 -50
  101. data/schema/geoblacklight-schema-deprecated.md +0 -39
  102. data/schema/geoblacklight-schema.md +0 -323
  103. data/schema/geometry-type-values.md +0 -11
  104. data/schema/references.md +0 -23
  105. data/schema/schema-commentary.md +0 -198
  106. data/schema/subjects.md +0 -41
  107. data/schema/type-values.md +0 -10
  108. data/spec/fixtures/solr_documents/metadata_no_dct_provenance_s.json +0 -30
  109. data/spec/fixtures/solr_documents/metadata_no_layer_geom_type_s.json +0 -17
  110. data/spec/fixtures/solr_documents/metadata_no_solr_geom.json +0 -23
@@ -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
  }
@@ -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 4)",
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-df7df5c8c589",
25
- "layer_modified_dt": "2018-06-20T22:23:54Z",
26
- "layer_slug_s": "princeton-n009w382v-fake2",
27
- "solr_geom": "ENVELOPE(-74.68, -74.63, 40.37, 40.33)",
28
- "suppressed_b": true,
29
- "uuid": "princeton-n009w382v-fake2"
2
+ "dct_title_s": "Princeton, Mercer County, New Jersey (Sheet 4)",
3
+ "dct_alternative_sm": [
4
+ "princeton-child4"
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-df7df5c8c589",
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-fake2",
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
  }