geoblacklight 3.4.0 → 4.0.0.pre.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +5 -0
  3. data/app/models/concerns/geoblacklight/solr_document/citation.rb +2 -2
  4. data/app/models/concerns/geoblacklight/solr_document.rb +4 -4
  5. data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +3 -3
  6. data/app/views/catalog/_header_icons.html.erb +1 -1
  7. data/app/views/catalog/_home_text.html.erb +2 -2
  8. data/app/views/relation/_relations.html.erb +15 -0
  9. data/app/views/relation/index.html.erb +4 -16
  10. data/app/views/relation/index.json.jbuilder +6 -2
  11. data/config/initializers/rails_config.rb +0 -8
  12. data/config/locales/geoblacklight.en.yml +8 -0
  13. data/lib/generators/geoblacklight/templates/catalog_controller.rb +78 -36
  14. data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +195 -0
  15. data/lib/generators/geoblacklight/templates/settings.yml +81 -22
  16. data/lib/geoblacklight/download/geojson_download.rb +1 -1
  17. data/lib/geoblacklight/download/geotiff_download.rb +1 -1
  18. data/lib/geoblacklight/download/hgl_download.rb +1 -1
  19. data/lib/geoblacklight/download/kmz_download.rb +1 -1
  20. data/lib/geoblacklight/download/shapefile_download.rb +1 -1
  21. data/lib/geoblacklight/references.rb +1 -1
  22. data/lib/geoblacklight/relation/ancestors.rb +4 -3
  23. data/lib/geoblacklight/relation/descendants.rb +4 -3
  24. data/lib/geoblacklight/relation/relation_response.rb +21 -6
  25. data/lib/geoblacklight/version.rb +1 -1
  26. data/schema/{geoblacklight-schema.json → geoblacklight-schema-1.0.json} +1 -1
  27. data/schema/geoblacklight-schema-aardvark.json +211 -0
  28. data/solr/conf/schema.xml +38 -30
  29. data/solr/conf/solrconfig.xml +15 -15
  30. data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +1 -1
  31. data/spec/config/initializers/rails_config_spec.rb +5 -8
  32. data/spec/controllers/catalog_controller_spec.rb +6 -6
  33. data/spec/features/download_layer_spec.rb +1 -1
  34. data/spec/features/esri_viewer_spec.rb +0 -1
  35. data/spec/features/home_page_spec.rb +4 -4
  36. data/spec/features/missing_metadata_spec.rb +2 -2
  37. data/spec/features/relations_spec.rb +2 -2
  38. data/spec/features/search_results_map_spec.rb +2 -1
  39. data/spec/features/search_results_overlap_ratio_spec.rb +2 -2
  40. data/spec/features/split_view.html.erb_spec.rb +15 -11
  41. data/spec/fixtures/solr_documents/README.md +48 -36
  42. data/spec/fixtures/solr_documents/actual-papermap1.json +41 -18
  43. data/spec/fixtures/solr_documents/actual-point1.json +47 -27
  44. data/spec/fixtures/solr_documents/actual-polygon1.json +43 -18
  45. data/spec/fixtures/solr_documents/actual-raster1.json +52 -23
  46. data/spec/fixtures/solr_documents/all-relationships.json +48 -0
  47. data/spec/fixtures/solr_documents/baruch_ancestor1.json +62 -37
  48. data/spec/fixtures/solr_documents/baruch_ancestor2.json +62 -37
  49. data/spec/fixtures/solr_documents/baruch_documentation_download.json +60 -34
  50. data/spec/fixtures/solr_documents/bbox-spans-180.json +34 -16
  51. data/spec/fixtures/solr_documents/cornell_html_metadata.json +46 -26
  52. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +43 -25
  53. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +45 -28
  54. data/spec/fixtures/solr_documents/esri-feature-layer.json +44 -34
  55. data/spec/fixtures/solr_documents/esri-image-map-layer.json +45 -31
  56. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +42 -17
  57. data/spec/fixtures/solr_documents/esri-wms-layer.json +46 -21
  58. data/spec/fixtures/solr_documents/harvard_raster.json +55 -36
  59. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +35 -22
  60. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +48 -27
  61. data/spec/fixtures/solr_documents/index-map-polygon.json +48 -27
  62. data/spec/fixtures/solr_documents/index-map-stanford.json +54 -25
  63. data/spec/fixtures/solr_documents/index_map_point.json +54 -26
  64. data/spec/fixtures/solr_documents/metadata_no_geom.json +27 -0
  65. data/spec/fixtures/solr_documents/metadata_no_provider.json +39 -0
  66. data/spec/fixtures/solr_documents/multiple-downloads.json +33 -20
  67. data/spec/fixtures/solr_documents/no_locn_geometry.json +25 -0
  68. data/spec/fixtures/solr_documents/no_spatial.json +37 -19
  69. data/spec/fixtures/solr_documents/oembed.json +34 -17
  70. data/spec/fixtures/solr_documents/princeton-child1.json +45 -28
  71. data/spec/fixtures/solr_documents/princeton-child2.json +45 -28
  72. data/spec/fixtures/solr_documents/princeton-child3.json +45 -28
  73. data/spec/fixtures/solr_documents/princeton-child4.json +45 -28
  74. data/spec/fixtures/solr_documents/princeton-parent.json +46 -23
  75. data/spec/fixtures/solr_documents/public_direct_download.json +48 -21
  76. data/spec/fixtures/solr_documents/public_iiif_princeton.json +49 -24
  77. data/spec/fixtures/solr_documents/public_polygon_mit.json +31 -15
  78. data/spec/fixtures/solr_documents/restricted-line.json +52 -21
  79. data/spec/fixtures/solr_documents/the-related-record.json +27 -0
  80. data/spec/fixtures/solr_documents/tms.json +33 -17
  81. data/spec/fixtures/solr_documents/umn_metro_result1.json +44 -28
  82. data/spec/fixtures/solr_documents/umn_state_result1.json +44 -26
  83. data/spec/fixtures/solr_documents/umn_state_result2.json +45 -24
  84. data/spec/fixtures/solr_documents/uva_slug_colon.json +43 -20
  85. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
  86. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
  87. data/spec/lib/geoblacklight/download/hgl_download_spec.rb +1 -1
  88. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +1 -1
  89. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
  90. data/spec/lib/geoblacklight/download_spec.rb +1 -1
  91. data/spec/lib/geoblacklight/references_spec.rb +2 -2
  92. data/spec/lib/geoblacklight/relation/ancestors_spec.rb +3 -3
  93. data/spec/lib/geoblacklight/relation/descendants_spec.rb +3 -3
  94. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +32 -17
  95. data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -4
  96. metadata +15 -19
  97. data/app/views/relation/_ancestors.html.erb +0 -8
  98. data/app/views/relation/_descendants.html.erb +0 -15
  99. data/config/initializers/new_gbl_settings_defaults_3_3.yml +0 -10
  100. data/schema/format-values.md +0 -50
  101. data/schema/geoblacklight-schema-deprecated.md +0 -39
  102. data/schema/geoblacklight-schema.md +0 -323
  103. data/schema/geometry-type-values.md +0 -11
  104. data/schema/references.md +0 -23
  105. data/schema/schema-commentary.md +0 -198
  106. data/schema/subjects.md +0 -41
  107. data/schema/type-values.md +0 -10
  108. data/spec/fixtures/solr_documents/metadata_no_dct_provenance_s.json +0 -30
  109. data/spec/fixtures/solr_documents/metadata_no_layer_geom_type_s.json +0 -17
  110. data/spec/fixtures/solr_documents/metadata_no_solr_geom.json +0 -23
@@ -1,23 +1,46 @@
1
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\"}",
2
+ "dct_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.",
3
+ "dct_alternative_sm": [
4
+ "actual-papermap1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Nondigitized paper map with a link to a library catalog. ",
8
+ "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.\""
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "British Geological Survey"
15
+ ],
16
+ "schema_provider_s": "MIT",
17
+ "gbl_resourceClass_sm": [
18
+ "Maps"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "Paper map",
22
+ "GBL Fixture records"
23
+ ],
12
24
  "dct_temporal_sm": [
13
25
  "1996"
14
26
  ],
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
27
+ "dct_issued_s": "1905-06-22",
28
+ "gbl_indexYear_im": [
29
+ "1996"
30
+ ],
31
+ "gbl_dateRange_drsim": [
32
+ "[1996 TO 1996]"
33
+ ],
34
+ "locn_geometry": "ENVELOPE(-13,4,62,49)",
35
+ "dcat_centroid_ss": "55.5,-4.5",
36
+ "dct_accessRights_s": "Public",
37
+ "dct_format_s": "Paper",
38
+ "gbl_wxsIdentifier_s": "MIT:001145244",
39
+ "dct_references_s": "{\"http://schema.org/url\":\"http://library.mit.edu/item/001145244\"}",
40
+ "id": "mit-001145244",
41
+ "dct_identifier_sm": [
42
+ "urn:arrowsmith.mit.edu:MIT.001145244"
43
+ ],
44
+ "gbl_mdModified_dt": "2021-06-11T18:30:23Z",
45
+ "gbl_mdVersion_s": "Aardvark"
23
46
  }
@@ -1,37 +1,57 @@
1
1
  {
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.",
5
- "dc_format_s": "Shapefile",
6
- "dc_identifier_s": "http://hdl.handle.net/2451/34564",
7
- "dc_language_s": "English",
8
- "dc_publisher_s": "New York (City). Department of City Planning",
9
- "dc_rights_s": "Public",
10
- "dc_subject_sm": [
2
+ "dct_title_s": "2014 New York City Places",
3
+ "dct_alternative_sm": [
4
+ "actual-point1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Point dataset with WMS and WFS. ",
8
+ "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."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "New York (City). Department of City Planning"
15
+ ],
16
+ "schema_provider_s": "NYU",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
19
+ ],
20
+ "gbl_resourceType_sm": [
21
+ "Point data"
22
+ ],
23
+ "dct_subject_sm": [
11
24
  "Airports",
12
25
  "Parks",
13
26
  "Public spaces"
14
27
  ],
15
- "dc_title_s": "2014 New York City Places",
16
- "dc_type_s": "Dataset",
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\"}",
23
- "dct_spatial_sm": [
24
- "New York, New York, United States"
28
+ "dcat_keyword_sm": [
29
+ "GBL Fixture records"
25
30
  ],
26
31
  "dct_temporal_sm": [
27
32
  "2014"
28
33
  ],
29
- "geoblacklight_version": "1.0",
30
- "layer_geom_type_s": "Point",
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
34
+ "dct_issued_s": "1905-07-06",
35
+ "gbl_indexYear_im": [
36
+ "1905"
37
+ ],
38
+ "gbl_dateRange_drsim": [
39
+ "[1905 TO 2014]"
40
+ ],
41
+ "dct_spatial_sm": [
42
+ "New York, New York"
43
+ ],
44
+ "locn_geometry": "ENVELOPE(-74.24856464,-73.73228698,40.89620987,40.49956589)",
45
+ "dcat_centroid_ss": "40.697887879999996,-73.99042581",
46
+ "dct_accessRights_s": "Public",
47
+ "dct_format_s": "Shapefile",
48
+ "gbl_wxsIdentifier_s": "sdr:nyu_2451_34564",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74563/nyu_2451_34564.zip\",\"http://schema.org/url\":\"http://hdl.handle.net/2451/34564\",\"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\"}",
50
+ "id": "nyu-2451-34564",
51
+ "dct_identifier_sm": [
52
+ "http://hdl.handle.net/2451/34564",
53
+ "35497"
54
+ ],
55
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
56
+ "gbl_mdVersion_s": "Aardvark"
37
57
  }
@@ -1,23 +1,48 @@
1
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\"}",
2
+ "dct_title_s": "100 Foot Grid Cambridge MA 2004",
3
+ "dct_alternative_sm": [
4
+ "actual-polygon1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Polygon dataset (no direct download) with WFS, WMS, and FGDC metadata as XML. ",
8
+ "This polygon dataset is a 100 foot grid overlay for Cambridge, MA."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_publisher_sm": [
14
+ "Cambridge (Mass.) Geographic Information Systems"
15
+ ],
16
+ "schema_provider_s": "Tufts",
17
+ "gbl_resourceClass_sm": [
18
+ "Datasets"
19
+ ],
20
+ "gbl_resourceType_sm": [
21
+ "Polygon data"
22
+ ],
23
+ "dcat_keyword_sm": [
24
+ "GBL Fixture records"
25
+ ],
12
26
  "dct_temporal_sm": [
13
27
  "2004"
14
28
  ],
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
29
+ "dct_issued_s": "1905-06-27",
30
+ "gbl_indexYear_im": [
31
+ "2004"
32
+ ],
33
+ "gbl_dateRange_drsim": [
34
+ "[2004 TO 2004]"
35
+ ],
36
+ "locn_geometry": "ENVELOPE(-71.163984,-71.052581,42.408316,42.34757)",
37
+ "dcat_centroid_ss": "42.377943,-71.1082825",
38
+ "dct_accessRights_s": "Public",
39
+ "dct_format_s": "Shapefile",
40
+ "gbl_wxsIdentifier_s": "sde:GISPORTAL.GISOWNER01.CAMBRIDGEGRID100_04",
41
+ "dct_references_s": "{\"http://www.opengis.net/cat/csw/csdgm\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.tufts/master/165/242/110/132/fgdc.xml\",\"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\"}",
42
+ "id": "tufts-cambridgegrid100-04",
43
+ "dct_identifier_sm": [
44
+ "urn:geodata.tufts.edu:Tufts.CambridgeGrid100_04"
45
+ ],
46
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
47
+ "gbl_mdVersion_s": "Aardvark"
23
48
  }
@@ -1,38 +1,67 @@
1
1
  {
2
- "dc_identifier_s": "http://purl.stanford.edu/dp018hs9766",
3
- "dc_title_s": "1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005",
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",
5
- "dc_rights_s": "Restricted",
6
- "dct_provenance_s": "Stanford",
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\"}",
8
- "layer_id_s": "druid:dp018hs9766",
9
- "layer_slug_s": "stanford-dp018hs9766",
10
- "layer_geom_type_s": "Raster",
11
- "layer_modified_dt": "2015-04-16T23:09:17Z",
12
- "dc_format_s": "GeoTIFF",
13
- "dc_language_s": "English",
14
- "dc_type_s": "Dataset",
15
- "dc_publisher_s": "Seafloor Mapping Lab",
16
- "dc_creator_sm": [
2
+ "dct_title_s": "1-Meter Shaded Relief Multibeam Bathymetry Image (Color): Elkhorn Slough, California, 2005",
3
+ "dct_alternative_sm": [
4
+ "actual-raster1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Restricted raster layer with WMS and metadata in MODS and ISO 19139. ",
8
+ "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"
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Seafloor Mapping Lab"
15
+ ],
16
+ "dct_publisher_sm": [
17
17
  "Seafloor Mapping Lab"
18
18
  ],
19
- "dc_subject_sm": [
19
+ "schema_provider_s": "Stanford",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Raster data"
25
+ ],
26
+ "dct_subject_sm": [
20
27
  "Continental margins",
21
- "Multibeam mapping",
22
- "Elevation",
28
+ "Multibeam mapping"
29
+ ],
30
+ "dcat_theme_sm": [
23
31
  "Imagery and Base Maps",
32
+ "Elevation",
24
33
  "Inland Waters"
25
34
  ],
26
- "dct_issued_s": "2005",
35
+ "dcat_keyword_sm": [
36
+ "GBL Fixture records"
37
+ ],
27
38
  "dct_temporal_sm": [
28
39
  "2005"
29
40
  ],
41
+ "dct_issued_s": "1905-06-27",
42
+ "gbl_indexYear_im": [
43
+ "2005"
44
+ ],
45
+ "gbl_dateRange_drsim": [
46
+ "[2005 TO 2005]"
47
+ ],
30
48
  "dct_spatial_sm": [
31
49
  "Elkhorn Slough (Calif.)",
32
50
  "Monterey Bay (Calif.)"
33
51
  ],
34
- "solr_geom": "ENVELOPE(-121.7948738, -121.7389503, 36.8606925, 36.8085911)",
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"
52
+ "locn_geometry": "ENVELOPE(-121.7948738,-121.7389503,36.8606925,36.8085911)",
53
+ "dcat_centroid_ss": "36.8346418,-121.76691205",
54
+ "dct_rights_sm": [
55
+ "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"
56
+ ],
57
+ "dct_accessRights_s": "Restricted",
58
+ "dct_format_s": "GeoTIFF",
59
+ "gbl_wxsIdentifier_s": "druid:dp018hs9766",
60
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://stacks.stanford.edu/file/druid:dp018hs9766/data.zip\",\"http://schema.org/url\":\"http://purl.stanford.edu/dp018hs9766\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/dp/018/hs/9766/iso19139.xml\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/dp018hs9766.mods\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
61
+ "id": "stanford-dp018hs9766",
62
+ "dct_identifier_sm": [
63
+ "http://purl.stanford.edu/dp018hs9766"
64
+ ],
65
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
66
+ "gbl_mdVersion_s": "Aardvark"
38
67
  }
@@ -0,0 +1,48 @@
1
+ {
2
+ "id": "all-relationships",
3
+ "gbl_mdVersion_s": "Aardvark",
4
+ "dct_title_s": "All Relationships",
5
+ "dct_description_sm": [
6
+ "This example record is to show all of the possible item relations."
7
+ ],
8
+ "dct_creator_sm": [
9
+ "GeoBlacklight Community"
10
+ ],
11
+ "gbl_resourceClass_sm": [
12
+ "Other"
13
+ ],
14
+ "dct_temporal_sm": [
15
+ "1900"
16
+ ],
17
+ "dct_spatial_sm": [
18
+ "United States"
19
+ ],
20
+ "pcdm_memberOf_sm": [
21
+ "the-related-record"
22
+ ],
23
+ "dct_isPartOf_sm": [
24
+ "the-related-record"
25
+ ],
26
+ "dct_source_sm": [
27
+ "the-related-record"
28
+ ],
29
+ "dct_isReplacedBy_sm": [
30
+ "the-related-record"
31
+ ],
32
+ "dct_isVersionOf_sm": [
33
+ "the-related-record"
34
+ ],
35
+ "dct_relation_sm": [
36
+ "the-related-record"
37
+ ],
38
+ "dct_replaces_sm": [
39
+ "the-related-record"
40
+ ],
41
+ "dct_format_s": "Shapefile",
42
+ "gbl_georeferenced_b": false,
43
+ "dct_references_s": "{\"http://schema.org/url\":\"https://example.com\"}",
44
+ "schema_provider_s": "GeoBlacklight Community",
45
+ "dct_accessRights_s": "Public",
46
+ "gbl_suppressed_b": false,
47
+ "gbl_mdModified_dt": "2021-08-25T15:31:34Z"
48
+ }
@@ -1,46 +1,71 @@
1
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": [
2
+ "dct_title_s": "2016 NYC Geodatabase, Open Source Version (jan2016)",
3
+ "dct_alternative_sm": [
4
+ "baruch_ancestor1"
5
+ ],
6
+ "dct_description_sm": [
7
+ "SQLite Database with documentation download. Referenced as parent. ",
8
+ "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."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "GIS Lab, Newman Library, Baruch CUNY"
15
+ ],
16
+ "dct_publisher_sm": [
16
17
  "Newman Library (Bernard M. Baruch College)"
17
18
  ],
18
- "dc_creator_sm": "GIS Lab, Newman Library, Baruch CUNY",
19
- "dc_subject_sm": [
19
+ "schema_provider_s": "Baruch CUNY",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Mixed data"
25
+ ],
26
+ "dct_subject_sm": [
20
27
  "Boroughs",
21
- "Boundaries",
22
28
  "Counties"
23
29
  ],
24
- "dct_isPartOf_sm": "NYC Geodatabase (version jan2016)",
25
- "dct_issued_s": "1/15/2016",
30
+ "dcat_theme_sm": [
31
+ "Boundaries"
32
+ ],
33
+ "dcat_keyword_sm": [
34
+ "GBL Fixture records"
35
+ ],
26
36
  "dct_temporal_sm": [
27
- "2010",
28
- "2016"
37
+ "2010, 2016"
38
+ ],
39
+ "dct_issued_s": "2016-01-15",
40
+ "gbl_indexYear_im": [
41
+ "2010"
42
+ ],
43
+ "gbl_dateRange_drsim": [
44
+ "[2010 TO 2016]"
29
45
  ],
30
46
  "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
- }
47
+ "New York, New York",
48
+ "Bronx County, New York",
49
+ "Kings County, New York",
50
+ "New York County, New York",
51
+ "Queens County, New York",
52
+ "Richmond County, New York",
53
+ "Borough of Bronx, New York",
54
+ "Borough of Brooklyn, New York",
55
+ "Borough of Manhattan, New York",
56
+ "Borough of Queens, New York",
57
+ "Borough of Staten Island, New York"
58
+ ],
59
+ "locn_geometry": "ENVELOPE(-74.255895,-73.700272,40.915282,40.495929)",
60
+ "dcat_centroid_ss": "40.7056055,-73.9780835",
61
+ "dct_accessRights_s": "Public",
62
+ "dct_format_s": "SQLite Database",
63
+ "gbl_wxsIdentifier_s": "sdr:nyu_2451_34635",
64
+ "dct_references_s": "{\"http://lccn.loc.gov/sh85035852\":\"https://archive.nyu.edu/retrieve/74855/nyu_2451_34635_doc.zip\",\"http://schema.org/downloadUrl\":\"https://archive.nyu.edu/retrieve/74854/nyu_2451_34635.zip\",\"http://schema.org/url\":\"http://hdl.handle.net/2451/34635\"}",
65
+ "id": "nyu_2451_34635",
66
+ "dct_identifier_sm": [
67
+ "http://hdl.handle.net/2451/34635"
68
+ ],
69
+ "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
70
+ "gbl_mdVersion_s": "Aardvark"
71
+ }