geoblacklight_sidecar_images 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +17 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +80 -0
  6. data/.travis.yml +29 -0
  7. data/Gemfile +47 -0
  8. data/LICENSE +201 -0
  9. data/README.md +45 -0
  10. data/Rakefile +37 -0
  11. data/app/assets/config/geoblacklight_sidecar_images_manifest.js +2 -0
  12. data/app/assets/images/geoblacklight_sidecar_images/.keep +0 -0
  13. data/app/assets/javascripts/geoblacklight_sidecar_images/application.js +13 -0
  14. data/app/assets/stylesheets/geoblacklight_sidecar_images/application.css +15 -0
  15. data/app/controllers/geoblacklight_sidecar_images/application_controller.rb +5 -0
  16. data/app/helpers/geoblacklight_sidecar_images/application_helper.rb +4 -0
  17. data/app/jobs/geoblacklight_sidecar_images/application_job.rb +4 -0
  18. data/app/mailers/geoblacklight_sidecar_images/application_mailer.rb +6 -0
  19. data/app/models/geoblacklight_sidecar_images/application_record.rb +5 -0
  20. data/app/views/layouts/geoblacklight_sidecar_images/application.html.erb +14 -0
  21. data/config/routes.rb +2 -0
  22. data/db/migrate/20180118203155_create_solr_document_sidecars.rb +12 -0
  23. data/geoblacklight_sidecar_images.gemspec +37 -0
  24. data/lib/generators/geoblacklight_sidecar_images/assets_generator.rb +31 -0
  25. data/lib/generators/geoblacklight_sidecar_images/example_docs_generator.rb +18 -0
  26. data/lib/generators/geoblacklight_sidecar_images/install_generator.rb +58 -0
  27. data/lib/generators/geoblacklight_sidecar_images/jobs_generator.rb +27 -0
  28. data/lib/generators/geoblacklight_sidecar_images/models_generator.rb +60 -0
  29. data/lib/generators/geoblacklight_sidecar_images/services_generator.rb +19 -0
  30. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-image.png +0 -0
  31. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-line.png +0 -0
  32. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-mixed.png +0 -0
  33. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-multipoint.png +0 -0
  34. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-paper-map.png +0 -0
  35. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-point.png +0 -0
  36. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-polygon.png +0 -0
  37. data/lib/generators/geoblacklight_sidecar_images/templates/assets/images/thumbnail-raster.png +0 -0
  38. data/lib/generators/geoblacklight_sidecar_images/templates/assets/javascripts/geoblacklight.js +9 -0
  39. data/lib/generators/geoblacklight_sidecar_images/templates/assets/stylesheets/geoblacklight.scss +3 -0
  40. data/lib/generators/geoblacklight_sidecar_images/templates/jobs/store_image_job.rb +8 -0
  41. data/lib/generators/geoblacklight_sidecar_images/templates/models/concerns/wms_rewrite_concern.rb +20 -0
  42. data/lib/generators/geoblacklight_sidecar_images/templates/models/solr_document_sidecar.rb +16 -0
  43. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service.rb +193 -0
  44. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/dynamic_map_layer.rb +11 -0
  45. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/iiif.rb +13 -0
  46. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/image_map_layer.rb +13 -0
  47. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/tiled_map_layer.rb +11 -0
  48. data/lib/generators/geoblacklight_sidecar_images/templates/services/image_service/wms.rb +24 -0
  49. data/lib/generators/geoblacklight_sidecar_images/templates/uploaders/image_uploader.rb +53 -0
  50. data/lib/generators/geoblacklight_sidecar_images/templates/views/catalog/_index_split_default.html.erb +27 -0
  51. data/lib/generators/geoblacklight_sidecar_images/uploaders_generator.rb +19 -0
  52. data/lib/generators/geoblacklight_sidecar_images/views_generator.rb +21 -0
  53. data/lib/geoblacklight_sidecar_images.rb +5 -0
  54. data/lib/geoblacklight_sidecar_images/engine.rb +5 -0
  55. data/lib/geoblacklight_sidecar_images/version.rb +3 -0
  56. data/lib/tasks/geoblacklight_sidecar_images_tasks.rake +76 -0
  57. data/solr/conf/_rest_managed.json +3 -0
  58. data/solr/conf/admin-extra.html +31 -0
  59. data/solr/conf/elevate.xml +36 -0
  60. data/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  61. data/solr/conf/protwords.txt +21 -0
  62. data/solr/conf/schema.xml +190 -0
  63. data/solr/conf/scripts.conf +24 -0
  64. data/solr/conf/solrconfig.xml +243 -0
  65. data/solr/conf/spellings.txt +2 -0
  66. data/solr/conf/stopwords.txt +58 -0
  67. data/solr/conf/stopwords_en.txt +58 -0
  68. data/solr/conf/synonyms.txt +31 -0
  69. data/solr/conf/xslt/example.xsl +132 -0
  70. data/solr/conf/xslt/example_atom.xsl +67 -0
  71. data/solr/conf/xslt/example_rss.xsl +66 -0
  72. data/solr/conf/xslt/luke.xsl +337 -0
  73. data/spec/fixtures/files/actual-papermap1.json +23 -0
  74. data/spec/fixtures/files/actual-point1.json +24 -0
  75. data/spec/fixtures/files/actual-polygon1.json +23 -0
  76. data/spec/fixtures/files/actual-raster1.json +37 -0
  77. data/spec/fixtures/files/baruch_ancestor1.json +46 -0
  78. data/spec/fixtures/files/baruch_ancestor2.json +46 -0
  79. data/spec/fixtures/files/baruch_documentation_download.json +49 -0
  80. data/spec/fixtures/files/esri-dynamic-layer-all-layers.json +36 -0
  81. data/spec/fixtures/files/esri-dynamic-layer-single-layer.json +37 -0
  82. data/spec/fixtures/files/esri-feature-layer.json +33 -0
  83. data/spec/fixtures/files/esri-image-map-layer.json +21 -0
  84. data/spec/fixtures/files/esri-tiled_map_layer.json +22 -0
  85. data/spec/fixtures/files/esri-wms-layer.json +33 -0
  86. data/spec/fixtures/files/harvard_raster.json +44 -0
  87. data/spec/fixtures/files/no_spatial.json +21 -0
  88. data/spec/fixtures/files/public_direct_download.json +28 -0
  89. data/spec/fixtures/files/public_iiif_princeton.json +36 -0
  90. data/spec/fixtures/files/public_polygon_mit.json +39 -0
  91. data/spec/fixtures/files/restricted-line.json +36 -0
  92. data/spec/fixtures/files/umich_iiif_jpg.json +28 -0
  93. data/spec/fixtures/files/umn_iiif_jpg.json +30 -0
  94. data/spec/fixtures/files/umn_metro_result1.json +37 -0
  95. data/spec/fixtures/files/umn_metro_result2.json +35 -0
  96. data/spec/fixtures/files/umn_state_result1.json +31 -0
  97. data/spec/fixtures/files/umn_state_result2.json +36 -0
  98. data/spec/models/solr_document_sidecar_spec.rb +13 -0
  99. data/spec/models/solr_document_spec.rb +14 -0
  100. data/spec/rails_helper.rb +59 -0
  101. data/spec/services/image_service_spec.rb +31 -0
  102. data/spec/spec_helper.rb +5 -0
  103. data/spec/test_app_templates/lib/generators/test_app_generator.rb +33 -0
  104. data/template.rb +13 -0
  105. metadata +395 -0
@@ -0,0 +1,23 @@
1
+ {
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
+ }
@@ -0,0 +1,24 @@
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.",
4
+ "dc_format_s": "Shapefile",
5
+ "dc_identifier_s": "urn:columbia.edu:Columbia.landinfo_global_aet",
6
+ "dc_language_s": "English",
7
+ "dc_rights_s": "Public",
8
+ "dc_title_s": "Actual Evapotrans",
9
+ "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\"}",
11
+ "dct_spatial_sm": [
12
+ "World"
13
+ ],
14
+ "dct_temporal_sm": [
15
+ "1996"
16
+ ],
17
+ "dct_provenance_s": "Columbia",
18
+ "layer_slug_s": "columbia-columbia-landinfo-global-aet",
19
+ "layer_id_s": "Columbia:Columbia.landinfo_global_aet",
20
+ "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
24
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_description_s": "This polygon dataset is a 100 foot grid overlay for Cambridge, MA.",
4
+ "dc_format_s": "Shapefile",
5
+ "dc_identifier_s": "urn:geodata.tufts.edu:Tufts.CambridgeGrid100_04",
6
+ "dc_language_s": "English",
7
+ "dc_publisher_s": "Cambridge (Mass.) Geographic Information Systems",
8
+ "dc_rights_s": "Public",
9
+ "dc_title_s": "100 Foot Grid Cambridge MA 2004",
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\"}",
12
+ "dct_temporal_sm": [
13
+ "2004"
14
+ ],
15
+ "dct_issued_s": "2005",
16
+ "dct_provenance_s": "Tufts",
17
+ "layer_slug_s": "tufts-cambridgegrid100-04",
18
+ "layer_id_s": "sde:GISPORTAL.GISOWNER01.CAMBRIDGEGRID100_04",
19
+ "layer_geom_type_s": "Polygon",
20
+ "layer_modified_dt": "2014-12-04T21:33:07Z",
21
+ "solr_geom": "ENVELOPE(-71.163984, -71.052581, 42.408316, 42.34757)",
22
+ "solr_year_i": 2004
23
+ }
@@ -0,0 +1,37 @@
1
+ {
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
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "dc_identifier_s": "http://hdl.handle.net/2451/34635",
3
+ "dc_title_s": "2016 NYC Geodatabase, Open Source Version (jan2016)",
4
+ "dc_description_s": "The NYC Geodatabase (nyc_gdb) is a resource designed for basic geographic analysis and thematic mapping within the five boroughs of New York City. It contains geographic features and data compiled from several public sources. Subsets of large features like water, greenspace, and public facilities were created and Census geographies like tracts, ZCTAs, and PUMAs were geoprocessed to create land-based boundaries. Census data from the 2010 Census, American Community Survey (ACS), and ZIP Code Business Patterns are stored in tables that can be easily related to geographic features. Transit and public facility point data were gathered from several city agencies and transformed into spatial data that can be used for reference or analysis for measuring distance, drawing buffers, or counting features within areas. The data is provided in SQLite format.",
5
+ "dc_rights_s": "Public",
6
+ "dct_provenance_s": "Baruch CUNY",
7
+ "dct_references_s": "{\"http://schema.org/url\":\"http://hdl.handle.net/2451/34635\",\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74854/nyu_2451_34635.zip\",\"http://lccn.loc.gov/sh85035852\":\"https://archive.nyu.edu/retrieve/74855/nyu_2451_34635_doc.zip\"}",
8
+ "layer_id_s": "sdr:nyu_2451_34635",
9
+ "layer_slug_s": "nyu_2451_34635",
10
+ "layer_geom_type_s": "Mixed",
11
+ "layer_modified_dt": "2016-5-2T18:21:7Z",
12
+ "dc_format_s": "SQLite Database",
13
+ "dc_language_s": "English",
14
+ "dc_type_s": "Dataset",
15
+ "dc_publisher_s": [
16
+ "Newman Library (Bernard M. Baruch College)"
17
+ ],
18
+ "dc_creator_sm": "GIS Lab, Newman Library, Baruch CUNY",
19
+ "dc_subject_sm": [
20
+ "Boroughs",
21
+ "Boundaries",
22
+ "Counties"
23
+ ],
24
+ "dct_isPartOf_sm": "NYC Geodatabase (version jan2016)",
25
+ "dct_issued_s": "1/15/2016",
26
+ "dct_temporal_sm": [
27
+ "2010",
28
+ "2016"
29
+ ],
30
+ "dct_spatial_sm": [
31
+ "New York, New York, United States",
32
+ "Bronx County, New York, United States",
33
+ "Kings County, New York, United States",
34
+ "New York County, New York, United States",
35
+ "Queens County, New York, United States",
36
+ "Richmond County, New York, United States",
37
+ "Borough of Bronx, New York, United States",
38
+ "Borough of Brooklyn, New York, United States",
39
+ "Borough of Manhattan, New York, United States",
40
+ "Borough of Queens, New York, United States",
41
+ "Borough of Staten Island, New York, United States"
42
+ ],
43
+ "solr_geom": "ENVELOPE(-74.255895, -73.700272, 40.9152819999998, 40.4959289999998)",
44
+ "solr_year_i": 2016,
45
+ "geoblacklight_version": "1.0"
46
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "dc_identifier_s": "http://hdl.handle.net/2451/34636",
3
+ "dc_title_s": "2016 NYC Geodatabase, ArcGIS Version (jan2016)",
4
+ "dc_description_s": "The NYC Geodatabase (nyc_gdb) is a resource designed for basic geographic analysis and thematic mapping within the five boroughs of New York City. It contains geographic features and data compiled from several public sources. Subsets of large features like water, greenspace, and public facilities were created and Census geographies like tracts, ZCTAs, and PUMAs were geoprocessed to create land-based boundaries. Census data from the 2010 Census, American Community Survey (ACS), and ZIP Code Business Patterns are stored in tables that can be easily related to geographic features. Transit and public facility point data were gathered from several city agencies and transformed into spatial data that can be used for reference or analysis for measuring distance, drawing buffers, or counting features within areas. The data is provided in ESRI Geodatabase format.",
5
+ "dc_rights_s": "Public",
6
+ "dct_provenance_s": "Baruch CUNY",
7
+ "dct_references_s": "{\"http://schema.org/url\":\"http://hdl.handle.net/2451/34636\",\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74856/nyu_2451_34636.zip\",\"http://lccn.loc.gov/sh85035852\":\"https://archive.nyu.edu/retrieve/74857/nyu_2451_34636_doc.zip\"}",
8
+ "layer_id_s": "sdr:nyu_2451_34636",
9
+ "layer_slug_s": "nyu_2451_34636",
10
+ "layer_geom_type_s": "Mixed",
11
+ "layer_modified_dt": "2016-5-2T18:21:7Z",
12
+ "dc_format_s": "ESRI Geodatabase",
13
+ "dc_language_s": "English",
14
+ "dc_type_s": "Dataset",
15
+ "dc_publisher_s": [
16
+ "Newman Library (Bernard M. Baruch College)"
17
+ ],
18
+ "dc_creator_sm": "GIS Lab, Newman Library, Baruch CUNY",
19
+ "dc_subject_sm": [
20
+ "Boroughs",
21
+ "Boundaries",
22
+ "Counties"
23
+ ],
24
+ "dct_isPartOf_sm": "NYC Geodatabase (version jan2016)",
25
+ "dct_issued_s": "1/15/2016",
26
+ "dct_temporal_sm": [
27
+ "2010",
28
+ "2016"
29
+ ],
30
+ "dct_spatial_sm": [
31
+ "New York, New York, United States",
32
+ "Bronx County, New York, United States",
33
+ "Kings County, New York, United States",
34
+ "New York County, New York, United States",
35
+ "Queens County, New York, United States",
36
+ "Richmond County, New York, United States",
37
+ "Borough of Bronx, New York, United States",
38
+ "Borough of Brooklyn, New York, United States",
39
+ "Borough of Manhattan, New York, United States",
40
+ "Borough of Queens, New York, United States",
41
+ "Borough of Staten Island, New York, United States"
42
+ ],
43
+ "solr_geom": "ENVELOPE(-74.255895, -73.700272, 40.9152819999998, 40.4959289999998)",
44
+ "solr_year_i": 2016,
45
+ "geoblacklight_version": "1.0"
46
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "dc_identifier_s": "http://hdl.handle.net/2451/34502",
3
+ "dc_title_s": "2015 New York City Subway Complexes and Ridership",
4
+ "dc_description_s": "The subway complexes layer was created to represent ridership data for the NYC subway system (Metropolitan Transportation Authority, or MTA). This layer is a subset of the subway stations layer (nyu_2451_34503) that has been combined with MTA statistics on ridership; it was originally created in August 2012 and has been updated annually. Ridership data is not available for each individual subway station, as many stations are linked via common entrances and passageways where transfers are free, and because ridership data is not collected for the Staten Island Railway stations. This layer was created by choosing an individual station from nyu_2451_34503 to represent the entire complex, and modifying the station name and train fields appropriately. It should be used for mapping ridership data or for analysis that requires this data, and not for specifying actual station locations or measuring distances. There are 421 complexes, and the field station_ct indicates how many stations are part of a complex. Annual, average weekday, and average weekend ridership is provided for 2007 to 2014. The unique ID is complex_id, which was created by alphabetizing the complexes by borough and station name and assigning a sequential number to a borough prefix. This layer does not include the new 34th St - 11 Av station on the 7 line; it will be updated in summer 2016 once ridership data becomes available. This layer was created as part of the NYC Geodatabase (NYC GDB) project, a resource designed for basic geographic analysis and thematic mapping within the five boroughs of New York City.",
5
+ "dc_rights_s": "Public",
6
+ "dct_provenance_s": "Baruch CUNY",
7
+ "dct_references_s": "{\"http://schema.org/url\":\"http://hdl.handle.net/2451/34502\",\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74701/nyu_2451_34502.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\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"http://metadata.geo.nyu.edu/records/edu.nyu/handle/2451/34502/iso19139.xml\",\"http://lccn.loc.gov/sh85035852\":\"https://archive.nyu.edu/retrieve/74755/nyu_2451_34502_doc.zip\"}",
8
+ "layer_id_s": "sdr:nyu_2451_34502",
9
+ "layer_slug_s": "nyu_2451_34502",
10
+ "layer_geom_type_s": "Point",
11
+ "layer_modified_dt": "2016-5-2T18:21:5Z",
12
+ "dc_format_s": "Shapefile",
13
+ "dc_language_s": "English",
14
+ "dc_type_s": "Dataset",
15
+ "dc_publisher_s": [
16
+ "Newman Library (Bernard M. Baruch College)"
17
+ ],
18
+ "dc_creator_sm": "GIS Lab, Newman Library, Baruch CUNY",
19
+ "dc_subject_sm": [
20
+ "Subway stations",
21
+ "Transportation",
22
+ "Urban transportation",
23
+ "Local transit",
24
+ "Commuting"
25
+ ],
26
+ "dct_isPartOf_sm": "NYC Geodatabase (version jan2016)",
27
+ "dct_issued_s": "1/15/2016",
28
+ "dct_temporal_sm": [
29
+ "2015"
30
+ ],
31
+ "dct_spatial_sm": [
32
+ "New York, New York, United States",
33
+ "Bronx County, New York, United States",
34
+ "Kings County, New York, United States",
35
+ "New York County, New York, United States",
36
+ "Queens County, New York, United States",
37
+ "Borough of Bronx, New York, United States",
38
+ "Borough of Brooklyn, New York, United States",
39
+ "Borough of Manhattan, New York, United States",
40
+ "Borough of Queens, New York, United States"
41
+ ],
42
+ "solr_geom": "ENVELOPE(-74.030876, -73.755405, 40.9031249999998, 40.5761269999998)",
43
+ "solr_year_i": 2015,
44
+ "dc_source_sm": [
45
+ "nyu_2451_34635",
46
+ "nyu_2451_34636"
47
+ ],
48
+ "geoblacklight_version": "1.0"
49
+ }
@@ -0,0 +1,36 @@
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\"}"
36
+ }
@@ -0,0 +1,37 @@
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\"}",
7
+ "dc_rights_s": "Public",
8
+ "dct_provenance_s": "Minnesota",
9
+ "dc_subject_sm": [
10
+ "Society"
11
+ ],
12
+ "dct_temporal_sm": [
13
+ "2015"
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
+ "dc_creator_sm": [
19
+ "Hennepin County"
20
+ ],
21
+ "dc_type_s": "Dataset",
22
+ "dc_identifier_s": "urn-0f7ae38b-4bf2-4e03-a32b-e87f245ccb03",
23
+ "dct_isPartOf_sm": [
24
+ "Hennepin County Open Data"
25
+ ],
26
+ "solr_year_i": 2015,
27
+ "dct_spatial_sm": [
28
+ "Hennepin County, Minnesota",
29
+ "Minnesota"
30
+ ],
31
+ "dc_publisher_sm": [
32
+ "Hennepin County"
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
+ }
@@ -0,0 +1,33 @@
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\"}",
7
+ "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
+ "dc_format_s": "Shapefile",
17
+ "dc_creator_sm": [
18
+ "MapIT Minneapolis"
19
+ ],
20
+ "dc_type_s": "Dataset",
21
+ "dc_identifier_s": "e2f33b52-4039-4bbb-9095-b5cdc0175943",
22
+ "solr_year_i": 2012,
23
+ "dct_spatial_sm": [
24
+ "City of Minneapolis, Minnesota",
25
+ "Minneapolis"
26
+ ],
27
+ "dc_publisher_sm": [
28
+ "MapIT Minneapolis"
29
+ ],
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
+ }
@@ -0,0 +1,21 @@
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",
7
+ "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\"}",
11
+ "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
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_description_s": "This map shows the Soil Survey Geographic (SSURGO) by the United States Department of Agriculture's Natural Resources Conservation Service. It also shows data that was developed by the National Cooperative Soil Survey and supersedes the State Soil Geographic (STATSGO) dataset published in 1994. SSURGO digitizing duplicates the original soil survey maps. This level of mapping is designed for use by landowners, townships, and county natural resource planning and management. The user should be knowledgeable of soils data and their characteristics. The smallest scale map shows the Global Soil Regions map by the United States Department of Agriculture’s Natural Resources Conservation Service.",
4
+ "dc_format_s": "GeoTIFF",
5
+ "dc_identifier_s": "test-soil-survey-map",
6
+ "dc_language_s": "English",
7
+ "dc_publisher_s": "United States Department of Agriculture, Natural Resources Conservation Service",
8
+ "dc_rights_s": "Public",
9
+ "dc_title_s": "Soil Survey Geographic (SSURGO)",
10
+ "dc_type_s": "Dataset",
11
+ "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#TiledMapLayer\": \"http://services.arcgisonline.com/arcgis/rest/services/Specialty/Soil_Survey_Map/MapServer\"}",
12
+ "dct_temporal_sm": [
13
+ "2010"
14
+ ],
15
+ "dct_provenance_s": "NYU",
16
+ "layer_slug_s": "nyu-test-soil-survey-map",
17
+ "layer_id_s": "test-soil-survey_map",
18
+ "layer_geom_type_s": "Raster",
19
+ "layer_modified_dt": "2015-06-16T00:59:49Z",
20
+ "solr_geom": "ENVELOPE(-129.4956, -64.4393, 48.6336, 21.8079)",
21
+ "solr_year_i": 2010
22
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_creator_sm": [
4
+ "(creation): U.S. Geological Survey",
5
+ "(selection/conversion): Bernardin, Lochmueller and Associates"
6
+ ],
7
+ "dc_description_s": "USGS National Atlas metadata states NThis data set portrays the National Agricultural Statistics Service, U.S. Department of Agriculture's 1997 Census data for the United States, presented by county. There are 25 categories of data which include information about farms, crops, livestock, values of products, and farm operator characteristics.N",
8
+ "dc_format_s": "Shapefile",
9
+ "dc_identifier_s": "urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa",
10
+ "dc_publisher_sm": [
11
+ "Bernardin, Lochmueller and Associates"
12
+ ],
13
+ "dc_rights_s": "Public",
14
+ "dc_subject_sm": [
15
+ "farming",
16
+ "agriculture"
17
+ ],
18
+ "dc_title_s": "Agriculture Census: Indiana, 1997",
19
+ "dc_type_s": "Dataset",
20
+ "dct_issued_s": "2003-01-28",
21
+ "dct_provenance_s": "Purdue",
22
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"http://maps.indiana.edu/download/Environment/Agriculture_Census.zip\",\"http://schema.org/url\":\"http://indianamap.org/\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.purdue/f0/82/ac/b1b01e4a089126fd62a23fd9aa/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://maps.indiana.edu/arcgis/services/Environment/Agriculture_Census/MapServer/WMSServer\",\"urn:x-esri:serviceType:ArcGIS#DynamicMapLayer\":\"https://maps.indiana.edu/arcgis/rest/services/Environment/Agriculture_Census/MapServer\"}",
23
+ "dct_spatial_sm": [
24
+ "Indiana"
25
+ ],
26
+ "dct_temporal_sm": "1972-1997",
27
+ "layer_geom_type_s": "Mixed",
28
+ "layer_id_s": "0",
29
+ "layer_modified_dt": "2016-06-20T16:17:36Z",
30
+ "layer_slug_s": "purdue-urn-f082acb1-b01e-4a08-9126-fd62a23fd9aa",
31
+ "solr_geom": "ENVELOPE(-88.1607, -84.6882, 41.7753, 37.7554)",
32
+ "solr_year_i": 1972
33
+ }