geoblacklight 3.2.0 → 4.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +148 -0
- data/.gitignore +8 -0
- data/.rubocop.yml +14 -10
- data/.rubocop_todo.yml +361 -26
- data/README.md +3 -3
- data/Rakefile +19 -12
- data/app/assets/images/blacklight/michigan-state-university.svg +6 -0
- data/app/assets/images/blacklight/pennsylvania-state-university.svg +6 -0
- data/app/assets/images/blacklight/purdue-university.svg +6 -0
- data/app/assets/images/blacklight/the-ohio-state-university.svg +7 -0
- data/app/assets/images/blacklight/university-of-chicago.svg +6 -0
- data/app/assets/images/blacklight/university-of-illinois-urbana-champaign.svg +6 -0
- data/app/assets/images/blacklight/university-of-iowa.svg +5 -0
- data/app/assets/images/blacklight/university-of-maryland.svg +5 -0
- data/app/assets/images/blacklight/university-of-michigan.svg +5 -0
- data/app/assets/images/blacklight/university-of-minnesota.svg +5 -0
- data/app/assets/images/blacklight/university-of-nebraska-lincoln.svg +8 -0
- data/app/assets/images/blacklight/university-of-wisconsin-madison.svg +5 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/javascripts/geoblacklight/geoblacklight.js +18 -1
- data/app/assets/javascripts/geoblacklight/modules/bookmarks.js +43 -0
- data/app/assets/javascripts/geoblacklight/modules/metadata_download_button.js +6 -1
- data/app/assets/javascripts/geoblacklight/modules/results.js +7 -8
- data/app/assets/javascripts/geoblacklight/modules/util.js +5 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri.js +1 -1
- data/app/assets/javascripts/geoblacklight/viewers/index_map.js +1 -1
- data/app/assets/javascripts/geoblacklight/viewers/map.js +12 -2
- data/app/assets/javascripts/geoblacklight/viewers/tms.js +10 -0
- data/app/assets/javascripts/geoblacklight/viewers/wms.js +1 -1
- data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +41 -0
- data/app/assets/stylesheets/geoblacklight/modules/results.scss +1 -1
- data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +6 -0
- data/app/components/geoblacklight/homepage_feature_facet_component.html.erb +11 -0
- data/app/components/geoblacklight/homepage_feature_facet_component.rb +13 -0
- data/{lib → app/helpers}/geoblacklight/geoblacklight_helper_behavior.rb +6 -4
- data/app/helpers/geoblacklight_helper.rb +14 -8
- data/app/models/concerns/geoblacklight/solr_document/citation.rb +2 -2
- data/app/models/concerns/geoblacklight/solr_document.rb +11 -16
- data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +5 -5
- data/app/views/catalog/_arcgis.html.erb +1 -1
- data/app/views/catalog/_data_dictionary.html.erb +1 -2
- data/app/views/catalog/_document_split.html.erb +1 -1
- data/app/views/catalog/_header_icons.html.erb +1 -1
- data/app/views/catalog/_home_text.html.erb +7 -29
- data/app/views/catalog/_index_split_default.html.erb +1 -1
- data/app/views/catalog/_show_default_viewer_container.html.erb +1 -1
- data/app/views/catalog/_show_header_default.html.erb +1 -1
- data/app/views/download/hgl.html.erb +13 -11
- data/app/views/relation/_relations.html.erb +15 -0
- data/app/views/relation/index.html.erb +4 -16
- data/app/views/relation/index.json.jbuilder +6 -2
- data/babel.config.json +4 -0
- data/config/initializers/new_gbl_settings_defaults_3_4.yml +6 -0
- data/config/locales/geoblacklight.en.yml +12 -0
- data/geoblacklight.gemspec +5 -3
- data/jest.config.js +25 -0
- data/lib/generators/geoblacklight/install_generator.rb +1 -1
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +78 -35
- data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +195 -0
- data/lib/generators/geoblacklight/templates/settings.yml +91 -17
- data/lib/geoblacklight/bounding_box.rb +1 -1
- data/lib/geoblacklight/constants.rb +1 -0
- data/lib/geoblacklight/download/geojson_download.rb +1 -1
- data/lib/geoblacklight/download/geotiff_download.rb +1 -1
- data/lib/geoblacklight/download/hgl_download.rb +1 -1
- data/lib/geoblacklight/download/kmz_download.rb +2 -2
- data/lib/geoblacklight/download/shapefile_download.rb +1 -1
- data/lib/geoblacklight/geometry.rb +85 -0
- data/lib/geoblacklight/item_viewer.rb +5 -1
- data/lib/geoblacklight/metadata/base.rb +1 -7
- data/lib/geoblacklight/references.rb +1 -1
- data/lib/geoblacklight/relation/ancestors.rb +4 -3
- data/lib/geoblacklight/relation/descendants.rb +4 -3
- data/lib/geoblacklight/relation/relation_response.rb +21 -6
- data/lib/geoblacklight/version.rb +1 -1
- data/lib/geoblacklight/view_helper_override.rb +1 -1
- data/lib/geoblacklight/wms_layer.rb +1 -4
- data/lib/geoblacklight.rb +1 -3
- data/lib/tasks/geoblacklight.rake +5 -0
- data/package.json +17 -1
- data/schema/{geoblacklight-schema.json → geoblacklight-schema-1.0.json} +1 -1
- data/schema/geoblacklight-schema-aardvark.json +211 -0
- data/setupJest.js +14 -0
- data/solr/conf/schema.xml +35 -29
- data/solr/conf/solrconfig.xml +15 -15
- data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +39 -0
- data/spec/config/initializers/rails_config_spec.rb +15 -0
- data/spec/controllers/catalog_controller_spec.rb +7 -7
- data/spec/features/esri_viewer_spec.rb +1 -1
- data/spec/features/home_page_spec.rb +4 -4
- data/spec/features/layer_opacity_spec.rb +1 -0
- data/spec/features/metadata_panel_spec.rb +1 -1
- data/spec/features/missing_metadata_spec.rb +2 -2
- data/spec/features/relations_spec.rb +2 -2
- data/spec/features/search_results_map_spec.rb +2 -1
- data/spec/features/search_results_overlap_ratio_spec.rb +2 -2
- data/spec/features/split_view.html.erb_spec.rb +16 -12
- data/spec/features/tms_spec.rb +10 -0
- data/spec/fixtures/solr_documents/README.md +48 -36
- data/spec/fixtures/solr_documents/actual-papermap1.json +41 -18
- data/spec/fixtures/solr_documents/actual-point1.json +47 -27
- data/spec/fixtures/solr_documents/actual-polygon1.json +43 -18
- data/spec/fixtures/solr_documents/actual-raster1.json +52 -23
- data/spec/fixtures/solr_documents/all-relationships.json +48 -0
- data/spec/fixtures/solr_documents/baruch_ancestor1.json +62 -37
- data/spec/fixtures/solr_documents/baruch_ancestor2.json +62 -37
- data/spec/fixtures/solr_documents/baruch_documentation_download.json +60 -34
- data/spec/fixtures/solr_documents/bbox-spans-180.json +34 -16
- data/spec/fixtures/solr_documents/cornell_html_metadata.json +46 -26
- data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +43 -25
- data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +45 -28
- data/spec/fixtures/solr_documents/esri-feature-layer.json +44 -34
- data/spec/fixtures/solr_documents/esri-image-map-layer.json +45 -31
- data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +42 -17
- data/spec/fixtures/solr_documents/esri-wms-layer.json +46 -21
- data/spec/fixtures/solr_documents/harvard_raster.json +55 -36
- data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +35 -22
- data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +48 -27
- data/spec/fixtures/solr_documents/index-map-polygon.json +48 -27
- data/spec/fixtures/solr_documents/index-map-stanford.json +54 -25
- data/spec/fixtures/solr_documents/index_map_point.json +54 -26
- data/spec/fixtures/solr_documents/metadata_no_geom.json +27 -0
- data/spec/fixtures/solr_documents/metadata_no_provider.json +39 -0
- data/spec/fixtures/solr_documents/multiple-downloads.json +33 -20
- data/spec/fixtures/solr_documents/no_locn_geometry.json +25 -0
- data/spec/fixtures/solr_documents/no_spatial.json +37 -19
- data/spec/fixtures/solr_documents/oembed.json +34 -17
- data/spec/fixtures/solr_documents/princeton-child1.json +45 -28
- data/spec/fixtures/solr_documents/princeton-child2.json +45 -28
- data/spec/fixtures/solr_documents/princeton-child3.json +45 -28
- data/spec/fixtures/solr_documents/princeton-child4.json +45 -28
- data/spec/fixtures/solr_documents/princeton-parent.json +46 -23
- data/spec/fixtures/solr_documents/public_direct_download.json +48 -21
- data/spec/fixtures/solr_documents/public_iiif_princeton.json +49 -24
- data/spec/fixtures/solr_documents/public_polygon_mit.json +31 -15
- data/spec/fixtures/solr_documents/restricted-line.json +52 -21
- data/spec/fixtures/solr_documents/the-related-record.json +27 -0
- data/spec/fixtures/solr_documents/tms.json +45 -0
- data/spec/fixtures/solr_documents/umn_metro_result1.json +44 -28
- data/spec/fixtures/solr_documents/umn_state_result1.json +44 -26
- data/spec/fixtures/solr_documents/umn_state_result2.json +45 -24
- data/spec/fixtures/solr_documents/uva_slug_colon.json +43 -20
- data/spec/{lib → helpers}/geoblacklight/geoblacklight_helper_behavior_spec.rb +1 -0
- data/spec/helpers/geoblacklight_helper_spec.rb +30 -4
- data/spec/javascripts/geoblacklight_spec.js +0 -6
- data/spec/javascripts/metadata_download_button_spec.js +5 -3
- data/spec/javascripts/util_spec.js +2 -4
- data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download/hgl_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download/kmz_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download_spec.rb +1 -1
- data/spec/lib/geoblacklight/geometry_spec.rb +59 -0
- data/spec/lib/geoblacklight/item_viewer_spec.rb +12 -0
- data/spec/lib/geoblacklight/references_spec.rb +3 -3
- data/spec/lib/geoblacklight/relation/ancestors_spec.rb +3 -3
- data/spec/lib/geoblacklight/relation/descendants_spec.rb +3 -3
- data/spec/lib/geoblacklight/relation/relation_response_spec.rb +32 -17
- data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -4
- data/spec/spec_helper.rb +2 -0
- data/spec/support/view_component_capybara_test_helpers.rb +8 -0
- data/spec/test_app_templates/Gemfile.extra +1 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +0 -7
- data/spec/views/catalog/_document_split.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_index_split.html.erb_spec.rb +1 -1
- data/template.rb +1 -0
- metadata +99 -51
- data/.circleci/config.yml +0 -256
- data/app/views/catalog/_document_action.html.erb +0 -6
- data/app/views/catalog/_facet_tag_item.html.erb +0 -3
- data/app/views/catalog/_facet_tag_layout.html.erb +0 -2
- data/app/views/relation/_ancestors.html.erb +0 -8
- data/app/views/relation/_descendants.html.erb +0 -15
- data/schema/format-values.md +0 -50
- data/schema/geoblacklight-schema-deprecated.md +0 -39
- data/schema/geoblacklight-schema.md +0 -323
- data/schema/geometry-type-values.md +0 -11
- data/schema/references.md +0 -23
- data/schema/schema-commentary.md +0 -198
- data/schema/subjects.md +0 -41
- data/schema/type-values.md +0 -10
- data/spec/fixtures/solr_documents/metadata_no_dct_provenance_s.json +0 -30
- data/spec/fixtures/solr_documents/metadata_no_layer_geom_type_s.json +0 -17
- data/spec/fixtures/solr_documents/metadata_no_solr_geom.json +0 -23
- data/spec/javascripts/geoblacklight/viewers/esri/tiled_map_layer_spec.js +0 -12
- data/spec/javascripts/spec_helper.js +0 -32
- data/spec/lib/geoblacklight/controller_override_spec.rb +0 -2
- data/spec/teaspoon_env.rb +0 -214
@@ -1,30 +1,47 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
"
|
8
|
-
"
|
9
|
-
|
10
|
-
|
11
|
-
"
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
"
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
"
|
25
|
-
"
|
26
|
-
|
27
|
-
|
28
|
-
"
|
29
|
-
|
2
|
+
"dct_title_s": "Princeton, Mercer County, New Jersey (Sheet 4)",
|
3
|
+
"dct_alternative_sm": [
|
4
|
+
"princeton-child4"
|
5
|
+
],
|
6
|
+
"dct_description_sm": [
|
7
|
+
"Child 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
|
+
"locn_geometry": "ENVELOPE(-74.68,-74.63,40.37,40.33)",
|
31
|
+
"dcat_centroid_ss": "40.349999999999994,-74.655",
|
32
|
+
"dct_source_sm": [
|
33
|
+
"princeton-1r66j405w"
|
34
|
+
],
|
35
|
+
"dct_accessRights_s": "Public",
|
36
|
+
"dct_format_s": "TIFF",
|
37
|
+
"gbl_wxsIdentifier_s": "public-figgy:p-b6ba3091-fcf4-4d2d-9d6a-df7df5c8c589",
|
38
|
+
"dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://figgy.princeton.edu/downloads/b6ba3091-fcf4-4d2d-9d6a-df7df5c8c588/file/ff89fcc8-e61b-4b27-938f-a03e63d4f5f1\",\"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/2806e4cf-effc-4827-b116-952dfe776d14/manifest\"}",
|
39
|
+
"id": "princeton-n009w382v-fake2",
|
40
|
+
"dct_identifier_sm": [
|
41
|
+
"ark:/88435/n009w382v",
|
42
|
+
"HMC04 (Princeton)"
|
43
|
+
],
|
44
|
+
"gbl_mdModified_dt": "2021-06-01T22:14:16Z",
|
45
|
+
"gbl_mdVersion_s": "Aardvark",
|
46
|
+
"gbl_suppressed_b": true
|
30
47
|
}
|
@@ -1,25 +1,48 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
"
|
8
|
-
"
|
9
|
-
|
10
|
-
|
11
|
-
"
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
"
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
"
|
22
|
-
|
23
|
-
|
24
|
-
"
|
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
|
-
"
|
3
|
-
"
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
"
|
11
|
-
|
12
|
-
|
13
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
31
|
-
"
|
32
|
-
"
|
33
|
-
|
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
|
-
"
|
3
|
-
"
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
8
|
-
|
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
|
-
"
|
14
|
-
|
15
|
-
|
10
|
+
"dct_language_sm": [
|
11
|
+
"eng"
|
12
|
+
],
|
13
|
+
"dct_creator_sm": [
|
16
14
|
"Rogers, Henry Darwin",
|
17
15
|
"Pownall, Thomas"
|
18
16
|
],
|
19
|
-
"
|
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
|
-
"
|
26
|
-
|
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
|
-
"
|
29
|
-
"
|
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
|
-
"
|
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
|
-
"
|
6
|
-
"
|
7
|
-
|
8
|
-
|
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
|
-
"
|
15
|
-
|
16
|
-
|
28
|
+
"dcat_keyword_sm": [
|
29
|
+
"GBL Fixture records"
|
30
|
+
],
|
17
31
|
"dct_spatial_sm": [
|
18
32
|
"Massachusetts"
|
19
33
|
],
|
20
|
-
"
|
21
|
-
"
|
22
|
-
"
|
23
|
-
"
|
24
|
-
"
|
25
|
-
"
|
26
|
-
"
|
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
|
-
"
|
3
|
-
"
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
"
|
11
|
-
|
12
|
-
|
13
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
34
|
-
"
|
35
|
-
"
|
36
|
-
|
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
|
}
|