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
@@ -8,7 +8,7 @@
8
8
  "dc_rights_s": "Public",
9
9
  "dc_title_s": "1:1 500 000 series [cartographic material] : tectonic map of Britain, Ireland and adjacent areas / British Geological Survey ; Geological Survey of Ireland ; Geological Survey of Northern Ireland.",
10
10
  "dc_type_s": "Dataset",
11
- "dct_references_s": "{\"http://schema.org/url\":\"http://library.mit.edu/item/001145244\",\"http://www.opengis.net/cat/csw/csdgm\":\"http://opengeometadata.stanford.edu/metadata/org.opengeoportal/MIT:001145244/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/org.opengeoportal/MIT:001145244/fgdc.html\"}",
11
+ "dct_references_s": "{\"http://schema.org/url\":\"http://library.mit.edu/item/001145244\"}",
12
12
  "dct_temporal_sm": [
13
13
  "1996"
14
14
  ],
@@ -1,24 +1,37 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_description_s": "Actual Evapotrans is a point theme representing the sum of evaporation and plant transpiration to the atmosphere from throughout the world. Measurements are represented by points at every.5 degrees and provided for every month of the year. This dataset is a part of the Global Climate Database from the Global Change Department National Institute of Public Health and Environmental Protection.",
2
+ "dc_creator_sm": [
3
+ ],
4
+ "dc_description_s": "This point shapefile was created as a guide to New York City’s non-neighborhood place locations that appear in “New York: A City of Neighborhoods.” These place locations include parks, cemeteries, and airports. Best estimates of label centroids were established at a 1:1,000 scale, but are ideally viewed at a 1:50,000 scale.",
4
5
  "dc_format_s": "Shapefile",
5
- "dc_identifier_s": "urn:columbia.edu:Columbia.landinfo_global_aet",
6
+ "dc_identifier_s": "http://hdl.handle.net/2451/34564",
6
7
  "dc_language_s": "English",
8
+ "dc_publisher_s": "New York (City). Department of City Planning",
7
9
  "dc_rights_s": "Public",
8
- "dc_title_s": "Actual Evapotrans",
10
+ "dc_subject_sm": [
11
+ "Airports",
12
+ "Parks",
13
+ "Public spaces"
14
+ ],
15
+ "dc_title_s": "2014 New York City Places",
9
16
  "dc_type_s": "Dataset",
10
- "dct_references_s": "{\"http://www.opengis.net/cat/csw/csdgm\":\"http://opengeometadata.stanford.edu/metadata/org.opengeoportal/Columbia:Columbia.landinfo_global_aet/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/org.opengeoportal/Columbia:Columbia.landinfo_global_aet/fgdc.html\"}",
17
+ "dct_isPartOf_sm": [
18
+ "Bytes of the Big Apple"
19
+ ],
20
+ "dct_issued_s": "2014",
21
+ "dct_provenance_s": "NYU",
22
+ "dct_references_s": "{\"http://schema.org/url\":\"http://hdl.handle.net/2451/34564\",\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74563/nyu_2451_34564.zip\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://maps-public.geo.nyu.edu/geoserver/sdr/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://maps-public.geo.nyu.edu/geoserver/sdr/wms\"}",
11
23
  "dct_spatial_sm": [
12
- "World"
24
+ "New York, New York, United States"
13
25
  ],
14
26
  "dct_temporal_sm": [
15
- "1996"
27
+ "2014"
16
28
  ],
17
- "dct_provenance_s": "Columbia",
18
- "layer_slug_s": "columbia-columbia-landinfo-global-aet",
19
- "layer_id_s": "Columbia:Columbia.landinfo_global_aet",
29
+ "geoblacklight_version": "1.0",
20
30
  "layer_geom_type_s": "Point",
21
- "layer_modified_dt": "2014-12-12T19:54:57Z",
22
- "solr_geom": "ENVELOPE(-179.5, 180.0, 83.0, -56.0)",
23
- "solr_year_i": 1996
31
+ "layer_id_s": "sdr:nyu_2451_34564",
32
+ "layer_modified_dt": "2016-04-20T21:31:14Z",
33
+ "layer_slug_s": "nyu-2451-34564",
34
+ "nyu_addl_dspace_s": "35497",
35
+ "solr_geom": "ENVELOPE(-74.2485646353495, -73.7322869841185, 40.8962098695574, 40.4995658893951)",
36
+ "solr_year_i": 2014
24
37
  }
@@ -8,7 +8,7 @@
8
8
  "dc_rights_s": "Public",
9
9
  "dc_title_s": "100 Foot Grid Cambridge MA 2004",
10
10
  "dc_type_s": "Dataset",
11
- "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"http://geoserver01.uit.tufts.edu/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://geoserver01.uit.tufts.edu/wms\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.tufts/master/165/242/110/132/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/org.opengeoportal/sde:GISPORTAL.GISOWNER01.CAMBRIDGEGRID100_04/fgdc.html\"}",
11
+ "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"http://geoserver01.uit.tufts.edu/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://geoserver01.uit.tufts.edu/wms\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.tufts/master/165/242/110/132/fgdc.xml\"}",
12
12
  "dct_temporal_sm": [
13
13
  "2004"
14
14
  ],
@@ -1,15 +1,14 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
2
  "dc_identifier_s": "http://purl.stanford.edu/dp018hs9766",
4
3
  "dc_title_s": "1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005",
5
4
  "dc_description_s": "This layer is a 10-color shaded relief GeoTIFF that contains high-resolution bathymetric data collected from the Elkhorn Slough region of Monterey Bay, California. The survey for Elkhorn Slough was conducted 8/12/2005 - 8/15/2005. Elkhorn Slough, one of the largest remaining coastal wetlands in California, has been directly subjected to tidal scour since the opening of Moss Landing Harbor in 1946. This erosion endangers the habitat of several rare and endangered species and disrupts the wetland ecosystem as a whole. In 2003, the Seafloor Mapping Lab of California State University, Monterey Bay created the most detailed bathymetry model of the Slough to date using a combination of multi-beam sonar, single-beam sonar and aerial photography. This layer was created as part of the California Seafloor Mapping Project.This project was conducted to determine changes in the pattern of erosion and deposition in Elkhorn Slough since surveys conducted in 1993, 2001 and 2003. Marine data offered here represent the efforts of a comprehensive state waters mapping program for California launched by the California State Coastal Conservancy, Ocean Protection Council, Department of Fish and Game, and the NOAA National Marine Sanctuary Program. The ultimate goal is the creation of a high-resolution 1:24,000 scale geologic and habitat base map series covering all of California's 14,500 km2 state waters out to the 3 mile limit, and support of the state's Marine Life Protection Act Initiative (MLPA) goal to create a statewide network of Marine Protected Areas (MPAs). This statewide project requires, involves and leverages expertise from industry, resource management agencies and academia. The tiered mapping campaign involves the use of state-of-the-art sonar, LIDAR (aerial laser) and video seafloor mapping technologies; computer aided classification and visualization; expert geologic and habitat interpretations codified into strip maps spanning California's land/sea boundary; and the creation of an online, publicly accessible data repository for the dissemination of all mapping products.\n",
6
5
  "dc_rights_s": "Restricted",
7
6
  "dct_provenance_s": "Stanford",
8
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/dp018hs9766\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:dp018hs9766/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/dp018hs9766.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/dp/018/hs/9766/iso19139.xml\",\"http://www.w3.org/1999/xhtml\":\"http://opengeometadata.stanford.edu/metadata/edu.stanford.purl/druid:dp018hs9766/default.html\",\"http://www.opengis.net/def/serviceType/ogc/wcs\":\"http://kurma-podd1.stanford.edu/geoserver/wcs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"http://kurma-podd1.stanford.edu/geoserver/wms\"}",
7
+ "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/dp018hs9766\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:dp018hs9766/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/dp018hs9766.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/dp/018/hs/9766/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wcs\":\"https://geowebservices-restricted.stanford.edu/geoserver/wcs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
9
8
  "layer_id_s": "druid:dp018hs9766",
10
9
  "layer_slug_s": "stanford-dp018hs9766",
11
10
  "layer_geom_type_s": "Raster",
12
- "layer_modified_dt": "2014-12-03T02:15:20Z",
11
+ "layer_modified_dt": "2015-04-16T23:09:17Z",
13
12
  "dc_format_s": "GeoTIFF",
14
13
  "dc_language_s": "English",
15
14
  "dc_type_s": "Dataset",
@@ -24,7 +23,7 @@
24
23
  "Imagery and Base Maps",
25
24
  "Inland Waters"
26
25
  ],
27
- "dct_issued_s": "2006",
26
+ "dct_issued_s": "2005",
28
27
  "dct_temporal_sm": [
29
28
  "2005"
30
29
  ],
@@ -33,5 +32,7 @@
33
32
  "Monterey Bay (Calif.)"
34
33
  ],
35
34
  "solr_geom": "ENVELOPE(-121.7948738, -121.7389503, 36.8606925, 36.8085911)",
36
- "solr_year_i": 2005
35
+ "solr_year_i": 2005,
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 <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",
37
+ "geoblacklight_version": "1.0"
37
38
  }
@@ -0,0 +1,20 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_identifier_s": "ark:/88435/sx61dn82p",
4
+ "layer_slug_s": "princeton-sx61dn82p",
5
+ "dc_title_s": "East Asia and Oceania",
6
+ "solr_geom": "ENVELOPE(-124.73333333333333, 68.0, 62.45, -53.233333333333334)",
7
+ "dct_provenance_s": "Princeton",
8
+ "dc_rights_s": "Public",
9
+ "dc_description_s": "United States. Central Intelligence Agency. Map no. 802861 (A04678) 4-02.",
10
+ "dc_language_s": "eng",
11
+ "dc_publisher_s": "[Washington, D.C.] : [Central Intelligence Agency], 2002.",
12
+ "dc_subject_sm": [
13
+ "Asia, east — Maps"
14
+ ],
15
+ "layer_modified_dt": "2018-06-07T06:03:16Z",
16
+ "layer_id_s": "public-figgy:a990e1b4-7f0e-44b8-ae2a-de7e93cdd74a",
17
+ "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/6829320\",\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/a990e1b4-7f0e-44b8-ae2a-de7e93cdd74a/file/36a2274c-e0c6-4901-a14f-7c422d15e194\",\"http://schema.org/thumbnailUrl\":\"https://figgy.princeton.edu/downloads/a990e1b4-7f0e-44b8-ae2a-de7e93cdd74a/file/726bf9ce-7f57-48bc-9e9f-45fc5b93c6f0\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/2e%2Fa9%2F43%2F2ea943b0bd4348fc9954b299f1b359f6%2Fintermediate_file.jp2/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/0c2e1053-22ef-409e-ad9a-7a4709a5efcb/manifest\"}",
18
+ "layer_geom_type_s": "Image",
19
+ "dc_format_s": "TIFF"
20
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_identifier_s": "https://cugir.library.cornell.edu/catalog/cugir-007741",
4
+ "dc_title_s": "Air Monitoring Stations, Adirondack Park, 2000",
5
+ "dc_description_s": " This dataset shows the location of each ambient air quality monitoring station currently being operated by the Bureau of Air Quality Surveillance (BAQS), Division of Air Resources, New York State Department of Environmental Conservation.",
6
+ "dc_rights_s": "Public",
7
+ "dct_provenance_s": "Cornell",
8
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://s3.amazonaws.com/cugir-data/00/77/41/cugir-007741.zip\",\"http://www.opengis.net/cat/csw/csdgm\":\"https://s3.amazonaws.com/cugir-data/00/77/41/fgdc.xml\",\"http://www.w3.org/1999/xhtml\":\"https://s3.amazonaws.com/cugir-data/00/77/41/fgdc.html\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://cugir.library.cornell.edu/geoserver/cugir/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://cugir.library.cornell.edu/geoserver/cugir/wms\"}",
9
+ "cugir_addl_downloads_s": "{}",
10
+ "layer_id_s": "cugir007741",
11
+ "layer_slug_s": "cugir-007741",
12
+ "dc_type_s": "Dataset",
13
+ "dc_format_s": "Shapefile",
14
+ "cugir_filesize_s": "0.07 MB",
15
+ "layer_geom_type_s": "Point",
16
+ "layer_modified_dt": "2017-10-05T00:00:00Z",
17
+ "dc_creator_sm": [
18
+ "New York State Department of Energy Conservation Bureau of Air Quality Surveillance"
19
+ ],
20
+ "dc_publisher_sm": [
21
+ "Geographic Data Presentation Form: Map"
22
+ ],
23
+ "dc_subject_sm": [
24
+ "environment",
25
+ "Air quality monitoring stations",
26
+ "Air quality management",
27
+ "Air--Pollution--Measurement",
28
+ "New York State--Dept Energy Conservation"
29
+ ],
30
+ "cugir_category_sm": [
31
+ "environment",
32
+ "climate"
33
+ ],
34
+ "dct_spatial_sm": [
35
+ "New York"
36
+ ],
37
+ "dct_issued_s": "2000-06-00",
38
+ "dct_temporal_sm": [
39
+ "-Pres"
40
+ ],
41
+ "solr_geom": "ENVELOPE(-74.989258, -73.858335, 44.67778, 43.452994)"
42
+ }
@@ -1,36 +1,38 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "layer_geom_type_s": "Polygon",
4
- "dc_identifier_s": "urn-90f14ff4-1359-4beb-b931-5cb41d20ab90",
5
- "dc_title_s": "Glacial Boundaries: Illinois, 1997",
6
- "dc_description_s": "This is an SDE feature class containing glacial boundary polygons representing the extent of glaciation for major glacial episodes in Illinois. Data are originally from the Quaternary Deposits in Illinois (1:500,000) map by Lineback (1979). Data have been subsequently modified to conform with the reclassification by Hansel and Johnson, ISGS Bulletin 104 (1996). Glacial episode is identified for each polygon. The data include the Wisconsin, Illinois and the Pre-Illinois episodes. Areas not glaciated are also identified. The nominal scale is 1:500,000.",
7
- "dc_rights_s": "Public",
8
- "dct_provenance_s": "Minnesota",
9
- "layer_id_s": "urn:f14ff4-1359-4beb-b931-5cb41d20ab90",
10
- "layer_slug_s": "minnesota-f14ff4-1359-4beb-b931-5cb41d20ab90",
11
- "layer_modified_dt": "2016-01-12T16:10:41Z",
12
- "dc_creator_sm": [
13
- "Illinois State Geological Survey"
14
- ],
15
- "dc_publisher_sm": [
16
- "Illinois State Geological Survey"
17
- ],
18
- "dc_format_s": "Shapefile",
19
- "dc_type_s": "Dataset",
20
- "dc_subject_sm": [
21
- "Geoscientific Information",
22
- "Boundaries",
23
- "Glacier",
24
- "Glacial",
25
- "Geology",
26
- "Glaciation"
27
- ],
28
- "dct_spatial_sm": [
29
- "Illinois"
30
- ],
31
- "dct_issued_s": "1997-12-13",
32
- "dct_temporal_sm": "1996",
33
- "solr_geom": "ENVELOPE(-91.513518, -87.495214, 42.508348, 36.969972)",
34
- "solr_year_i": 1997,
35
- "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"http://data.isgs.illinois.edu/arcgis/rest/services/Geology/Glacial_Boundaries/MapServer\",\"http://schema.org/url\":\"https://clearinghouse.isgs.illinois.edu/data/geology/glacial-boundaries\",\"http://schema.org/downloadUrl\":\"https://clearinghouse.isgs.illinois.edu/sites/clearinghouse.isgs/files/Clearinghouse/data/ISGS/Geology/zips/IL_Glacial_Bndys_Py.zip\"}"
2
+ "dc_identifier_s": "90f14ff4-1359-4beb-b931-5cb41d20ab90",
3
+ "dc_title_s": "Glacial Boundaries: Illinois, 1998",
4
+ "dc_description_s": "Glacial boundary lines representing the extent of glaciation for major glacial episodes in Illinois. Data originally from Quaternary Deposits in Illinois map by Lineback (1979) and modified according to the reclassification by Hansel and Johnson, ISGS Bulletin 104 (1996). Attribute items include glacial episode identifier. ISGS, 1984 (revised 1998).",
5
+ "dc_rights_s": "Public",
6
+ "dc_format_s": "Shapefile",
7
+ "dc_language_sm": "English",
8
+ "dc_type_sm": [
9
+ "Dataset"
10
+ ],
11
+ "dc_publisher_sm": [
12
+ "Illinois State Geological Survey"
13
+ ],
14
+ "dc_creator_sm": [
15
+ "Illinois State Geological Survey"
16
+ ],
17
+ "dc_subject_sm": [
18
+ "Geoscientific Information"
19
+ ],
20
+ "dct_provenance_s": "Illinois",
21
+ "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"http://data.isgs.illinois.edu/arcgis/rest/services/Geology/Glacial_Boundaries/MapServer\",\"http://schema.org/url\":\"https://clearinghouse.isgs.illinois.edu/data/geology/glacial-boundaries\",\"http://schema.org/downloadUrl\":\"https://clearinghouse.isgs.illinois.edu/sites/clearinghouse.isgs/files/Clearinghouse/data/ISGS/Geology/zips/IL_Glacial_Bndys_Py.zip\"}",
22
+ "dct_isPartOf_sm": [
23
+ "Illinois Geospatial Data Clearinghouse"
24
+ ],
25
+ "dct_issued_s": "1998",
26
+ "dct_temporal_sm": [
27
+ "1998"
28
+ ],
29
+ "dct_spatial_sm": [
30
+ "Illinois, United States"
31
+ ],
32
+ "layer_slug_s": "90f14ff4-1359-4beb-b931-5cb41d20ab90",
33
+ "layer_geom_type_s": "Polygon",
34
+ "layer_modified_dt": "2018-08-02T17:00:40Z",
35
+ "solr_geom": "ENVELOPE(-91.513518, -87.495214, 42.508348, 36.969972)",
36
+ "solr_year_i": 1998,
37
+ "geoblacklight_version": "1.0"
36
38
  }
@@ -1,37 +1,40 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "layer_geom_type_s": "Polygon",
4
- "layer_modified_dt": "2016-09-19T16:48:34Z",
5
- "solr_geom": "ENVELOPE(-93.772, -93.1769, 45.2477, 44.7834)",
6
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"http://gis.hennepin.opendata.arcgis.com/datasets/62c63204202b45aca308a60efd8784d9_0.zip\",\"http://schema.org/url\":\"http://gis.hennepin.opendata.arcgis.com/datasets/62c63204202b45aca308a60efd8784d9_0\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.umn/0f/7a/e3/8b4bf24e03a32be87f245ccb03/iso19139.xml\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://gis.hennepin.us/arcgis/rest/services/HennepinData/PEOPLE_SOCIETY/MapServer/0\"}",
2
+ "dc_identifier_s": "4669301e-b4b2-4c8b-bf40-01b968a2865b",
3
+ "dc_title_s": "Abandoned Quarries: Indiana",
4
+ "dc_description_s": "QUARRIES_ABANDONED_IN was derived from a comma-delimited text file named \"QUALOC.TXT\" contained on the following CD-ROM publication: Hasenmueller, W.A., and Ault, C.H., 2001, Abandoned Industrial Minerals Quarries in Indiana, 2nd Edition, Digital Version, Computer Database 2, Indiana Geological Survey. The field named \"QUANUM\" can be used to link this data to the following tables available in the publication cited above: bibliography (QUAREF.TXT), history of operation (QUAHIS.TXT), and stratigraphy (QUASTR.TXT). It contains all abandoned quarry locations within QUALOC.TXT that have locational information that is adequate to determine UTM coordinate values.",
7
5
  "dc_rights_s": "Public",
8
- "dct_provenance_s": "Minnesota",
9
- "dc_subject_sm": [
10
- "Society"
6
+ "dc_format_s": "Shapefile",
7
+ "dc_language_sm": "English",
8
+ "dc_type_sm": [
9
+ "Dataset",
10
+ "Service"
11
11
  ],
12
- "dct_temporal_sm": [
13
- "2015"
12
+ "dc_publisher_sm": [
13
+ "Indiana Geological Survey"
14
14
  ],
15
- "dc_description_s": "2010 US Census County Subdivisions (Cities) for Hennepin County with subset of PL94-171 demographic data. The Hennepin County GIS Office downloaded US Census data from the following sites: Shapefiles: http://www.census.gov/cgi-bin/geo/shapefiles2010/main PL94-171: http://www.census.gov/rdo/data/2010_census_redistricting_data_pl_94-171_summary_files.html PL94-171 tabular data was post processed per instructions and stored in an Access database. Link to Attribute Table Information: http://gis.hennepin.us/OpenData/Metadata/2010%20Census%20Cities.pdf Data updated: 04/08/2011 Use Limitations: This data (i) is furnished 'AS IS' with no representation as to completeness or accuracy; (ii) is furnished with no warranty of any kind; and (iii) is not suitable for legal, engineering or surveying purposes. Hennepin County shall not be liable for any damage, injury or loss resulting from this data.",
16
- "dct_issued_s": "2015-09-11T18:24:36Z",
17
- "dc_format_s": "Shapefile",
18
15
  "dc_creator_sm": [
19
- "Hennepin County"
16
+ "Indiana Geological Survey"
20
17
  ],
21
- "dc_type_s": "Dataset",
22
- "dc_identifier_s": "urn-0f7ae38b-4bf2-4e03-a32b-e87f245ccb03",
18
+ "dc_subject_sm": [
19
+ "Geoscientific Information",
20
+ "Geology"
21
+ ],
22
+ "dct_provenance_s": "Purdue",
23
+ "dct_references_s": "{\"http://schema.org/url\":\"http://maps.indiana.edu/previewMaps/Geology/Industrial_Minerals_Quarries_Abandoned.html\",\"http://schema.org/downloadUrl\":\"http://maps.indiana.edu/download/Geology/Industrial_Minerals_Quarries_Abandoned.zip\",\"http://schema.org/image\":\"http://maps.indiana.edu/images/Geology/Industrial_Minerals_Quarries_Abandoned.png\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://maps.indiana.edu/arcgis/rest/services/Geology/Industrial_Minerals_Quarries_Abandoned/MapServer/0\",\"http://www.opengis.net/cat/csw/csdgm\":\"http://maps.indiana.edu/metadata/Geology/Industrial_Minerals_Quarries_Abandoned.xml\"}",
23
24
  "dct_isPartOf_sm": [
24
- "Hennepin County Open Data"
25
+ "IndianaMAP"
25
26
  ],
26
- "solr_year_i": 2015,
27
- "dct_spatial_sm": [
28
- "Hennepin County, Minnesota",
29
- "Minnesota"
27
+ "dct_issued_s": "2003-05-30",
28
+ "dct_temporal_sm": [
29
+ "2003"
30
30
  ],
31
- "dc_publisher_sm": [
32
- "Hennepin County"
31
+ "dct_spatial_sm": [
32
+ "Indiana, United States"
33
33
  ],
34
- "layer_id_s": "urn:urn-0f7ae38b-4bf2-4e03-a32b-e87f245ccb03",
35
- "dc_title_s": "2010 Census Cities: Hennepin County, Minnesota",
36
- "layer_slug_s": "Minnesota-urn-0f7ae38b-4bf2-4e03-a32b-e87f245ccb03"
37
- }
34
+ "layer_slug_s": "4669301e-b4b2-4c8b-bf40-01b968a2865b",
35
+ "layer_geom_type_s": "Point",
36
+ "layer_modified_dt": "2018-08-02T17:05:54Z",
37
+ "solr_geom": "ENVELOPE(-87.9324, -86.2569, 39.8521, 37.8626)",
38
+ "solr_year_i": 2003,
39
+ "geoblacklight_version": "1.0"
40
+ }
@@ -1,33 +1,46 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "layer_geom_type_s": "Polygon",
4
- "layer_modified_dt": "2016-07-11T09:15:37Z",
5
- "solr_geom": "ENVELOPE(-93.3291083642602, -93.1896159986687, 45.0512462600492, 44.8901520021226)",
6
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"http://opendata.minneapolismn.gov/datasets/772ebcaf2ec0405ea1b156b5937593e7_0.zip\",\"urn:x-esri:serviceType:ArcGIS#FeatureLayer\":\"https://services.arcgis.com/afSMGVsC7QlRK1kZ/arcgis/rest/services/Fire_Station_Areas/FeatureServer/0\",\"http://schema.org/url\":\"http://opendata.minneapolismn.gov/datasets/772ebcaf2ec0405ea1b156b5937593e7_0\"}",
2
+ "dc_identifier_s": "f406332e63eb4478a9560ad86ae90327_18",
3
+ "dc_title_s": "Transit - Airports: Maryland",
4
+ "dc_description_s": "This is a MD iMAP hosted service layer. Find more information at http://imap.maryland.gov. The Airports database is a geographic point database of aircraft landing facilities in the State of Maryland. Attribute data is provided on the physical and operational characteristics of the landing facility, current usage including enplanements and aircraft operations, congestion levels and usage categories. This geospatial data is derived from the FAA's National Airspace System Resource Aeronautical Data Product. This dataset only contains features located within the State of Maryland. Last Updated: 06/2013",
7
5
  "dc_rights_s": "Public",
8
- "dct_provenance_s": "Minnesota",
9
- "dc_subject_sm": [
10
- "utilitiesCommunications",
11
- "fire"
12
- ],
13
- "dct_temporal_sm": "2015",
14
- "dc_description_s": "Map service showing the Fire Station service areas for the Minneapolis Fire Department.",
15
- "dct_issued_s": "2012-04-25T19:32:02.000ZZ",
16
6
  "dc_format_s": "Shapefile",
7
+ "dc_language_sm": "English",
8
+ "dc_type_sm": [
9
+ "Dataset",
10
+ "Service"
11
+ ],
12
+ "dc_publisher_sm": [
13
+ "State of Maryland"
14
+ ],
17
15
  "dc_creator_sm": [
18
- "MapIT Minneapolis"
16
+ "Maryland iMap"
17
+ ],
18
+ "dc_subject_sm": [
19
+ "Transportation"
20
+ ],
21
+ "dct_provenance_s": "Maryland",
22
+ "dct_references_s": "{\"http://schema.org/url\":\"http://data.imap.maryland.gov/datasets/f406332e63eb4478a9560ad86ae90327_18\",\"http://schema.org/downloadUrl\":\"http://data.imap.maryland.gov/datasets/f406332e63eb4478a9560ad86ae90327_18.zip\",\"urn:x-esri:serviceType:ArcGIS#FeatureLayer\":\"https://geodata.md.gov/imap/rest/services/Transportation/MD_Transit/FeatureServer/18\"}",
23
+ "dct_isPartOf_sm": [
24
+ "ArcGIS Open Data"
25
+ ],
26
+ "dct_issued_s": "2016-02-16",
27
+ "dct_temporal_sm": [
28
+ "2016"
19
29
  ],
20
- "dc_type_s": "Dataset",
21
- "dc_identifier_s": "e2f33b52-4039-4bbb-9095-b5cdc0175943",
22
- "solr_year_i": 2012,
23
30
  "dct_spatial_sm": [
24
- "City of Minneapolis, Minnesota",
25
- "Minneapolis"
31
+ "Maryland, United States"
26
32
  ],
27
- "dc_publisher_sm": [
28
- "MapIT Minneapolis"
33
+ "layer_slug_s": "f406332e63eb4478a9560ad86ae90327_18",
34
+ "layer_geom_type_s": "Point",
35
+ "layer_modified_dt": "2018-08-02T17:16:57Z",
36
+ "solr_geom": "ENVELOPE(-79.4539, -75.124, 39.7194, 37.9667)",
37
+ "solr_year_i": 2016,
38
+ "b1g_genre_sm": [
39
+ "Geospatial data"
29
40
  ],
30
- "layer_id_s": "urn:e2f33b52-4039-4bbb-9095-b5cdc0175943",
31
- "dc_title_s": "Fire Station Areas: Minneapolis, Minnesota",
32
- "layer_slug_s": "minnesota-e2f33b52-4039-4bbb-9095-b5cdc0175943"
41
+ "b1g_centroid_ss": "38.84305,-77.28895",
42
+ "b1g_geonames_sm": [],
43
+ "b1g_image_ss": "",
44
+ "b1g_collection_sm": "10a-01",
45
+ "geoblacklight_version": "1.0"
33
46
  }
@@ -1,21 +1,42 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_description_s": "A Web Mercator mosaic derived from half-meter resolution color Digital Orthophoto Quadrangles (DOQ) of the entire state of Oregon from the summer of 2011 for multiple state agencies in Oregon. The original content was produced utilizing the scanned aerial film acquired during peak agriculture growing seasons under the National Agriculture Imagery Program (NAIP) under contract for the United States Department of Agriculture (USDA) for the Farm Service Agency's (FSA) Compliance Program. A DOQ is a raster image in which displacement in the image caused by sensor orientation and terrain relief has been removed. A DOQ combines the image characteristics of a photograph with the geometric qualities of a map. The geographic extent of the DOQ is a full 7.5-minute map (latitude and longitude) with a nominal buffer. The horizontal accuracy is within 5 meters of reference ortho imagery (1992 USGS DOQs.) The 1992 USGS DOQ imagery met National Map Accuracy Standards at 1:24,000 scale for 7.5-minute quadrangles. Translated to the ground, the 0.5 mm error distance at 1:24,000 scale is 39.4 ft (12 meters), making the absolute accuracy for the 2011 Oregon DOQs +/- 17 meters. The process of reprojecting and mosaicing the images may have added a potential shift of +/-0.75 meters, making the cumulative accuracy +/-17.75 meters. The original images were projected into a GCS_WGS_1984_Web_Mercator(Auxiliary Sphere) for compatibility with other generic web map services.",
4
- "dc_format_s": "GeoTIFF",
5
- "dc_identifier_s": "oregon-naip-2011",
6
- "dc_language_s": "English",
2
+ "dc_identifier_s": "32653ed6-8d83-4692-8a06-bf13ffe2c018",
3
+ "dc_title_s": "Wabash Topo (27): Indiana, 1929",
4
+ "dc_description_s": "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984.",
7
5
  "dc_rights_s": "Public",
8
- "dc_title_s": "2011 One Meter Color IR NAIP Orthoimagery",
9
- "dc_type_s": "Dataset",
10
- "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\": \"http://imagery.oregonexplorer.info/arcgis/rest/services/NAIP_2011/NAIP_2011_Dynamic/ImageServer\"}",
6
+ "dc_format_s": "GeoTIFF",
7
+ "dc_language_sm": [
8
+ "English"
9
+ ],
10
+ "dc_type_sm": [
11
+ "Image"
12
+ ],
13
+ "dc_publisher_sm": [
14
+ "Purdue University Libraries"
15
+ ],
16
+ "dc_creator_sm": [
17
+
18
+ ],
19
+ "dc_source_sm": "88cc9b19-3294-4da9-9edd-775c81fb1c59",
20
+ "dc_subject_sm": [
21
+ "Imagery and Base Maps",
22
+ "Topography"
23
+ ],
24
+ "dct_provenance_s": "Purdue",
25
+ "dct_references_s": "{\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\",\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_27.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://64.90.181.107/geonetwork/srv/api/records/32653ed6-8d83-4692-8a06-bf13ffe2c018/formatters/xml\"}",
26
+ "dct_isPartOf_sm": [
27
+ "Purdue Georeferenced Imagery"
28
+ ],
29
+ "dct_issued_s": "2015-10-31",
11
30
  "dct_temporal_sm": [
12
- "2011"
13
- ],
14
- "dct_provenance_s": "Princeton",
15
- "layer_slug_s": "princeton-test-oregon-naip-2011",
16
- "layer_id_s": "oregon-naip-2011",
17
- "layer_geom_type_s": "Raster",
18
- "layer_modified_dt": "2015-07-15T00:41:49Z",
19
- "solr_geom": "ENVELOPE(-124.88, -116.41, 46.34, 41.91)",
20
- "solr_year_i": 2008
21
- }
31
+ "1929"
32
+ ],
33
+ "dct_spatial_sm": [
34
+ "Indiana, United States"
35
+ ],
36
+ "layer_slug_s": "32653ed6-8d83-4692-8a06-bf13ffe2c018",
37
+ "layer_geom_type_s": "Image",
38
+ "layer_modified_dt": "2018-07-20T18:08:03Z",
39
+ "solr_geom": "ENVELOPE(-87.324704, -87.174404, 40.310695, 40.233691)",
40
+ "solr_year_i": 1929,
41
+ "geoblacklight_version": "1.0"
42
+ }