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,25 +1,48 @@
1
1
  {
2
- "call_number_s": "HMC04 (Princeton)",
3
- "dc_creator_sm": [
4
- "Sanborn Map Company"
5
- ],
6
- "dc_description_s": "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left.",
7
- "dc_identifier_s": "ark:/88435/1r66j405w",
8
- "dc_language_s": "eng",
9
- "dc_publisher_s": "New York : Sanborn Map & Publishing Co., Limited, 1885.",
10
- "dc_rights_s": "Public",
11
- "dc_subject_sm": [
12
- "Real property-New Jersey-Princeton-Maps",
13
- "Princeton (N.J.)-Maps"
14
- ],
15
- "dc_title_s": "Princeton, Mercer County, New Jersey",
16
- "dct_provenance_s": "Princeton",
17
- "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://schema.org/thumbnailUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/0cb6b6c7-bce2-46a8-8c79-2864c7ec5459\",\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/5a%2F20%2F58%2F5a20585db50d44959fe5ae44821fd174%2Fintermediate_file.jp2/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/9a193476-5f2e-4f82-95a5-6db472e39b7b/manifest\"}",
18
- "geoblacklight_version": "1.0",
19
- "layer_geom_type_s": "Image",
20
- "layer_id_s": "ark:/88435/1r66j405w",
21
- "layer_modified_dt": "2018-06-07T05:12:50Z",
22
- "layer_slug_s": "princeton-1r66j405w",
23
- "solr_geom": "ENVELOPE(-74.68, -74.63, 40.37, 40.33)",
24
- "uuid": "princeton-1r66j405w"
2
+ "dct_title_s": "Princeton, Mercer County, New Jersey",
3
+ "dct_alternative_sm": [
4
+ "princeton-parent"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Parent record for testing the suppressed_b property. ",
8
+ "Title taken from sheet 1 of 1927 map. \"Feb. 1885.\" Includes location map and key. Oriented with the north to the upper left."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
14
+ "Sanborn Map Company"
15
+ ],
16
+ "dct_publisher_sm": [
17
+ "New York : Sanborn Map & Publishing Co., Limited, 1885."
18
+ ],
19
+ "schema_provider_s": "Princeton",
20
+ "gbl_resourceClass_sm": [
21
+ "Maps"
22
+ ],
23
+ "dct_subject_sm": [
24
+ "Real property-New Jersey-Princeton-Maps",
25
+ "Princeton (N.J.)-Maps"
26
+ ],
27
+ "dcat_keyword_sm": [
28
+ "GBL Fixture records"
29
+ ],
30
+ "gbl_indexYear_im": [
31
+ "1885"
32
+ ],
33
+ "gbl_dateRange_drsim": [
34
+ "[1885 TO 1885]"
35
+ ],
36
+ "locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
37
+ "dcat_centroid_ss": "40.350,-74.655",
38
+ "dct_accessRights_s": "Public",
39
+ "gbl_wxsIdentifier_s": "ark:/88435/1r66j405w",
40
+ "dct_references_s": "{\"http://iiif.io/api/image\":\"https://libimages1.princeton.edu/loris/figgy_prod/5a%2F20%2F58%2F5a20585db50d44959fe5ae44821fd174%2Fintermediate_file.jp2/info.json\",\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/4266648\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy.princeton.edu/concern/scanned_maps/9a193476-5f2e-4f82-95a5-6db472e39b7b/manifest\"}",
41
+ "id": "princeton-1r66j405w",
42
+ "dct_identifier_sm": [
43
+ "ark:/88435/1r66j405w",
44
+ "HMC04 (Princeton)"
45
+ ],
46
+ "gbl_mdModified_dt": "2021-06-11T17:55:01Z",
47
+ "gbl_mdVersion_s": "Aardvark"
25
48
  }
@@ -1,34 +1,61 @@
1
1
  {
2
- "dc_identifier_s": "http://purl.stanford.edu/cz128vq0535",
3
- "dc_title_s": "2005 Rural Poverty GIS Database: Uganda",
4
- "dc_description_s": "This polygon shapefile contains 2005 poverty data for 855 rural subcounties in Uganda. These data are intended for researchers, students, policy makers and the general public for reference and mapping purposes, and may be used for basic applications such as viewing, querying, and map output production.",
5
- "dc_rights_s": "Public",
6
- "dct_provenance_s": "Stanford",
7
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/cz128vq0535\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:cz128vq0535/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cz128vq0535.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cz/128/vq/0535/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geowebservices.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices.stanford.edu/geoserver/wms\"}",
8
- "layer_id_s": "druid:cz128vq0535",
9
- "layer_slug_s": "stanford-cz128vq0535",
10
- "layer_geom_type_s": "Polygon",
11
- "layer_modified_dt": "2015-07-16T18:28:51Z",
12
- "dc_format_s": "Shapefile",
13
- "dc_language_s": "English",
14
- "dc_type_s": "Dataset",
15
- "dc_publisher_s": "Uganda Bureau of Statistics",
16
- "dc_creator_sm": [
2
+ "dct_title_s": "2005 Rural Poverty GIS Database: Uganda",
3
+ "dct_alternative_sm": [
4
+ "public_direct_download"
5
+ ],
6
+ "dct_description_sm": [
7
+ "includes a tentative dcat_distribution_sm property. ",
8
+ "This polygon shapefile contains 2005 poverty data for 855 rural subcounties in Uganda. These data are intended for researchers, students, policy makers and the general public for reference and mapping purposes, and may be used for basic applications such as viewing, querying, and map output production."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
17
14
  "Uganda Bureau of Statistics"
18
15
  ],
19
- "dc_subject_sm": [
16
+ "dct_publisher_sm": [
17
+ "Uganda Bureau of Statistics"
18
+ ],
19
+ "schema_provider_s": "Stanford",
20
+ "gbl_resourceClass_sm": [
21
+ "Datasets"
22
+ ],
23
+ "gbl_resourceType_sm": [
24
+ "Polygon data"
25
+ ],
26
+ "dct_subject_sm": [
20
27
  "Poverty",
21
28
  "Statistics"
22
29
  ],
23
- "dct_issued_s": "2005",
30
+ "dcat_keyword_sm": [
31
+ "GBL Fixture records"
32
+ ],
24
33
  "dct_temporal_sm": [
25
34
  "2005"
26
35
  ],
36
+ "dct_issued_s": "1905-06-27",
37
+ "gbl_indexYear_im": [
38
+ "2005"
39
+ ],
40
+ "gbl_dateRange_drsim": [
41
+ "[2005 TO 2005]"
42
+ ],
27
43
  "dct_spatial_sm": [
28
44
  "Uganda"
29
45
  ],
30
- "solr_geom": "ENVELOPE(29.572742, 35.000308, 4.234077, -1.478794)",
31
- "solr_year_i": 2005,
32
- "stanford_rights_metadata_s": "<?xml version=\"1.0\"?>\n<rightsMetadata>\n <access type=\"discover\">\n <machine>\n <world/>\n </machine>\n </access>\n <access type=\"read\">\n <machine>\n <world/>\n </machine>\n </access>\n <use>\n <human type=\"useAndReproduction\">This item is in the public domain. There are no restrictions on use.</human>\n <human type=\"creativeCommons\"/>\n <machine type=\"creativeCommons\"/>\n </use>\n <copyright>\n <human>This work is in the Public Domain, meaning that it is not subject to copyright.</human>\n </copyright>\n</rightsMetadata>\n",
33
- "geoblacklight_version": "1.0"
46
+ "locn_geometry": "ENVELOPE(29.572742,35.000308,4.234077,-1.478794)",
47
+ "dcat_centroid_ss": "1.3776415000000002,32.286525",
48
+ "dct_rights_sm": [
49
+ "This item is in the public domain. There are no restrictions on use."
50
+ ],
51
+ "dct_accessRights_s": "Public",
52
+ "dct_format_s": "Shapefile",
53
+ "gbl_wxsIdentifier_s": "druid:cz128vq0535",
54
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://stacks.stanford.edu/file/druid:cz128vq0535/data.zip\",\"http://schema.org/url\":\"http://purl.stanford.edu/cz128vq0535\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cz/128/vq/0535/iso19139.xml\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cz128vq0535.mods\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geowebservices.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices.stanford.edu/geoserver/wms\"}",
55
+ "id": "stanford-cz128vq0535",
56
+ "dct_identifier_sm": [
57
+ "http://purl.stanford.edu/cz128vq0535"
58
+ ],
59
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
60
+ "gbl_mdVersion_s": "Aardvark"
34
61
  }
@@ -1,36 +1,61 @@
1
1
  {
2
- "geoblacklight_version": "1.0",
3
- "dc_description_s": "Partly colored. Relief shown pictorially. Shows administrative divisions. From Thomas Jefferys's The American atlas, or, A geographical description of the whole continent of America (London : Printed by R. Sayer and Bennett, 1778). Insets: A chart of the mouth of Hudson's River, from Sandy Hook to New York. A plan of the city of New York. Plan of Amboy, with its environs, from an actual survey.",
4
- "dc_format_s": "Raster",
5
- "dc_identifier_s": "http://arks.princeton.edu/ark:/88435/02870w62c",
6
- "dc_language_s": "English",
7
- "dc_publisher_s": "London, Robt. Sayer & John Bennett",
8
- "dc_rights_s": "Public",
9
- "dc_subject_sm": [
10
- "New York (State)‒Maps",
11
- "New Jersey‒Maps"
2
+ "dct_title_s": "The provinces of New York and New Jersey, with part of Pensilvania, and the Province of Quebec : drawn by Major Holland, Surveyor General, of the Northern District in America. Corrected and improved, from the original materials, by Governr. Pownall, Member of Parliament, 1776",
3
+ "dct_alternative_sm": [
4
+ "public_iiif_princeton"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Scanned map with IIIF. ",
8
+ "Partly colored. Relief shown pictorially. Shows administrative divisions. From Thomas Jefferys's The American atlas, or, A geographical description of the whole continent of America (London : Printed by R. Sayer and Bennett, 1778). Insets: A chart of the mouth of Hudson's River, from Sandy Hook to New York. A plan of the city of New York. Plan of Amboy, with its environs, from an actual survey."
12
9
  ],
13
- "dc_title_s": "The provinces of New York and New Jersey, with part of Pensilvania, and the Province of Quebec : drawn by Major Holland, Surveyor General, of the Northern District in America. Corrected and improved, from the original materials, by Governr. Pownall, Member of Parliament, 1776",
14
- "dc_type_s": "Dataset",
15
- "dc_creator_sm": [
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
16
14
  "Rogers, Henry Darwin",
17
15
  "Pownall, Thomas"
18
16
  ],
19
- "dct_references_s": "{\"http://schema.org/url\":\"http://arks.princeton.edu/ark:/88435/02870w62c\",\"http://schema.org/thumbnailUrl\":\"https://iiif-cloud.princeton.edu/iiif/2/6c%2F52%2F12%2F6c5212e81bc845f59bb1cdc740a88bad%2Fintermediate_file/full/!200,150/0/default.jpg\",\"http://iiif.io/api/image\":\"https://iiif-cloud.princeton.edu/iiif/2/6c%2F52%2F12%2F6c5212e81bc845f59bb1cdc740a88bad%2Fintermediate_file/info.json\"}",
17
+ "dct_publisher_sm": [
18
+ "London, Robt. Sayer & John Bennett"
19
+ ],
20
+ "schema_provider_s": "Princeton",
21
+ "gbl_resourceClass_sm": [
22
+ "Maps"
23
+ ],
24
+ "gbl_resourceType_sm": [
25
+ "Raster data"
26
+ ],
27
+ "dct_subject_sm": [
28
+ "New York (State)‒Maps",
29
+ "New Jersey‒Maps"
30
+ ],
31
+ "dcat_keyword_sm": [
32
+ "GBL Fixture records"
33
+ ],
34
+ "dct_temporal_sm": [
35
+ "1778"
36
+ ],
37
+ "dct_issued_s": "1904-11-12",
38
+ "gbl_indexYear_im": [
39
+ "1778"
40
+ ],
41
+ "gbl_dateRange_drsim": [
42
+ "[1778 TO 1778]"
43
+ ],
20
44
  "dct_spatial_sm": [
21
45
  "New York (State)",
22
46
  "New Jersey",
23
47
  "Pennsylvania"
24
48
  ],
25
- "dct_temporal_sm": [
26
- "1778"
49
+ "locn_geometry": "ENVELOPE(-76.3394,-72.1916,46.5798,38.6693)",
50
+ "dcat_centroid_ss": "42.62455,-74.2655",
51
+ "dct_accessRights_s": "Public",
52
+ "dct_format_s": "Raster",
53
+ "gbl_wxsIdentifier_s": "02870w62c",
54
+ "dct_references_s": "{\"http://iiif.io/api/image\":\"https://libimages.princeton.edu/loris/pudl0076/map_pownall/00000001.jp2/info.json\",\"http://schema.org/url\":\"http://arks.princeton.edu/ark:/88435/02870w62c\"}",
55
+ "id": "princeton-02870w62c",
56
+ "dct_identifier_sm": [
57
+ "http://arks.princeton.edu/ark:/88435/02870w62c"
27
58
  ],
28
- "dct_issued_s": "1778",
29
- "dct_provenance_s": "Princeton",
30
- "layer_slug_s": "princeton-02870w62c",
31
- "layer_id_s": "02870w62c",
32
- "layer_geom_type_s": "Raster",
33
- "layer_modified_dt": "2014-10-09T18:00:18Z",
34
- "solr_geom": "ENVELOPE(-76.3394, -72.1916, 46.5798, 38.6693)",
35
- "solr_year_i": 1778
59
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
60
+ "gbl_mdVersion_s": "Aardvark"
36
61
  }
@@ -1,27 +1,43 @@
1
1
  {
2
- "dc_creator_sm": [
2
+ "dct_title_s": "Massachusetts (ZCTA - 5 digit zip code tabulation area, 2000)",
3
+ "dct_alternative_sm": [
4
+ "public_polygon_mit"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Polygon shapefile with WMS and WFS"
8
+ ],
9
+ "dct_creator_sm": [
10
+ "United States. Bureau of the Census"
11
+ ],
12
+ "dct_publisher_sm": [
3
13
  "United States. Bureau of the Census"
4
14
  ],
5
- "dc_format_s": "Shapefile",
6
- "dc_publisher_s": "United States. Bureau of the Census",
7
- "dc_rights_s": "Public",
8
- "dc_subject_sm": [
15
+ "schema_provider_s": "MIT",
16
+ "gbl_resourceClass_sm": [
17
+ "Maps"
18
+ ],
19
+ "gbl_resourceType_sm": [
20
+ "Polygon data"
21
+ ],
22
+ "dct_subject_sm": [
9
23
  "Zip codes",
10
24
  "Census data",
11
25
  "Demographic surveys",
12
26
  "Population"
13
27
  ],
14
- "dc_title_s": "Massachusetts (ZCTA - 5 digit zip code tabulation area, 2000)",
15
- "dc_type_s": "Dataset",
16
- "dct_provenance_s": "MIT",
28
+ "dcat_keyword_sm": [
29
+ "GBL Fixture records"
30
+ ],
17
31
  "dct_spatial_sm": [
18
32
  "Massachusetts"
19
33
  ],
20
- "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wms\": \"https://geodata.mit.edu/geoserver/wms\", \"http://www.opengis.net/def/serviceType/ogc/wfs\": \"https://geodata.mit.edu/geoserver/wfs\"}",
21
- "layer_geom_type_s": "Polygon",
22
- "layer_id_s": "mit:SDE_DATA_US_MA_E25ZCTA5DCT_2000",
23
- "layer_modified_dt": "2018-05-15T20:00:25Z",
24
- "layer_slug_s": "mit-f6rqs4ucovjk2",
25
- "solr_geom": "ENVELOPE(-73.533237, -69.898565, 42.888068, 41.230345)",
26
- "geoblacklight_version": "1.0"
34
+ "locn_geometry": "ENVELOPE(-73.533237,-69.898565,42.888068,41.230345)",
35
+ "dcat_centroid_ss": "42.0592065,-71.715901",
36
+ "dct_accessRights_s": "Public",
37
+ "dct_format_s": "Shapefile",
38
+ "gbl_wxsIdentifier_s": "mit:SDE_DATA_US_MA_E25ZCTA5DCT_2000",
39
+ "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geodata.mit.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geodata.mit.edu/geoserver/wms\"}",
40
+ "id": "mit-f6rqs4ucovjk2",
41
+ "gbl_mdModified_dt": "2021-06-11T18:42:45Z",
42
+ "gbl_mdVersion_s": "Aardvark"
27
43
  }
@@ -1,37 +1,68 @@
1
1
  {
2
- "dc_identifier_s": "http://purl.stanford.edu/cg357zz0321",
3
- "dc_title_s": "10 Meter Contours: Russian River Basin, California",
4
- "dc_description_s": "This line shapefile contains contours that were derived from a mosiac of 10 meter digital elevation models for the extent of the Russian River basin, located in Sonoma and Mendocino Counties, California.This layer can be used for watershed analysis and planning in the Russian River region of California.",
5
- "dc_rights_s": "Restricted",
6
- "dct_provenance_s": "Stanford",
7
- "dct_references_s": "{\"http://schema.org/url\":\"http://purl.stanford.edu/cg357zz0321\",\"http://schema.org/downloadUrl\":\"http://stacks.stanford.edu/file/druid:cg357zz0321/data.zip\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cg357zz0321.mods\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cg/357/zz/0321/iso19139.xml\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geowebservices-restricted.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
8
- "layer_id_s": "druid:cg357zz0321",
9
- "layer_slug_s": "stanford-cg357zz0321",
10
- "layer_geom_type_s": "Line",
11
- "layer_modified_dt": "2016-04-25T17:13:35Z",
12
- "dc_format_s": "Shapefile",
13
- "dc_language_s": "English",
14
- "dc_type_s": "Dataset",
15
- "dc_publisher_s": "Circuit Rider Productions",
16
- "dc_creator_sm": [
2
+ "dct_title_s": "10 Meter Contours: Russian River Basin, California",
3
+ "dct_alternative_sm": [
4
+ "restricted-line"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Restricted line layer with WFS, WMS and metadata in MODS and ISO 19139. ",
8
+ "This line shapefile contains contours that were derived from a mosiac of 10 meter digital elevation models for the extent of the Russian River basin, located in Sonoma and Mendocino Counties, California.This layer can be used for watershed analysis and planning in the Russian River region of California."
9
+ ],
10
+ "dct_language_sm": [
11
+ "eng"
12
+ ],
13
+ "dct_creator_sm": [
17
14
  "United States. National Oceanic and Atmospheric Administration",
18
15
  "Circuit Rider Productions"
19
16
  ],
20
- "dc_subject_sm": [
17
+ "dct_publisher_sm": [
18
+ "Circuit Rider Productions"
19
+ ],
20
+ "schema_provider_s": "Stanford",
21
+ "gbl_resourceClass_sm": [
22
+ "Datasets"
23
+ ],
24
+ "gbl_resourceType_sm": [
25
+ "Line data"
26
+ ],
27
+ "dct_subject_sm": [
21
28
  "Contours (Cartography)",
22
29
  "Elevation",
23
30
  "Inland Waters"
24
31
  ],
25
- "dct_issued_s": "2002",
32
+ "dcat_theme_sm": [
33
+ "Elevation",
34
+ "Inland Waters"
35
+ ],
36
+ "dcat_keyword_sm": [
37
+ "GBL Fixture records"
38
+ ],
26
39
  "dct_temporal_sm": [
27
40
  "2002"
28
41
  ],
42
+ "dct_issued_s": "2002",
43
+ "gbl_indexYear_im": [
44
+ "2002"
45
+ ],
46
+ "gbl_dateRange_drsim": [
47
+ "[2002 TO 2002]"
48
+ ],
29
49
  "dct_spatial_sm": [
30
50
  "Sonoma County (Calif.)",
31
51
  "Mendocino County (Calif.)"
32
52
  ],
33
- "solr_geom": "ENVELOPE(-123.387366, -122.52958, 39.398403, 38.302994)",
34
- "solr_year_i": 2002,
35
- "stanford_rights_metadata_s": "<?xml version=\"1.0\"?>\n<rightsMetadata>\n <access type=\"discover\">\n <machine>\n <world/>\n </machine>\n </access>\n <access type=\"read\">\n <machine>\n <group>Stanford</group>\n </machine>\n </access>\n <use>\n <human type=\"useAndReproduction\">These data are licensed by Stanford Libraries and are available to Stanford University affiliates only. Affiliates are limited to current faculty, staff and students. These data may not be reproduced or used for any purpose without permission. For more information please contact brannerlibrary@stanford.edu.</human>\n <human type=\"creativeCommons\"/>\n <machine type=\"creativeCommons\"/>\n </use>\n <copyright>\n <human>Copyright ownership resides with the originator.</human>\n </copyright>\n</rightsMetadata>\n",
36
- "geoblacklight_version": "1.0"
53
+ "locn_geometry": "ENVELOPE(-123.387366,-122.52958,39.398403,38.302994)",
54
+ "dcat_centroid_ss": "38.8506985,-122.958473",
55
+ "dct_rights_sm": [
56
+ "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"
57
+ ],
58
+ "dct_accessRights_s": "Restricted",
59
+ "dct_format_s": "Shapefile",
60
+ "gbl_wxsIdentifier_s": "druid:cg357zz0321",
61
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://stacks.stanford.edu/file/druid:cg357zz0321/data.zip\",\"http://schema.org/url\":\"http://purl.stanford.edu/cg357zz0321\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cg/357/zz/0321/iso19139.xml\",\"http://www.loc.gov/mods/v3\":\"http://purl.stanford.edu/cg357zz0321.mods\",\"http://www.opengis.net/def/serviceType/ogc/wfs\":\"https://geowebservices-restricted.stanford.edu/geoserver/wfs\",\"http://www.opengis.net/def/serviceType/ogc/wms\":\"https://geowebservices-restricted.stanford.edu/geoserver/wms\"}",
62
+ "id": "stanford-cg357zz0321",
63
+ "dct_identifier_sm": [
64
+ "http://purl.stanford.edu/cg357zz0321"
65
+ ],
66
+ "gbl_mdModified_dt": "2021-06-01T22:14:16Z",
67
+ "gbl_mdVersion_s": "Aardvark"
37
68
  }
@@ -0,0 +1,27 @@
1
+ {
2
+ "id": "the-related-record",
3
+ "gbl_mdVersion_s": "Aardvark",
4
+ "dct_title_s": "The Related Record",
5
+ "dct_description_sm": [
6
+ "This record serves as the ID for each item relation in the record titled \"All Relationships\""
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
+ "dct_format_s": "Shapefile",
21
+ "gbl_georeferenced_b": false,
22
+ "dct_references_s": "{\"http://schema.org/url\":\"https://example.com\"}",
23
+ "schema_provider_s": "GeoBlacklight Community",
24
+ "dct_accessRights_s": "Public",
25
+ "gbl_suppressed_b": false,
26
+ "gbl_mdModified_dt": "2021-08-25T15:30:09Z"
27
+ }
@@ -1,29 +1,45 @@
1
1
  {
2
- "dc_identifier_s": "6f47b103-9955-4bbe-a364-387039623106",
3
- "dc_title_s": "Quaternary Fault and Fold Database of the United States",
4
- "dc_description_s": "Quaternary Fault and Fold Database of the United States",
5
- "dc_rights_s": "Public",
6
- "dct_provenance_s": "Stanford",
7
- "dct_references_s": "{\"http://schema.org/url\":\"https://www.usgs.gov/natural-hazards/earthquake-hazards/faults\",\"https://wiki.osgeo.org/wiki/Tile_Map_Service_Specification\":\"https://earthquake.usgs.gov/basemap/tiles/faults/{z}/{x}/{y}.png\",\"http://schema.org/downloadUrl\":\"https://earthquake.usgs.gov/static/lfs/nshm/qfaults/Qfaults_GIS.zip\"}",
8
- "layer_slug_s": "6f47b103-9955-4bbe-a364-387039623106",
9
- "layer_geom_type_s": "Polyline",
10
- "dc_format_s": "Shapefile",
11
- "dc_language_s": "English",
12
- "dc_type_s": "Dataset",
13
- "dc_publisher_s": "Geological Survey (U.S.)",
14
- "dc_subject_sm": [
2
+ "dct_title_s": "Quaternary Fault and Fold Database of the United States",
3
+ "dct_alternative_sm": [
4
+ "tms"
5
+ ],
6
+ "dct_description_sm": [
7
+ "Quaternary Fault and Fold Database of the United States"
8
+ ],
9
+ "dct_language_sm": [
10
+ "eng"
11
+ ],
12
+ "dct_publisher_sm": [
13
+ "Geological Survey (U.S.)"
14
+ ],
15
+ "schema_provider_s": "Stanford",
16
+ "gbl_resourceClass_sm": [
17
+ "Datasets"
18
+ ],
19
+ "gbl_resourceType_sm": [
20
+ "Polyline data"
21
+ ],
22
+ "dct_subject_sm": [
15
23
  "Earthquakes",
16
24
  "Faults"
17
25
  ],
18
- "dct_issued_s": "2020",
26
+ "dcat_keyword_sm": [
27
+ "GBL Fixture records"
28
+ ],
19
29
  "dct_temporal_sm": [
20
30
  "2020"
21
31
  ],
32
+ "dct_issued_s": "1905-07-12",
22
33
  "dct_spatial_sm": [
23
34
  "Earth (Planet)",
24
35
  "North America"
25
36
  ],
26
- "solr_geom": "ENVELOPE(-156.02, -70.80, 65.59, 18.93)",
27
- "solr_year_i": 2020,
28
- "geoblacklight_version": "1.0"
37
+ "locn_geometry": "ENVELOPE(-156.02,-70.8,65.59,18.93)",
38
+ "dcat_centroid_ss": "42.260000000000005,-113.41",
39
+ "dct_accessRights_s": "Public",
40
+ "dct_format_s": "Shapefile",
41
+ "dct_references_s": "{\"http://schema.org/url\":\"https://www.usgs.gov/natural-hazards/earthquake-hazards/faults\",\"https://wiki.osgeo.org/wiki/Tile_Map_Service_Specification\":\"https://earthquake.usgs.gov/basemap/tiles/faults/{z}/{x}/{y}.png\",\"http://schema.org/downloadUrl\":\"https://earthquake.usgs.gov/static/lfs/nshm/qfaults/Qfaults_GIS.zip\"}",
42
+ "id": "6f47b103-9955-4bbe-a364-387039623106",
43
+ "gbl_mdModified_dt": "2021-06-11T18:44:16Z",
44
+ "gbl_mdVersion_s": "Aardvark"
29
45
  }