geoblacklight_sidecar_images 0.5.1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +4 -4
  3. data/.travis.yml +4 -4
  4. data/Gemfile +2 -2
  5. data/README.md +8 -7
  6. data/Rakefile +0 -3
  7. data/app/assets/stylesheets/geoblacklight_sidecar_images/_gblsci.scss +13 -0
  8. data/app/assets/stylesheets/geoblacklight_sidecar_images/application.scss +10 -0
  9. data/app/assets/stylesheets/geoblacklight_sidecar_images/modules/_results.scss +10 -0
  10. data/app/jobs/geoblacklight_sidecar_images/store_image_job.rb +18 -0
  11. data/app/models/{geoblacklight_sidecar_images/application_record.rb → application_record.rb} +0 -0
  12. data/{lib/generators/geoblacklight_sidecar_images/templates → app}/models/concerns/wms_rewrite_concern.rb +0 -0
  13. data/{lib/generators/geoblacklight_sidecar_images/templates → app}/models/sidecar_image_state_machine.rb +1 -1
  14. data/{lib/generators/geoblacklight_sidecar_images/templates → app}/models/sidecar_image_transition.rb +0 -0
  15. data/{lib/generators/geoblacklight_sidecar_images/templates → app}/models/solr_document_sidecar.rb +3 -3
  16. data/app/services/geoblacklight_sidecar_images/image_service.rb +226 -0
  17. data/app/services/geoblacklight_sidecar_images/image_service/dynamic_map_layer.rb +15 -0
  18. data/app/services/geoblacklight_sidecar_images/image_service/iiif.rb +17 -0
  19. data/app/services/geoblacklight_sidecar_images/image_service/image_map_layer.rb +17 -0
  20. data/app/services/geoblacklight_sidecar_images/image_service/tiled_map_layer.rb +15 -0
  21. data/app/services/geoblacklight_sidecar_images/image_service/wms.rb +28 -0
  22. data/geoblacklight_sidecar_images.gemspec +5 -5
  23. data/lib/generators/geoblacklight_sidecar_images/install_generator.rb +9 -9
  24. data/lib/generators/geoblacklight_sidecar_images/jobs_generator.rb +1 -6
  25. data/lib/generators/geoblacklight_sidecar_images/models_generator.rb +0 -28
  26. data/lib/generators/geoblacklight_sidecar_images/templates/gblsci.scss +3 -0
  27. data/lib/generators/geoblacklight_sidecar_images/templates/views/catalog/_index_split_default.html.erb +28 -28
  28. data/lib/geoblacklight_sidecar_images/version.rb +1 -1
  29. data/lib/tasks/geoblacklight_sidecar_images_tasks.rake +10 -13
  30. data/solr/conf/schema.xml +11 -3
  31. data/solr/conf/solrconfig.xml +4 -4
  32. data/spec/fixtures/files/README.md +40 -0
  33. data/spec/fixtures/files/actual-papermap1.json +1 -1
  34. data/spec/fixtures/files/actual-point1.json +26 -13
  35. data/spec/fixtures/files/actual-polygon1.json +1 -1
  36. data/spec/fixtures/files/actual-raster1.json +6 -5
  37. data/spec/fixtures/files/bbox-spans-180.json +20 -0
  38. data/spec/fixtures/files/cornell_html_metadata.json +42 -0
  39. data/spec/fixtures/files/esri-dynamic-layer-all-layers.json +36 -34
  40. data/spec/fixtures/files/esri-dynamic-layer-single-layer.json +30 -27
  41. data/spec/fixtures/files/esri-feature-layer.json +37 -24
  42. data/spec/fixtures/files/esri-image-map-layer.json +39 -18
  43. data/spec/fixtures/files/iiif-eastern-hemisphere.json +30 -0
  44. data/spec/fixtures/files/index-map-polygon-no-downloadurl.json +37 -0
  45. data/spec/fixtures/files/index-map-polygon.json +37 -0
  46. data/spec/fixtures/files/index-map-stanford.json +37 -0
  47. data/spec/fixtures/files/index_map_point.json +27 -0
  48. data/spec/fixtures/files/princeton-child1.json +30 -0
  49. data/spec/fixtures/files/princeton-child2.json +30 -0
  50. data/spec/fixtures/files/princeton-child3.json +30 -0
  51. data/spec/fixtures/files/princeton-child4.json +30 -0
  52. data/spec/fixtures/files/princeton-parent.json +25 -0
  53. data/spec/fixtures/files/public_direct_download.json +13 -7
  54. data/spec/fixtures/files/public_polygon_mit.json +15 -27
  55. data/spec/fixtures/files/restricted-line.json +7 -6
  56. data/spec/fixtures/files/umn_iiif_jpg.json +1 -2
  57. data/spec/fixtures/files/umn_metro_result1.json +30 -26
  58. data/spec/fixtures/files/umn_state_result1.json +25 -18
  59. data/spec/fixtures/files/umn_state_result2.json +27 -25
  60. data/spec/fixtures/files/uva_slug_colon.json +25 -0
  61. data/spec/jobs/store_image_job_spec.rb +2 -2
  62. data/spec/models/solr_document_sidecar_spec.rb +1 -1
  63. data/spec/services/image_service_spec.rb +1 -1
  64. data/spec/test_app_templates/lib/generators/test_app_generator.rb +2 -2
  65. data/template.rb +3 -3
  66. metadata +55 -30
  67. data/app/assets/config/geoblacklight_sidecar_images_manifest.js +0 -2
  68. data/app/assets/images/geoblacklight_sidecar_images/.keep +0 -0
  69. data/app/assets/javascripts/geoblacklight_sidecar_images/application.js +0 -13
  70. data/app/assets/stylesheets/geoblacklight_sidecar_images/application.css +0 -15
  71. data/lib/generators/geoblacklight_sidecar_images/services_generator.rb +0 -19
  72. data/lib/generators/geoblacklight_sidecar_images/templates/assets/javascripts/geoblacklight.js +0 -9
  73. data/lib/generators/geoblacklight_sidecar_images/templates/assets/stylesheets/geoblacklight.scss +0 -3
  74. data/lib/generators/geoblacklight_sidecar_images/templates/jobs/store_image_job.rb +0 -17
  75. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service.rb +0 -224
  76. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/dynamic_map_layer.rb +0 -13
  77. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/iiif.rb +0 -15
  78. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/image_map_layer.rb +0 -15
  79. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/tiled_map_layer.rb +0 -13
  80. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/wms.rb +0 -26
@@ -0,0 +1,30 @@
1
+ {
2
+ "dc_identifier_s": "57f0f116-b64e-4773-8684-96ba09afb549",
3
+ "dc_title_s": "A new & accurate map of Asia: drawn from actual surveys, and otherwise collected from journals; assisted by the most approved modern maps & charts. the whole being regulated by astron. observations",
4
+ "dc_description_s": "Cartographic Details: Scale [1:26,000,000]. Numbered \"N⁰52.\" Decorative title cartouche with palm tree. Shows boundaries, rivers, islands and principal settlements. Relief shown pictorially. London meridian. 35 x 43 cm",
5
+ "dc_rights_s": "Public",
6
+ "dc_format_s": "TIFF",
7
+ "dc_language_sm": [
8
+ "English"
9
+ ],
10
+ "dc_type_sm": [
11
+ "Image"
12
+ ],
13
+ "dc_creator_sm": [
14
+ "Bowen, Emanuel (-1767)"
15
+ ],
16
+ "dct_provenance_s": "Minnesota",
17
+ "dct_references_s": "{\"http://schema.org/url\":\"http://purl.umn.edu/200804\",\"http://schema.org/downloadUrl\":\"https://umedia.lib.umn.edu/sites/default/files/archive/113/image/tiff/1058396.tif\",\"http://iiif.io/api/image\":\"https://umedia.lib.umn.edu/fcgi-bin/iipsrv.fcgi?IIIF=sites/default/files/reference/113/image/jp2/1058396.jp2/info.json\"}",
18
+ "dct_isPartOf_sm": [
19
+ "John R. Borchert Map Library"
20
+ ],
21
+ "dct_temporal_sm": [
22
+ "1750"
23
+ ],
24
+ "layer_slug_s": "57f0f116-b64e-4773-8684-96ba09afb549",
25
+ "layer_geom_type_s": "Image",
26
+ "layer_modified_dt": "2018-08-02T16:28:36Z",
27
+ "solr_geom": "ENVELOPE(25, -168.35, 81.66, -12.93)",
28
+ "solr_year_i": 1750,
29
+ "geoblacklight_version": "1.0"
30
+ }
@@ -0,0 +1,37 @@
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":[
16
+ "U.S. Geological Survey"
17
+ ],
18
+ "dc_publisher_sm":[
19
+ "U.S. Geological Survey"
20
+ ],
21
+ "dc_subject_sm":[
22
+ "digital elevation model",
23
+ "digital terrain model",
24
+ "hypsography",
25
+ "altitude",
26
+ "topography",
27
+ "Index maps"
28
+ ],
29
+ "dct_spatial_sm":[
30
+ "New York"
31
+ ],
32
+ "dct_temporal_sm":[
33
+ "1995"
34
+ ],
35
+ "solr_geom":"ENVELOPE(-79.750232, -71.750494, 44.999963, 40.499893)",
36
+ "solr_year_i":1995
37
+ }
@@ -0,0 +1,37 @@
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":[
16
+ "U.S. Geological Survey"
17
+ ],
18
+ "dc_publisher_sm":[
19
+ "U.S. Geological Survey"
20
+ ],
21
+ "dc_subject_sm":[
22
+ "digital elevation model",
23
+ "digital terrain model",
24
+ "hypsography",
25
+ "altitude",
26
+ "topography",
27
+ "Index maps"
28
+ ],
29
+ "dct_spatial_sm":[
30
+ "New York"
31
+ ],
32
+ "dct_temporal_sm":[
33
+ "1995"
34
+ ],
35
+ "solr_geom":"ENVELOPE(-79.750232, -71.750494, 44.999963, 40.499893)",
36
+ "solr_year_i":1995
37
+ }
@@ -0,0 +1,37 @@
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": [
17
+ "Stanford Geospatial Center"
18
+ ],
19
+ "dc_subject_sm": [
20
+ "Military maps",
21
+ "Topographic maps",
22
+ "Index maps",
23
+ "Grids (Cartography)",
24
+ "Boundaries",
25
+ "Military"
26
+ ],
27
+ "dct_issued_s": "2016",
28
+ "dct_temporal_sm": [
29
+ "1944"
30
+ ],
31
+ "dct_spatial_sm": [
32
+ "Davao (Philippines)"
33
+ ],
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
+ }
@@ -0,0 +1,27 @@
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
+ }
@@ -0,0 +1,30 @@
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"
30
+ }
@@ -0,0 +1,30 @@
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"
30
+ }
@@ -0,0 +1,30 @@
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"
30
+ }
@@ -0,0 +1,30 @@
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"
30
+ }
@@ -0,0 +1,25 @@
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_identifier_s": "ark:/88435/1r66j405w",
8
+ "dc_language_s": "eng",
9
+ "dc_publisher_s": "New York : Sanborn Map & Publishing Co., Limited, 1885.",
10
+ "dc_rights_s": "Public",
11
+ "dc_subject_sm": [
12
+ "Real property-New Jersey-Princeton-Maps",
13
+ "Princeton (N.J.)-Maps"
14
+ ],
15
+ "dc_title_s": "Princeton, Mercer County, New Jersey",
16
+ "dct_provenance_s": "Princeton",
17
+ "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"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/9a193476-5f2e-4f82-95a5-6db472e39b7b/manifest\"}",
18
+ "geoblacklight_version": "1.0",
19
+ "layer_geom_type_s": "Image",
20
+ "layer_id_s": "ark:/88435/1r66j405w",
21
+ "layer_modified_dt": "2018-06-07T05:12:50Z",
22
+ "layer_slug_s": "princeton-1r66j405w",
23
+ "solr_geom": "ENVELOPE(-74.68, -74.63, 40.37, 40.33)",
24
+ "uuid": "princeton-1r66j405w"
25
+ }
@@ -1,28 +1,34 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
2
  "dc_identifier_s": "http://purl.stanford.edu/cz128vq0535",
4
3
  "dc_title_s": "2005 Rural Poverty GIS Database: Uganda",
5
4
  "dc_description_s": "This polygon shapefile contains 2005 poverty data for 855 rural subcounties in Uganda. These data are intended for researchers, students, policy makers and the general public for reference and mapping purposes, and may be used for basic applications such as viewing, querying, and map output production.",
6
5
  "dc_rights_s": "Public",
7
6
  "dct_provenance_s": "Stanford",
8
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/cz128vq0535\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:cz128vq0535/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cz128vq0535.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:cz128vq0535/iso19139.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:cz128vq0535/default.html\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geowebservices.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices.stanford.edu/geoserver/wms\"}",
7
+ "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/cz128vq0535\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:cz128vq0535/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cz128vq0535.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cz/128/vq/0535/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geowebservices.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices.stanford.edu/geoserver/wms\"}",
9
8
  "layer_id_s": "druid:cz128vq0535",
10
9
  "layer_slug_s": "stanford-cz128vq0535",
11
10
  "layer_geom_type_s": "Polygon",
12
- "layer_modified_dt": "2015-04-16T23:02:57Z",
11
+ "layer_modified_dt": "2015-07-16T18:28:51Z",
13
12
  "dc_format_s": "Shapefile",
14
13
  "dc_language_s": "English",
15
14
  "dc_type_s": "Dataset",
16
15
  "dc_publisher_s": "Uganda Bureau of Statistics",
17
- "dc_creator_sm": "Uganda Bureau of Statistics",
16
+ "dc_creator_sm": [
17
+ "Uganda Bureau of Statistics"
18
+ ],
18
19
  "dc_subject_sm": [
19
20
  "Poverty",
20
21
  "Statistics"
21
22
  ],
22
23
  "dct_issued_s": "2005",
23
- "dct_temporal_sm": "2005",
24
- "dct_spatial_sm": "Uganda",
24
+ "dct_temporal_sm": [
25
+ "2005"
26
+ ],
27
+ "dct_spatial_sm": [
28
+ "Uganda"
29
+ ],
25
30
  "solr_geom": "ENVELOPE(29.572742, 35.000308, 4.234077, -1.478794)",
26
31
  "solr_year_i": 2005,
27
- "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"
32
+ "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",
33
+ "geoblacklight_version": "1.0"
28
34
  }
@@ -1,39 +1,27 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
2
+ "dc_creator_sm": [
3
+ "United States. Bureau of the Census"
4
+ ],
3
5
  "dc_format_s": "Shapefile",
4
- "dc_identifier_s": "urn:arrowsmith.mit.edu:MIT.SDE_DATA.US_MA_E25ZCTA5DCT_2000",
5
- "dc_language_s": "English",
6
- "dc_publisher_s": "U.S. Census Bureau",
6
+ "dc_publisher_s": "United States. Bureau of the Census",
7
7
  "dc_rights_s": "Public",
8
8
  "dc_subject_sm": [
9
- "polygon",
10
- "Zip",
11
- "Code",
12
- "Tabulation",
13
- "Areas",
14
- "demographics",
15
- "population",
16
- "census",
17
- "boundaries",
18
- "ZCTAs",
19
- "zip",
20
- "codes"
9
+ "Zip codes",
10
+ "Census data",
11
+ "Demographic surveys",
12
+ "Population"
21
13
  ],
22
14
  "dc_title_s": "Massachusetts (ZCTA - 5 digit zip code tabulation area, 2000)",
23
15
  "dc_type_s": "Dataset",
24
- "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"http://arrowsmith.mit.edu:8080/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://arrowsmith.mit.edu:8080/geoserver/wms\"}",
16
+ "dct_provenance_s": "MIT",
25
17
  "dct_spatial_sm": [
26
- "Massachusetts MA USA"
18
+ "Massachusetts"
27
19
  ],
28
- "dct_temporal_sm": [
29
- "2000"
30
- ],
31
- "dct_issued_s": "2000",
32
- "dct_provenance_s": "MIT",
33
- "layer_slug_s": "mit-us-ma-e25zcta5dct-2000",
34
- "layer_id_s": "sde:SDE_DATA.US_MA_E25ZCTA5DCT_2000",
20
+ "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wms\": \"https://geodata.mit.edu/geoserver/wms\", \"http://www.opengis.net/def/serviceType/ogc/wfs\": \"https://geodata.mit.edu/geoserver/wfs\"}",
35
21
  "layer_geom_type_s": "Polygon",
36
- "layer_modified_dt": "2014-05-27T18:09:34Z",
22
+ "layer_id_s": "mit:SDE_DATA_US_MA_E25ZCTA5DCT_2000",
23
+ "layer_modified_dt": "2018-05-15T20:00:25Z",
24
+ "layer_slug_s": "mit-f6rqs4ucovjk2",
37
25
  "solr_geom": "ENVELOPE(-73.533237, -69.898565, 42.888068, 41.230345)",
38
- "solr_year_i": 2000
26
+ "geoblacklight_version": "1.0"
39
27
  }
@@ -1,15 +1,14 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
2
  "dc_identifier_s": "http://purl.stanford.edu/cg357zz0321",
4
- "dc_title_s": "10 Meter Countours: Russian River Basin, California",
3
+ "dc_title_s": "10 Meter Contours: Russian River Basin, California",
5
4
  "dc_description_s": "This line shapefile contains contours that were derived from a mosiac of 10 meter digital elevation models for the extent of the Russian River basin, located in Sonoma and Mendocino Counties, California.This layer can be used for watershed analysis and planning in the Russian River region of California.",
6
5
  "dc_rights_s": "Restricted",
7
6
  "dct_provenance_s": "Stanford",
8
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/cg357zz0321\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:cg357zz0321/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cg357zz0321.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cg/357/zz/0321/iso19139.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:cg357zz0321/default.html\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"http://geowebservices-restricted.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
7
+ "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/cg357zz0321\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:cg357zz0321/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cg357zz0321.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cg/357/zz/0321/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geowebservices-restricted.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
9
8
  "layer_id_s": "druid:cg357zz0321",
10
9
  "layer_slug_s": "stanford-cg357zz0321",
11
10
  "layer_geom_type_s": "Line",
12
- "layer_modified_dt": "2014-12-03T01:20:46Z",
11
+ "layer_modified_dt": "2016-04-25T17:13:35Z",
13
12
  "dc_format_s": "Shapefile",
14
13
  "dc_language_s": "English",
15
14
  "dc_type_s": "Dataset",
@@ -23,7 +22,7 @@
23
22
  "Elevation",
24
23
  "Inland Waters"
25
24
  ],
26
- "dct_issued_s": "2003",
25
+ "dct_issued_s": "2002",
27
26
  "dct_temporal_sm": [
28
27
  "2002"
29
28
  ],
@@ -32,5 +31,7 @@
32
31
  "Mendocino County (Calif.)"
33
32
  ],
34
33
  "solr_geom": "ENVELOPE(-123.387366, -122.52958, 39.398403, 38.302994)",
35
- "solr_year_i": 2002
34
+ "solr_year_i": 2002,
35
+ "stanford_rights_metadata_s": "<?xml version=\"1.0\"?>\n<rightsMetadata>\n <access type=\"discover\">\n <machine>\n <world/>\n </machine>\n </access>\n <access type=\"read\">\n <machine>\n <group>Stanford</group>\n </machine>\n </access>\n <use>\n <human type=\"useAndReproduction\">These data are licensed by Stanford Libraries and are available to Stanford University affiliates only. Affiliates are limited to current faculty, staff and students. These data may not be reproduced or used for any purpose without permission. For more information please contact brannerlibrary@stanford.edu.</human>\n <human type=\"creativeCommons\"/>\n <machine type=\"creativeCommons\"/>\n </use>\n <copyright>\n <human>Copyright ownership resides with the originator.</human>\n </copyright>\n</rightsMetadata>\n",
36
+ "geoblacklight_version": "1.0"
36
37
  }