geoblacklight 1.0.0.pre2 → 1.0.0.pre3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/geoblacklight/basemaps.js +6 -4
  3. data/app/assets/javascripts/geoblacklight/geoblacklight.js +1 -1
  4. data/app/assets/javascripts/geoblacklight/modules/util.js +11 -0
  5. data/app/assets/javascripts/geoblacklight/viewers/esri.js +1 -1
  6. data/app/assets/javascripts/geoblacklight/viewers/map.js +2 -8
  7. data/app/assets/javascripts/geoblacklight/viewers/wms.js +1 -1
  8. data/app/assets/stylesheets/geoblacklight/_geoblacklight.scss +2 -0
  9. data/app/assets/stylesheets/geoblacklight/modules/facets.scss +5 -0
  10. data/app/assets/stylesheets/geoblacklight/modules/twitter-typeahead.scss +11 -0
  11. data/app/helpers/geoblacklight_helper.rb +12 -0
  12. data/app/views/catalog/_icon_facet.html.erb +1 -6
  13. data/lib/generators/geoblacklight/install_generator.rb +1 -1
  14. data/lib/geoblacklight/version.rb +1 -1
  15. data/lib/tasks/configure_solr.rake +0 -4
  16. data/lib/tasks/geoblacklight.rake +15 -0
  17. data/schema/geoblacklight-schema.json +207 -0
  18. data/schema/geoblacklight-schema.md +37 -29
  19. data/schema/solr/conf/schema.xml +5 -2
  20. data/spec/features/esri_viewer_spec.rb +7 -7
  21. data/spec/features/home_page_spec.rb +1 -1
  22. data/spec/features/layer_opacity_spec.rb +1 -1
  23. data/spec/features/linkified_attribute_table_spec.rb +11 -0
  24. data/spec/fixtures/solr_documents/actual-papermap1.json +22 -24
  25. data/spec/fixtures/solr_documents/actual-point1.json +2 -4
  26. data/spec/fixtures/solr_documents/actual-polygon1.json +2 -4
  27. data/spec/fixtures/solr_documents/actual-raster1.json +36 -42
  28. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +3 -4
  29. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +28 -34
  30. data/spec/fixtures/solr_documents/esri-feature-layer.json +15 -21
  31. data/spec/fixtures/solr_documents/esri-image-map-layer.json +4 -5
  32. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +4 -5
  33. data/spec/fixtures/solr_documents/esri-wms-layer.json +32 -40
  34. data/spec/fixtures/solr_documents/harvard_raster.json +3 -6
  35. data/spec/fixtures/solr_documents/public_direct_download.json +2 -5
  36. data/spec/fixtures/solr_documents/public_iiif_princeton.json +2 -3
  37. data/spec/fixtures/solr_documents/public_polygon_mit.json +3 -6
  38. data/spec/fixtures/solr_documents/restricted-line.json +35 -41
  39. data/spec/javascripts/util_spec.js +12 -0
  40. metadata +10 -2
@@ -1,10 +1,12 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <schema name="geoblacklight-schema" version="1.5">
3
- <uniqueKey>uuid</uniqueKey>
3
+ <uniqueKey>layer_slug_s</uniqueKey>
4
4
  <fields>
5
5
  <field name="_version_" type="long" stored="true" indexed="true"/>
6
6
  <field name="timestamp" type="date" stored="true" indexed="true" default="NOW"/>
7
- <field name="uuid" type="string" stored="true" indexed="true" required="true"/>
7
+ <field name="layer_slug_s" type="string" stored="true" indexed="true" required="true"/>
8
+ <field name="geoblacklight_version" type="string" stored="true" indexed="true"/>
9
+ <field name="uuid" type="string" stored="true" indexed="true"/><!-- deprecated -->
8
10
 
9
11
  <!-- core generated fields -->
10
12
  <field name="text" type="text_en" stored="false" indexed="true" multiValued="true"
@@ -16,6 +18,7 @@
16
18
  <dynamicField name="*_dt" type="date" stored="true" indexed="true"/>
17
19
  <dynamicField name="*_f" type="float" stored="true" indexed="true"/>
18
20
  <dynamicField name="*_i" type="int" stored="true" indexed="true"/>
21
+ <dynamicField name="*_im" type="int" stored="true" indexed="true" multiValued="true" />
19
22
  <dynamicField name="*_l" type="long" stored="true" indexed="true"/>
20
23
  <dynamicField name="*_s" type="string" stored="true" indexed="true"/>
21
24
  <dynamicField name="*_ss" type="string" stored="true" indexed="false"/>
@@ -2,39 +2,39 @@ require 'spec_helper'
2
2
 
3
3
  feature 'feature_layer reference', js: true do
4
4
  scenario 'displays image map layer' do
5
- visit solr_document_path 'minnesota-test-oregon-naip-2011'
5
+ visit solr_document_path 'princeton-test-oregon-naip-2011'
6
6
  expect(page).to have_css '.leaflet-control-zoom', visible: true
7
7
  expect(page).to have_css 'img.leaflet-image-layer', visible: true
8
8
  end
9
9
  scenario 'displays dynamic layer (all layers)' do
10
- visit solr_document_path 'illinois-f14ff4-1359-4beb-b931-5cb41d20ab90'
10
+ visit solr_document_path 'minnesota-f14ff4-1359-4beb-b931-5cb41d20ab90'
11
11
  expect(page).to have_css '.leaflet-control-zoom', visible: true
12
12
  expect(page).to have_css 'img.leaflet-image-layer', visible: true
13
13
  end
14
14
  scenario 'displays dynamic layer (single layer)' do
15
- visit solr_document_path 'maryland-fc5cd2-732d-4559-a9c7-df38dd683aec'
15
+ visit solr_document_path 'michigan-state-urn-ad0e6ebc-824e-4450-a0d9-987f2232724f'
16
16
  expect(page).to have_css '.leaflet-control-zoom', visible: true
17
17
  expect(page).to have_css 'img.leaflet-image-layer', visible: true
18
18
  end
19
19
  scenario 'displays feature layer' do
20
20
  pending 'cannot currently test for svg feature'
21
- visit solr_document_path 'minnesota-772ebcaf2ec0405ea1b156b5937593e7_0'
21
+ visit solr_document_path 'minnesota-e2f33b52-4039-4bbb-9095-b5cdc0175943'
22
22
  expect(page).to have_css '.leaflet-control-zoom', visible: true
23
23
  expect(Nokogiri::HTML.parse(page.body).css('g').length).to eq 23
24
24
  fail
25
25
  end
26
26
  scenario 'displays image map layer' do
27
- visit solr_document_path 'minnesota-test-oregon-naip-2011'
27
+ visit solr_document_path 'princeton-test-oregon-naip-2011'
28
28
  expect(page).to have_css '.leaflet-control-zoom', visible: true
29
29
  expect(page).to have_css 'img.leaflet-image-layer', visible: true
30
30
  end
31
31
  scenario 'displays tiled map layer' do
32
- visit solr_document_path 'minnesota-test-soil-survey-map'
32
+ visit solr_document_path 'nyu-test-soil-survey-map'
33
33
  expect(page).to have_css '.leaflet-control-zoom', visible: true
34
34
  expect(page).to have_css 'img.leaflet-tile.leaflet-tile-loaded', visible: true
35
35
  end
36
36
  scenario 'displays Esri WMS layer' do
37
- visit solr_document_path 'psu-32ef9f-0762-445c-8250-f4a5e220a46d'
37
+ visit solr_document_path 'purdue-urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa'
38
38
  expect(page).to have_css '.leaflet-control-zoom', visible: true
39
39
  expect(page).to have_css 'img.leaflet-tile.leaflet-tile-loaded', visible: true
40
40
  end
@@ -14,7 +14,7 @@ feature 'Home page', js: true do # use js: true for tests which require js, but
14
14
  end
15
15
  scenario 'find by category' do
16
16
  expect(page).to have_css '.category-block', count: 4
17
- expect(page).to have_css '.home-facet-link', count: 32
17
+ expect(page).to have_css '.home-facet-link', count: 33
18
18
  expect(page).to have_css 'a.more_facets_link', count: 4
19
19
  click_link 'Elevation'
20
20
  expect(page).to have_css '.filterName', text: 'Subject'
@@ -8,7 +8,7 @@ feature 'Layer opacity', js: true do
8
8
  end
9
9
 
10
10
  scenario 'ESRI image service layer should have opacity control' do
11
- visit solr_document_path('minnesota-test-oregon-naip-2011')
11
+ visit solr_document_path('princeton-test-oregon-naip-2011')
12
12
  expect(page).to have_css('div.opacity-text', text: '75%')
13
13
  expect(page.find('img.leaflet-image-layer', match: :first)[:style]).to match(/opacity: 0.75;/)
14
14
  end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ feature 'Attribute table values', js: true do
4
+ scenario 'are linkified' do
5
+ visit solr_document_path 'minnesota-e2f33b52-4039-4bbb-9095-b5cdc0175943'
6
+ # Wait until SVG elements are added
7
+ expect(page).to have_css '.leaflet-overlay-pane svg'
8
+ page.first('svg g path').click
9
+ expect(page).to have_css 'td a[href="http://www.minneapolismn.gov/fire/stations/fire_station28"]', text: 'http://www.minneapolismn.gov/fire/stations/fire_station28'
10
+ end
11
+ end
@@ -1,25 +1,23 @@
1
1
  {
2
- "uuid": "urn:arrowsmith.mit.edu:MIT.001145244",
3
- "dc_description_s": "Panel title. Depths shown by isolines. \"Geological map [copyright] NERC 1996.\" Also available on flat sheet. \"Sheet 1\"--on panel. Includes text, notes, organizations' logos, and ancillary map of \"Orogenic terranes of Britain, Ireland and surrounding seas.\"",
4
- "dc_format_s": "Paper",
5
- "dc_identifier_s": "urn:arrowsmith.mit.edu:MIT.001145244",
6
- "dc_language_s": "English",
7
- "dc_publisher_s": "British Geological Survey",
8
- "dc_rights_s": "Public",
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
- "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\"}",
12
- "dct_temporal_sm": [
13
- "1996"
14
- ],
15
- "dct_issued_s": "2000",
16
- "dct_provenance_s": "MIT",
17
- "georss_box_s": "49.0 -13.0 62.0 4.0",
18
- "georss_polygon_s": "62.0 -13.0 62.0 4.0 49.0 4.0 49.0 -13.0 62.0 -13.0",
19
- "layer_slug_s": "mit-001145244",
20
- "layer_id_s": "MIT:001145244",
21
- "layer_geom_type_s": "Paper Map",
22
- "layer_modified_dt": "2014-12-04T21:32:59Z",
23
- "solr_geom": "ENVELOPE(-13.0, 4.0, 62.0, 49.0)",
24
- "solr_year_i": 1996
25
- }
2
+ "geoblacklight_version": "1.0",
3
+ "dc_description_s": "Panel title. Depths shown by isolines. \"Geological map [copyright] NERC 1996.\" Also available on flat sheet. \"Sheet 1\"--on panel. Includes text, notes, organizations' logos, and ancillary map of \"Orogenic terranes of Britain, Ireland and surrounding seas.\"",
4
+ "dc_format_s": "Paper",
5
+ "dc_identifier_s": "urn:arrowsmith.mit.edu:MIT.001145244",
6
+ "dc_language_s": "English",
7
+ "dc_publisher_s": "British Geological Survey",
8
+ "dc_rights_s": "Public",
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
+ "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\"}",
12
+ "dct_temporal_sm": [
13
+ "1996"
14
+ ],
15
+ "dct_issued_s": "2000",
16
+ "dct_provenance_s": "MIT",
17
+ "layer_slug_s": "mit-001145244",
18
+ "layer_id_s": "MIT:001145244",
19
+ "layer_geom_type_s": "Paper Map",
20
+ "layer_modified_dt": "2014-12-04T21:32:59Z",
21
+ "solr_geom": "ENVELOPE(-13.0, 4.0, 62.0, 49.0)",
22
+ "solr_year_i": 1996
23
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "uuid": "urn:columbia.edu:Columbia.landinfo_global_aet",
2
+ "geoblacklight_version": "1.0",
3
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.",
4
4
  "dc_format_s": "Shapefile",
5
5
  "dc_identifier_s": "urn:columbia.edu:Columbia.landinfo_global_aet",
@@ -15,12 +15,10 @@
15
15
  "1996"
16
16
  ],
17
17
  "dct_provenance_s": "Columbia",
18
- "georss_box_s": "-56.0 -179.5 83.0 180.0",
19
- "georss_polygon_s": "83.0 -179.5 83.0 180.0 -56.0 180.0 -56.0 -179.5 83.0 -179.5",
20
18
  "layer_slug_s": "columbia-columbia-landinfo-global-aet",
21
19
  "layer_id_s": "Columbia:Columbia.landinfo_global_aet",
22
20
  "layer_geom_type_s": "Point",
23
21
  "layer_modified_dt": "2014-12-12T19:54:57Z",
24
22
  "solr_geom": "ENVELOPE(-179.5, 180.0, 83.0, -56.0)",
25
23
  "solr_year_i": 1996
26
- }
24
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "uuid": "urn:geodata.tufts.edu:Tufts.CambridgeGrid100_04",
2
+ "geoblacklight_version": "1.0",
3
3
  "dc_description_s": "This polygon dataset is a 100 foot grid overlay for Cambridge, MA.",
4
4
  "dc_format_s": "Shapefile",
5
5
  "dc_identifier_s": "urn:geodata.tufts.edu:Tufts.CambridgeGrid100_04",
@@ -14,12 +14,10 @@
14
14
  ],
15
15
  "dct_issued_s": "2005",
16
16
  "dct_provenance_s": "Tufts",
17
- "georss_box_s": "42.34757 -71.163984 42.408316 -71.052581",
18
- "georss_polygon_s": "42.408316 -71.163984 42.408316 -71.052581 42.34757 -71.052581 42.34757 -71.163984 42.408316 -71.163984",
19
17
  "layer_slug_s": "tufts-cambridgegrid100-04",
20
18
  "layer_id_s": "sde:GISPORTAL.GISOWNER01.CAMBRIDGEGRID100_04",
21
19
  "layer_geom_type_s": "Polygon",
22
20
  "layer_modified_dt": "2014-12-04T21:33:07Z",
23
21
  "solr_geom": "ENVELOPE(-71.163984, -71.052581, 42.408316, 42.34757)",
24
22
  "solr_year_i": 2004
25
- }
23
+ }
@@ -1,43 +1,37 @@
1
1
  {
2
- "uuid": "http://purl.stanford.edu/dp018hs9766",
3
- "dc_identifier_s": "http://purl.stanford.edu/dp018hs9766",
4
- "dc_title_s": "1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005",
5
- "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
- "dc_rights_s": "Restricted",
7
- "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\"}",
9
- "layer_id_s": "druid:dp018hs9766",
10
- "layer_slug_s": "stanford-dp018hs9766",
11
- "layer_geom_type_s": "Raster",
12
- "layer_modified_dt": "2014-12-03T02:15:20Z",
13
- "dc_format_s": "GeoTIFF",
14
- "dc_language_s": "English",
15
- "dc_type_s": "Dataset",
16
- "dc_publisher_s": "Seafloor Mapping Lab",
17
- "dc_creator_sm": [
18
- "Seafloor Mapping Lab"
19
- ],
20
- "dc_subject_sm": [
21
- "Continental margins",
22
- "Multibeam mapping",
23
- "Elevation",
24
- "Imagery and Base Maps",
25
- "Inland Waters"
26
- ],
27
- "dct_issued_s": "2006",
28
- "dct_temporal_sm": [
29
- "2005"
30
- ],
31
- "dct_spatial_sm": [
32
- "Elkhorn Slough (Calif.)",
33
- "Monterey Bay (Calif.)"
34
- ],
35
- "dc_relation_sm": [
36
- "http://sws.geonames.org/5346182/about.rdf",
37
- "http://sws.geonames.org/5374363/about.rdf"
38
- ],
39
- "georss_box_s": "36.8085911 -121.7948738 36.8606925 -121.7389503",
40
- "georss_polygon_s": "36.8085911 -121.7948738 36.8606925 -121.7948738 36.8606925 -121.7389503 36.8085911 -121.7389503 36.8085911 -121.7948738",
41
- "solr_geom": "ENVELOPE(-121.7948738, -121.7389503, 36.8606925, 36.8085911)",
42
- "solr_year_i": 2005
43
- }
2
+ "geoblacklight_version": "1.0",
3
+ "dc_identifier_s": "http://purl.stanford.edu/dp018hs9766",
4
+ "dc_title_s": "1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005",
5
+ "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
+ "dc_rights_s": "Restricted",
7
+ "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\"}",
9
+ "layer_id_s": "druid:dp018hs9766",
10
+ "layer_slug_s": "stanford-dp018hs9766",
11
+ "layer_geom_type_s": "Raster",
12
+ "layer_modified_dt": "2014-12-03T02:15:20Z",
13
+ "dc_format_s": "GeoTIFF",
14
+ "dc_language_s": "English",
15
+ "dc_type_s": "Dataset",
16
+ "dc_publisher_s": "Seafloor Mapping Lab",
17
+ "dc_creator_sm": [
18
+ "Seafloor Mapping Lab"
19
+ ],
20
+ "dc_subject_sm": [
21
+ "Continental margins",
22
+ "Multibeam mapping",
23
+ "Elevation",
24
+ "Imagery and Base Maps",
25
+ "Inland Waters"
26
+ ],
27
+ "dct_issued_s": "2006",
28
+ "dct_temporal_sm": [
29
+ "2005"
30
+ ],
31
+ "dct_spatial_sm": [
32
+ "Elkhorn Slough (Calif.)",
33
+ "Monterey Bay (Calif.)"
34
+ ],
35
+ "solr_geom": "ENVELOPE(-121.7948738, -121.7389503, 36.8606925, 36.8085911)",
36
+ "solr_year_i": 2005
37
+ }
@@ -1,13 +1,13 @@
1
1
  {
2
- "uuid": "urn-90f14ff4-1359-4beb-b931-5cb41d20ab90",
2
+ "geoblacklight_version": "1.0",
3
3
  "layer_geom_type_s": "Polygon",
4
4
  "dc_identifier_s": "urn-90f14ff4-1359-4beb-b931-5cb41d20ab90",
5
5
  "dc_title_s": "Glacial Boundaries: Illinois, 1997",
6
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
7
  "dc_rights_s": "Public",
8
- "dct_provenance_s": "University of Illinois",
8
+ "dct_provenance_s": "Minnesota",
9
9
  "layer_id_s": "urn:f14ff4-1359-4beb-b931-5cb41d20ab90",
10
- "layer_slug_s": "illinois-f14ff4-1359-4beb-b931-5cb41d20ab90",
10
+ "layer_slug_s": "minnesota-f14ff4-1359-4beb-b931-5cb41d20ab90",
11
11
  "layer_modified_dt": "2016-01-12T16:10:41Z",
12
12
  "dc_creator_sm": [
13
13
  "Illinois State Geological Survey"
@@ -31,7 +31,6 @@
31
31
  "dct_issued_s": "1997-12-13",
32
32
  "dct_temporal_sm": "1996",
33
33
  "solr_geom": "ENVELOPE(-91.513518, -87.495214, 42.508348, 36.969972)",
34
- "georss_box_s": "36.969972 -91.513518 42.508348 -87.495214",
35
34
  "solr_year_i": 1997,
36
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\"}"
37
36
  }
@@ -1,40 +1,34 @@
1
1
  {
2
- "uuid": "urn-bdfc5cd2-732d-4559-a9c7-df38dd683aec",
3
- "layer_geom_type_s": "Polygon",
4
- "georss_box_s": "38.0044 -79.4871 39.7226 -75.2327",
5
- "layer_modified_dt": "2016-01-11T12:28:18Z",
2
+ "geoblacklight_version": "1.0",
6
3
  "dc_creator_sm": [
7
- "Maryland Department of Planning"
4
+ "State of Michigan"
8
5
  ],
9
- "layer_id_s": "Permanently Preserved Agricultural Lands",
10
- "dc_type_s": "Dataset",
11
- "dc_identifier_s": "urn-bdfc5cd2-732d-4559-a9c7-df38dd683aec",
12
- "dct_provenance_s": "University of Maryland",
13
- "dc_title_s": "Permanently Preserved Agricultural Lands: Maryland, 2014",
14
- "layer_slug_s": "maryland-fc5cd2-732d-4559-a9c7-df38dd683aec",
6
+ "dc_description_s": "Michigan Glacial Landsystems",
15
7
  "dc_format_s": "Shapefile",
16
- "dc_description_s": "This layer contains lands that have been forever restricted from development on prime farmland and woodland. Permanently preserved agricultural lands are parcels subject to some type of preservation easement as well as properties owned by federal, state and local governments. In addition, properties owned by local trusts and private conservation organizations such as The Nature Conservancy are included. Conservation easements include easements from the Maryland Agricultural Land Preservation Foundation (MALPF), Rural Legacy, Forest Legacy, Maryland Environmental Trust (MET), county and state purchases of development rights, transfers of development rights, open space from home owners associations, local open space requirements, and private conservation easements. This data is compiled from settlement data directly from conservation program administrators, county GIS updates on preservation activities, and publicly available data from the Maryland Department of Natural Resources. In addition, this data is in the process of being realigned to the 2012 MD iMap parcel polygons. The realignments are available on a county by county basis depending on the production schedule.",
17
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"http://geodata.md.gov/imap/rest/directories/arcgisoutput/AGRL_PermPreservedAgLands_MDP.zip\",\"http://schema.org/url\":\"http://data.imap.maryland.gov/datasets/20f240af3be54be581f9ceef1b314b6a_0\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"http://geodata.md.gov/imap/rest/services/Agriculture/MD_AgriculturalDesignations/MapServer/0\"}",
18
- "dc_subject_sm": [
19
- "Planning and Cadastral",
20
- "Farming",
21
- "Maryland",
22
- "MDP",
23
- "MALPF",
24
- "Agriculture",
25
- "Rural Legacy",
26
- "Maryland Department of Planning",
27
- "Easement",
28
- "MET",
29
- "Preservation",
30
- "AGRL",
31
- "Conservation",
32
- "protected lands",
33
- "MD iMAP",
34
- "MD"
8
+ "dc_identifier_s": "urn-ad0e6ebc-824e-4450-a0d9-987f2232724f",
9
+ "dc_publisher_sm": [
10
+ "State of Michigan GIS Open Data"
35
11
  ],
36
- "solr_year_i": 2014,
37
- "solr_geom": "ENVELOPE(-79.4871, -75.2327, 39.7226, 38.0044)",
38
12
  "dc_rights_s": "Public",
39
- "dct_issued_s": "2014-04-02"
40
- }
13
+ "dc_subject_sm": [
14
+ "geoscientificinformation",
15
+ "utilitiesCommunications",
16
+ "inlandWaters",
17
+ "glaciers",
18
+ "geology"
19
+ ],
20
+ "dc_title_s": "Glacial Landsystems: Michigan, 2015",
21
+ "dc_type_s": "Dataset",
22
+ "dct_issued_s": "2015-02-28T18:53:27Z",
23
+ "dct_provenance_s": "Michigan State",
24
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"http://gis.michigan.opendata.arcgis.com/datasets/a020fc444ff04d6abf7b03b268cadb71_9.zip\",\"http://schema.org/url\":\"http://gis.michigan.opendata.arcgis.com/datasets/a020fc444ff04d6abf7b03b268cadb71_9\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.michstate/ad/0e/6e/bc824e4450a0d9987f2232724f/iso19139.xml\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://gisago.mcgi.state.mi.us/arcgis/rest/services/OpenData/hydro/MapServer/9\"}",
25
+ "dct_spatial_sm": [
26
+ "Michigan"
27
+ ],
28
+ "layer_geom_type_s": "Polygon",
29
+ "layer_id_s": "urn:urn-ad0e6ebc-824e-4450-a0d9-987f2232724f",
30
+ "layer_modified_dt": "2016-07-18T15:17:46Z",
31
+ "layer_slug_s": "michigan-state-urn-ad0e6ebc-824e-4450-a0d9-987f2232724f",
32
+ "solr_geom": "ENVELOPE(-90.5497, -82.0758, 48.2152, 41.6321)",
33
+ "solr_year_i": 2015
34
+ }
@@ -1,22 +1,16 @@
1
- {
1
+ {
2
+ "geoblacklight_version": "1.0",
2
3
  "layer_geom_type_s": "Polygon",
3
- "layer_modified_dt": "2016-01-19T09:33:12.85Z",
4
+ "layer_modified_dt": "2016-07-11T09:15:37Z",
4
5
  "solr_geom": "ENVELOPE(-93.3291083642602, -93.1896159986687, 45.0512462600492, 44.8901520021226)",
5
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\"}",
6
7
  "dc_rights_s": "Public",
7
- "uuid": "http://opendata.minneapolismn.gov/datasets/772ebcaf2ec0405ea1b156b5937593e7_0",
8
- "dct_provenance_s": "University of Minnesota",
8
+ "dct_provenance_s": "Minnesota",
9
9
  "dc_subject_sm": [
10
- "Boundaries",
11
- "Minneapolis",
12
- "Fire Station Areas",
13
- "Fire",
14
- "Fire Department",
15
- "Boundaries"
16
- ],
17
- "dct_temporal_sm": [
18
- "2015"
10
+ "utilitiesCommunications",
11
+ "fire"
19
12
  ],
13
+ "dct_temporal_sm": "2015",
20
14
  "dc_description_s": "Map service showing the Fire Station service areas for the Minneapolis Fire Department.",
21
15
  "dct_issued_s": "2012-04-25T19:32:02.000ZZ",
22
16
  "dc_format_s": "Shapefile",
@@ -24,16 +18,16 @@
24
18
  "MapIT Minneapolis"
25
19
  ],
26
20
  "dc_type_s": "Dataset",
27
- "dc_identifier_s": "http://opendata.minneapolismn.gov/datasets/772ebcaf2ec0405ea1b156b5937593e7_0",
28
- "solr_year_i": 2015,
21
+ "dc_identifier_s": "e2f33b52-4039-4bbb-9095-b5cdc0175943",
22
+ "solr_year_i": 2012,
29
23
  "dct_spatial_sm": [
30
- "Minneapolis, City of"
24
+ "City of Minneapolis, Minnesota",
25
+ "Minneapolis"
31
26
  ],
32
27
  "dc_publisher_sm": [
33
28
  "MapIT Minneapolis"
34
29
  ],
35
- "layer_id_s": "urn:772ebcaf2ec0405ea1b156b5937593e7_0",
36
- "georss_box_s": "44.8901520021226 -93.3291083642602 45.0512462600492 -93.1896159986687",
37
- "dc_title_s": "Fire Station Areas",
38
- "layer_slug_s": "minnesota-772ebcaf2ec0405ea1b156b5937593e7_0"
39
- }
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"
33
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "uuid": "oregon-naip-2011",
2
+ "geoblacklight_version": "1.0",
3
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
4
  "dc_format_s": "GeoTIFF",
5
5
  "dc_identifier_s": "oregon-naip-2011",
@@ -11,12 +11,11 @@
11
11
  "dct_temporal_sm": [
12
12
  "2011"
13
13
  ],
14
- "dct_provenance_s": "University of Minnesota",
15
- "georss_box_s": "41.91 -124.88 46.34 -116.41",
16
- "layer_slug_s": "minnesota-test-oregon-naip-2011",
14
+ "dct_provenance_s": "Princeton",
15
+ "layer_slug_s": "princeton-test-oregon-naip-2011",
17
16
  "layer_id_s": "oregon-naip-2011",
18
17
  "layer_geom_type_s": "Raster",
19
18
  "layer_modified_dt": "2015-27-15T00:41:49Z",
20
19
  "solr_geom": "ENVELOPE(-124.88, -116.41, 46.34, 41.91)",
21
20
  "solr_year_i": 2008
22
- }
21
+ }