geoblacklight 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.circleci/config.yml +195 -0
- data/.github/ISSUE_TEMPLATE.md +17 -0
- data/.gitignore +21 -0
- data/.gitmodules +0 -0
- data/.hound.yml +8 -0
- data/.jshintignore +2 -0
- data/.jshintrc +67 -0
- data/.rubocop.yml +99 -0
- data/.rubocop_todo.yml +196 -0
- data/.solr_wrapper +5 -0
- data/CODE_OF_CONDUCT.md +76 -0
- data/CONTRIBUTING.md +49 -0
- data/Gemfile +39 -0
- data/LICENSE.txt +13 -0
- data/README.md +39 -0
- data/Rakefile +125 -0
- data/app/assets/images/blacklight/arrow-circle-down.svg +4 -0
- data/app/assets/images/blacklight/baruch-cuny.svg +6 -0
- data/app/assets/images/blacklight/berkeley.svg +7 -0
- data/app/assets/images/blacklight/book.svg +6 -0
- data/app/assets/images/blacklight/bookmark.svg +6 -0
- data/app/assets/images/blacklight/cd-rom.svg +6 -0
- data/app/assets/images/blacklight/chicago.svg +7 -0
- data/app/assets/images/blacklight/columbia.svg +6 -0
- data/app/assets/images/blacklight/cornell.svg +8 -0
- data/app/assets/images/blacklight/dvd-rom.svg +6 -0
- data/app/assets/images/blacklight/email.svg +6 -0
- data/app/assets/images/blacklight/esri-globe.svg +34 -0
- data/app/assets/images/blacklight/geoblacklight-icons.json +2079 -0
- data/app/assets/images/blacklight/globe.svg +4 -0
- data/app/assets/images/blacklight/harvard.svg +6 -0
- data/app/assets/images/blacklight/home.svg +4 -0
- data/app/assets/images/blacklight/illinois.svg +7 -0
- data/app/assets/images/blacklight/image.svg +6 -0
- data/app/assets/images/blacklight/indiana.svg +6 -0
- data/app/assets/images/blacklight/iowa.svg +6 -0
- data/app/assets/images/blacklight/leaf.svg +6 -0
- data/app/assets/images/blacklight/lewis-clark.svg +8 -0
- data/app/assets/images/blacklight/line.svg +7 -0
- data/app/assets/images/blacklight/logo.svg +1 -0
- data/app/assets/images/blacklight/map-marker.svg +6 -0
- data/app/assets/images/blacklight/map.svg +6 -0
- data/app/assets/images/blacklight/maryland.svg +6 -0
- data/app/assets/images/blacklight/massgis.svg +6 -0
- data/app/assets/images/blacklight/metadata.svg +6 -0
- data/app/assets/images/blacklight/michigan-state.svg +7 -0
- data/app/assets/images/blacklight/michigan.svg +6 -0
- data/app/assets/images/blacklight/minnesota.svg +6 -0
- data/app/assets/images/blacklight/mit.svg +6 -0
- data/app/assets/images/blacklight/mixed.svg +8 -0
- data/app/assets/images/blacklight/multilinestring.svg +9 -0
- data/app/assets/images/blacklight/multipoint.svg +6 -0
- data/app/assets/images/blacklight/multipolygon.svg +9 -0
- data/app/assets/images/blacklight/nyu.svg +9 -0
- data/app/assets/images/blacklight/ohio-state.svg +8 -0
- data/app/assets/images/blacklight/pagelines-brands.svg +6 -0
- data/app/assets/images/blacklight/paper-map.svg +6 -0
- data/app/assets/images/blacklight/penn-state.svg +7 -0
- data/app/assets/images/blacklight/point.svg +6 -0
- data/app/assets/images/blacklight/polygon.svg +7 -0
- data/app/assets/images/blacklight/polyline.svg +9 -0
- data/app/assets/images/blacklight/princeton.svg +6 -0
- data/app/assets/images/blacklight/public.svg +6 -0
- data/app/assets/images/blacklight/purdue.svg +7 -0
- data/app/assets/images/blacklight/raster.svg +6 -0
- data/app/assets/images/blacklight/restricted.svg +6 -0
- data/app/assets/images/blacklight/sms.svg +6 -0
- data/app/assets/images/blacklight/stanford.svg +6 -0
- data/app/assets/images/blacklight/table.svg +6 -0
- data/app/assets/images/blacklight/tags.svg +4 -0
- data/app/assets/images/blacklight/texas.svg +6 -0
- data/app/assets/images/blacklight/tufts.svg +6 -0
- data/app/assets/images/blacklight/ucla.svg +6 -0
- data/app/assets/images/blacklight/uva.svg +6 -0
- data/app/assets/images/blacklight/web_services.svg +6 -0
- data/app/assets/images/blacklight/wisconsin.svg +6 -0
- data/app/assets/javascripts/geoblacklight/basemaps.js +85 -0
- data/app/assets/javascripts/geoblacklight/controls.js +1 -0
- data/app/assets/javascripts/geoblacklight/controls/opacity.js +6 -0
- data/app/assets/javascripts/geoblacklight/downloaders.js +1 -0
- data/app/assets/javascripts/geoblacklight/downloaders/downloader.js +61 -0
- data/app/assets/javascripts/geoblacklight/downloaders/hgl_downloader.js +32 -0
- data/app/assets/javascripts/geoblacklight/geoblacklight.js +42 -0
- data/app/assets/javascripts/geoblacklight/modules.js +1 -0
- data/app/assets/javascripts/geoblacklight/modules/collapse.js +7 -0
- data/app/assets/javascripts/geoblacklight/modules/download.js +11 -0
- data/app/assets/javascripts/geoblacklight/modules/geosearch.js +133 -0
- data/app/assets/javascripts/geoblacklight/modules/help_text.js +7 -0
- data/app/assets/javascripts/geoblacklight/modules/home.js +16 -0
- data/app/assets/javascripts/geoblacklight/modules/item.js +13 -0
- data/app/assets/javascripts/geoblacklight/modules/layer_opacity.js +68 -0
- data/app/assets/javascripts/geoblacklight/modules/metadata.js +15 -0
- data/app/assets/javascripts/geoblacklight/modules/metadata_download_button.js +53 -0
- data/app/assets/javascripts/geoblacklight/modules/relations.js +14 -0
- data/app/assets/javascripts/geoblacklight/modules/results.js +82 -0
- data/app/assets/javascripts/geoblacklight/modules/util.js +38 -0
- data/app/assets/javascripts/geoblacklight/templates/index_map_download.hbs +19 -0
- data/app/assets/javascripts/geoblacklight/templates/index_map_info.hbs +40 -0
- data/app/assets/javascripts/geoblacklight/viewers.js +1 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri.js +77 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/dynamic_map_layer.js +85 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/feature_layer.js +76 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/image_map_layer.js +14 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/tiled_map_layer.js +50 -0
- data/app/assets/javascripts/geoblacklight/viewers/iiif.js +25 -0
- data/app/assets/javascripts/geoblacklight/viewers/index_map.js +70 -0
- data/app/assets/javascripts/geoblacklight/viewers/map.js +67 -0
- data/app/assets/javascripts/geoblacklight/viewers/oembed.js +13 -0
- data/app/assets/javascripts/geoblacklight/viewers/viewer.js +65 -0
- data/app/assets/javascripts/geoblacklight/viewers/wms.js +74 -0
- data/app/assets/stylesheets/geoblacklight/_blacklight_overrides.scss +51 -0
- data/app/assets/stylesheets/geoblacklight/_geoblacklight.scss +36 -0
- data/app/assets/stylesheets/geoblacklight/_styles.scss +4 -0
- data/app/assets/stylesheets/geoblacklight/application.scss +2 -0
- data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +93 -0
- data/app/assets/stylesheets/geoblacklight/modules/facets.scss +5 -0
- data/app/assets/stylesheets/geoblacklight/modules/geosearch.scss +29 -0
- data/app/assets/stylesheets/geoblacklight/modules/home.scss +28 -0
- data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +50 -0
- data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +7 -0
- data/app/assets/stylesheets/geoblacklight/modules/item.scss +26 -0
- data/app/assets/stylesheets/geoblacklight/modules/layer_opacity.scss +87 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata.scss +31 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata_content.scss +43 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata_markup.scss +9 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata_missing.scss +7 -0
- data/app/assets/stylesheets/geoblacklight/modules/mixins.scss +5 -0
- data/app/assets/stylesheets/geoblacklight/modules/modal.scss +14 -0
- data/app/assets/stylesheets/geoblacklight/modules/relations.scss +15 -0
- data/app/assets/stylesheets/geoblacklight/modules/results.scss +68 -0
- data/app/assets/stylesheets/geoblacklight/modules/search_widgets.scss +5 -0
- data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +60 -0
- data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +70 -0
- data/app/assets/stylesheets/geoblacklight/modules/web_services.scss +5 -0
- data/app/controllers/download_controller.rb +114 -0
- data/app/controllers/relation_controller.rb +20 -0
- data/app/controllers/wms_controller.rb +15 -0
- data/app/helpers/arcgis_helper.rb +12 -0
- data/app/helpers/blacklight_helper.rb +9 -0
- data/app/helpers/carto_helper.rb +29 -0
- data/app/helpers/geoblacklight_helper.rb +323 -0
- data/app/models/concerns/geoblacklight/solr_document.rb +113 -0
- data/app/models/concerns/geoblacklight/solr_document/arcgis.rb +10 -0
- data/app/models/concerns/geoblacklight/solr_document/carto.rb +28 -0
- data/app/models/concerns/geoblacklight/solr_document/finder.rb +38 -0
- data/app/models/concerns/geoblacklight/solr_document/inspection.rb +15 -0
- data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +69 -0
- data/app/presenters/geoblacklight/document_presenter.rb +23 -0
- data/app/views/catalog/_data_dictionary.html.erb +6 -0
- data/app/views/catalog/_document_action.html.erb +6 -0
- data/app/views/catalog/_document_split.html.erb +6 -0
- data/app/views/catalog/_download_generated_link.html.erb +4 -0
- data/app/views/catalog/_download_link.html.erb +3 -0
- data/app/views/catalog/_downloads_generated.html.erb +6 -0
- data/app/views/catalog/_downloads_primary.html.erb +14 -0
- data/app/views/catalog/_downloads_secondary.html.erb +39 -0
- data/app/views/catalog/_exports.html.erb +3 -0
- data/app/views/catalog/_facet_tag_item.html.erb +3 -0
- data/app/views/catalog/_facet_tag_layout.html.erb +2 -0
- data/app/views/catalog/_header_icons.html.erb +3 -0
- data/app/views/catalog/_home_text.html.erb +43 -0
- data/app/views/catalog/_icon_facet.html.erb +16 -0
- data/app/views/catalog/_index_split_default.html.erb +22 -0
- data/app/views/catalog/_metadata.html.erb +27 -0
- data/app/views/catalog/_relations_container.html.erb +1 -0
- data/app/views/catalog/_results_pagination.html.erb +12 -0
- data/app/views/catalog/_show_default_attribute_table.html.erb +19 -0
- data/app/views/catalog/_show_default_viewer_container.html.erb +12 -0
- data/app/views/catalog/_show_default_viewer_information.html.erb +4 -0
- data/app/views/catalog/_show_downloads.html.erb +34 -0
- data/app/views/catalog/_show_header_default.html.erb +4 -0
- data/app/views/catalog/_show_sidebar.html.erb +12 -0
- data/app/views/catalog/_show_tools.html.erb +25 -0
- data/app/views/catalog/_web_services.html.erb +8 -0
- data/app/views/catalog/_web_services_default.html.erb +8 -0
- data/app/views/catalog/_web_services_wfs.html.erb +8 -0
- data/app/views/catalog/_web_services_wms.html.erb +8 -0
- data/app/views/catalog/index.html.erb +13 -0
- data/app/views/catalog/metadata.html.erb +11 -0
- data/app/views/catalog/metadata/_content.html.erb +3 -0
- data/app/views/catalog/metadata/_markup.html.erb +8 -0
- data/app/views/catalog/metadata/_missing.html.erb +6 -0
- data/app/views/catalog/web_services.html.erb +10 -0
- data/app/views/download/hgl.html.erb +25 -0
- data/app/views/relation/_ancestors.html.erb +11 -0
- data/app/views/relation/_descendants.html.erb +18 -0
- data/app/views/relation/index.html.erb +13 -0
- data/app/views/relation/index.json.jbuilder +3 -0
- data/app/views/shared/_header_navbar.html.erb +38 -0
- data/config/initializers/rails_config.rb +3 -0
- data/config/locales/geoblacklight.en.yml +163 -0
- data/geoblacklight.gemspec +49 -0
- data/lib/generators/geoblacklight/install_generator.rb +105 -0
- data/lib/generators/geoblacklight/templates/Procfile +3 -0
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +272 -0
- data/lib/generators/geoblacklight/templates/geoblacklight.js +10 -0
- data/lib/generators/geoblacklight/templates/geoblacklight.scss +4 -0
- data/lib/generators/geoblacklight/templates/package.json +14 -0
- data/lib/generators/geoblacklight/templates/settings.yml +127 -0
- data/lib/generators/geoblacklight/templates/webpacker.yml +67 -0
- data/lib/generators/geoblacklight/webpacker_generator.rb +35 -0
- data/lib/geoblacklight.rb +50 -0
- data/lib/geoblacklight/bounding_box.rb +45 -0
- data/lib/geoblacklight/catalog_helper_override.rb +13 -0
- data/lib/geoblacklight/constants.rb +28 -0
- data/lib/geoblacklight/download.rb +108 -0
- data/lib/geoblacklight/download/geojson_download.rb +22 -0
- data/lib/geoblacklight/download/geotiff_download.rb +20 -0
- data/lib/geoblacklight/download/hgl_download.rb +18 -0
- data/lib/geoblacklight/download/kmz_download.rb +22 -0
- data/lib/geoblacklight/download/shapefile_download.rb +20 -0
- data/lib/geoblacklight/engine.rb +27 -0
- data/lib/geoblacklight/exceptions.rb +27 -0
- data/lib/geoblacklight/geoblacklight_helper_behavior.rb +14 -0
- data/lib/geoblacklight/item_viewer.rb +54 -0
- data/lib/geoblacklight/metadata.rb +18 -0
- data/lib/geoblacklight/metadata/base.rb +93 -0
- data/lib/geoblacklight/metadata/fgdc.rb +14 -0
- data/lib/geoblacklight/metadata/html.rb +13 -0
- data/lib/geoblacklight/metadata/iso19139.rb +14 -0
- data/lib/geoblacklight/metadata_transformer.rb +33 -0
- data/lib/geoblacklight/metadata_transformer/base.rb +42 -0
- data/lib/geoblacklight/metadata_transformer/fgdc.rb +8 -0
- data/lib/geoblacklight/metadata_transformer/iso19139.rb +8 -0
- data/lib/geoblacklight/reference.rb +45 -0
- data/lib/geoblacklight/references.rb +132 -0
- data/lib/geoblacklight/relation/ancestors.rb +27 -0
- data/lib/geoblacklight/relation/descendants.rb +27 -0
- data/lib/geoblacklight/relation/relation_response.rb +24 -0
- data/lib/geoblacklight/routes.rb +7 -0
- data/lib/geoblacklight/routes/downloadable.rb +14 -0
- data/lib/geoblacklight/routes/exportable.rb +17 -0
- data/lib/geoblacklight/routes/wms.rb +13 -0
- data/lib/geoblacklight/version.rb +3 -0
- data/lib/geoblacklight/view_helper_override.rb +40 -0
- data/lib/geoblacklight/wms_layer.rb +35 -0
- data/lib/geoblacklight/wms_layer/feature_info_response.rb +32 -0
- data/lib/tasks/geoblacklight.rake +108 -0
- data/package.json +4 -0
- data/schema/format-values.md +50 -0
- data/schema/geoblacklight-schema-deprecated.md +39 -0
- data/schema/geoblacklight-schema.json +214 -0
- data/schema/geoblacklight-schema.md +323 -0
- data/schema/geometry-type-values.md +11 -0
- data/schema/references.md +23 -0
- data/schema/schema-commentary.md +198 -0
- data/schema/subjects.md +41 -0
- data/schema/type-values.md +10 -0
- data/solr/conf/_rest_managed.json +3 -0
- data/solr/conf/admin-extra.html +31 -0
- data/solr/conf/core.properties +5 -0
- data/solr/conf/elevate.xml +36 -0
- data/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/conf/protwords.txt +21 -0
- data/solr/conf/schema.xml +198 -0
- data/solr/conf/scripts.conf +24 -0
- data/solr/conf/solrconfig.xml +243 -0
- data/solr/conf/spellings.txt +2 -0
- data/solr/conf/stopwords.txt +58 -0
- data/solr/conf/stopwords_en.txt +58 -0
- data/solr/conf/synonyms.txt +31 -0
- data/solr/conf/xslt/example.xsl +132 -0
- data/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/conf/xslt/luke.xsl +337 -0
- data/spec/controllers/catalog_controller_spec.rb +82 -0
- data/spec/controllers/download_controller_spec.rb +120 -0
- data/spec/controllers/relation_controller_spec.rb +11 -0
- data/spec/controllers/wms_controller_spec.rb +34 -0
- data/spec/factories/user.rb +7 -0
- data/spec/features/bookmarks_spec.rb +10 -0
- data/spec/features/configurable_basemap_spec.rb +35 -0
- data/spec/features/data_dictionary_download_spec.rb +16 -0
- data/spec/features/download_layer_spec.rb +93 -0
- data/spec/features/empty_search_spec.rb +11 -0
- data/spec/features/esri_viewer_spec.rb +42 -0
- data/spec/features/exports_spec.rb +36 -0
- data/spec/features/help_text_spec.rb +8 -0
- data/spec/features/home_page_spec.rb +40 -0
- data/spec/features/iiif_viewer_spec.rb +8 -0
- data/spec/features/index_map_spec.rb +31 -0
- data/spec/features/layer_inspection_spec.rb +10 -0
- data/spec/features/layer_opacity_spec.rb +20 -0
- data/spec/features/layer_preview_spec.rb +17 -0
- data/spec/features/layer_with_no_references_spec.rb +8 -0
- data/spec/features/linkified_attribute_table_spec.rb +11 -0
- data/spec/features/metadata_panel_spec.rb +78 -0
- data/spec/features/missing_metadata_spec.rb +24 -0
- data/spec/features/oembed_spec.rb +9 -0
- data/spec/features/relations_spec.rb +51 -0
- data/spec/features/saved_searches_spec.rb +13 -0
- data/spec/features/search_bar_spec.rb +12 -0
- data/spec/features/search_results_map_spec.rb +55 -0
- data/spec/features/search_results_overlap_ratio_spec.rb +55 -0
- data/spec/features/search_spec.rb +14 -0
- data/spec/features/show_page_metadata_spec.rb +12 -0
- data/spec/features/sms_spec.rb +15 -0
- data/spec/features/split_view.html.erb_spec.rb +75 -0
- data/spec/features/suppressed_records_spec.rb +14 -0
- data/spec/features/web_services_modal_spec.rb +25 -0
- data/spec/fixtures/fgdc/harvard-g7064-s2-1834-k3.xml +1 -0
- data/spec/fixtures/iso19139/stanford-cg357zz0321.xml +581 -0
- data/spec/fixtures/mods/fb897vt9938.mods +111 -0
- data/spec/fixtures/mods/stanford-cg357zz0321.mods +113 -0
- data/spec/fixtures/solr_documents/README.md +40 -0
- data/spec/fixtures/solr_documents/actual-papermap1.json +23 -0
- data/spec/fixtures/solr_documents/actual-point1.json +37 -0
- data/spec/fixtures/solr_documents/actual-polygon1.json +23 -0
- data/spec/fixtures/solr_documents/actual-raster1.json +38 -0
- data/spec/fixtures/solr_documents/baruch_ancestor1.json +46 -0
- data/spec/fixtures/solr_documents/baruch_ancestor2.json +46 -0
- data/spec/fixtures/solr_documents/baruch_documentation_download.json +49 -0
- data/spec/fixtures/solr_documents/bbox-spans-180.json +20 -0
- data/spec/fixtures/solr_documents/cornell_html_metadata.json +42 -0
- data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +38 -0
- data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +40 -0
- data/spec/fixtures/solr_documents/esri-feature-layer.json +46 -0
- data/spec/fixtures/solr_documents/esri-image-map-layer.json +42 -0
- data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +22 -0
- data/spec/fixtures/solr_documents/esri-wms-layer.json +33 -0
- data/spec/fixtures/solr_documents/harvard_raster.json +44 -0
- data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +30 -0
- data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +37 -0
- data/spec/fixtures/solr_documents/index-map-polygon.json +37 -0
- data/spec/fixtures/solr_documents/index-map-stanford.json +37 -0
- data/spec/fixtures/solr_documents/index_map_point.json +27 -0
- data/spec/fixtures/solr_documents/metadata_no_dct_provenance_s.json +30 -0
- data/spec/fixtures/solr_documents/metadata_no_layer_geom_type_s.json +17 -0
- data/spec/fixtures/solr_documents/metadata_no_solr_geom.json +23 -0
- data/spec/fixtures/solr_documents/no_spatial.json +21 -0
- data/spec/fixtures/solr_documents/oembed.json +24 -0
- data/spec/fixtures/solr_documents/princeton-child1.json +30 -0
- data/spec/fixtures/solr_documents/princeton-child2.json +30 -0
- data/spec/fixtures/solr_documents/princeton-child3.json +30 -0
- data/spec/fixtures/solr_documents/princeton-child4.json +30 -0
- data/spec/fixtures/solr_documents/princeton-parent.json +25 -0
- data/spec/fixtures/solr_documents/public_direct_download.json +34 -0
- data/spec/fixtures/solr_documents/public_iiif_princeton.json +36 -0
- data/spec/fixtures/solr_documents/public_polygon_mit.json +27 -0
- data/spec/fixtures/solr_documents/restricted-line.json +37 -0
- data/spec/fixtures/solr_documents/umn_metro_result1.json +41 -0
- data/spec/fixtures/solr_documents/umn_state_result1.json +38 -0
- data/spec/fixtures/solr_documents/umn_state_result2.json +38 -0
- data/spec/fixtures/solr_documents/uva_slug_colon.json +25 -0
- data/spec/helpers/arcgis_helper_spec.rb +14 -0
- data/spec/helpers/carto_helper_spec.rb +11 -0
- data/spec/helpers/geoblacklight_helper_spec.rb +329 -0
- data/spec/javascripts/geoblacklight_spec.js +21 -0
- data/spec/javascripts/metadata_download_button_spec.js +14 -0
- data/spec/javascripts/spec_helper.js +32 -0
- data/spec/javascripts/util_spec.js +12 -0
- data/spec/lib/geoblacklight/bounding_box_spec.rb +27 -0
- data/spec/lib/geoblacklight/controller_override_spec.rb +1 -0
- data/spec/lib/geoblacklight/document_presenter_spec.rb +61 -0
- data/spec/lib/geoblacklight/download/geojson_download_spec.rb +19 -0
- data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +20 -0
- data/spec/lib/geoblacklight/download/hgl_download_spec.rb +60 -0
- data/spec/lib/geoblacklight/download/kmz_download_spec.rb +20 -0
- data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +19 -0
- data/spec/lib/geoblacklight/download_spec.rb +177 -0
- data/spec/lib/geoblacklight/geoblacklight_helper_behavior_spec.rb +30 -0
- data/spec/lib/geoblacklight/item_viewer_spec.rb +63 -0
- data/spec/lib/geoblacklight/metadata/base_spec.rb +157 -0
- data/spec/lib/geoblacklight/metadata/html_spec.rb +18 -0
- data/spec/lib/geoblacklight/metadata_spec.rb +42 -0
- data/spec/lib/geoblacklight/metadata_transformer/base_spec.rb +35 -0
- data/spec/lib/geoblacklight/metadata_transformer/fgdc_spec.rb +23 -0
- data/spec/lib/geoblacklight/metadata_transformer/iso19139_spec.rb +23 -0
- data/spec/lib/geoblacklight/metadata_transformer_spec.rb +69 -0
- data/spec/lib/geoblacklight/reference_spec.rb +64 -0
- data/spec/lib/geoblacklight/references_spec.rb +216 -0
- data/spec/lib/geoblacklight/relation/ancestors_spec.rb +32 -0
- data/spec/lib/geoblacklight/relation/descendants_spec.rb +32 -0
- data/spec/lib/geoblacklight/relation/relation_response_spec.rb +43 -0
- data/spec/lib/geoblacklight/view_helper_override_spec.rb +37 -0
- data/spec/lib/geoblacklight/wms_layer/feature_info_response_spec.rb +50 -0
- data/spec/lib/geoblacklight/wms_layer_spec.rb +99 -0
- data/spec/models/concerns/geoblacklight/solr_document/carto_spec.rb +61 -0
- data/spec/models/concerns/geoblacklight/solr_document/finder_spec.rb +40 -0
- data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +16 -0
- data/spec/models/concerns/geoblacklight/solr_document_spec.rb +251 -0
- data/spec/models/concerns/geoblacklight/spatial_search_behavior_spec.rb +84 -0
- data/spec/routing/catalog_routing_spec.rb +8 -0
- data/spec/spec_helper.rb +79 -0
- data/spec/support/backport_test_helpers.rb +45 -0
- data/spec/support/features.rb +5 -0
- data/spec/support/features/session_helpers.rb +20 -0
- data/spec/teaspoon_env.rb +213 -0
- data/spec/test_app_templates/Gemfile.extra +1 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +49 -0
- data/spec/test_app_templates/metadata/fgdc.html +129 -0
- data/spec/test_app_templates/metadata/fgdc.xml +145 -0
- data/spec/test_app_templates/metadata/iso.html +275 -0
- data/spec/test_app_templates/metadata/iso.xml +511 -0
- data/spec/test_app_templates/solr_documents +1 -0
- data/spec/views/catalog/_document_split.html.erb_spec.rb +5 -0
- data/spec/views/catalog/_index_split.html.erb_spec.rb +5 -0
- data/spec/views/catalog/_results_pagination.html.erb_spec.rb +9 -0
- data/spec/views/catalog/_show_downloads.html.erb_spec.rb +41 -0
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +39 -0
- data/template.rb +19 -0
- data/vendor/assets/images/layers-2x.png +0 -0
- data/vendor/assets/images/layers.png +0 -0
- data/vendor/assets/images/marker-icon-2x.png +0 -0
- data/vendor/assets/images/marker-icon.png +0 -0
- data/vendor/assets/images/marker-shadow.png +0 -0
- data/vendor/assets/javascripts/esri-leaflet.js +5 -0
- data/vendor/assets/javascripts/esri-leaflet.js.map +1 -0
- data/vendor/assets/javascripts/leaflet-iiif.js +302 -0
- data/vendor/assets/javascripts/leaflet-src.js.map +1 -0
- data/vendor/assets/javascripts/leaflet.js.erb +13922 -0
- data/vendor/assets/javascripts/native.history.js +1 -0
- data/vendor/assets/javascripts/readmore.js +618 -0
- data/vendor/assets/javascripts/readmore.js.map +1 -0
- data/vendor/assets/stylesheets/leaflet-label.css +54 -0
- data/vendor/assets/stylesheets/leaflet.css +635 -0
- metadata +967 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<mods xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" version="3.4" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd">
|
|
3
|
+
<titleInfo>
|
|
4
|
+
<title>Dabao Kinbōzu, Maps Index</title>
|
|
5
|
+
</titleInfo>
|
|
6
|
+
<titleInfo>
|
|
7
|
+
<title type="alternative">Davao (Philippines), 1:50000 Maps Index</title>
|
|
8
|
+
</titleInfo>
|
|
9
|
+
<titleInfo>
|
|
10
|
+
<title displayLabel="Alternative title">Davao (Philippines), 1:50000 Maps Index</title>
|
|
11
|
+
</titleInfo>
|
|
12
|
+
<name type="corporate">
|
|
13
|
+
<namePart>Stanford Geospatial Center</namePart>
|
|
14
|
+
<role>
|
|
15
|
+
<roleTerm type="text" authority="marcrelator">creator</roleTerm>
|
|
16
|
+
</role>
|
|
17
|
+
</name>
|
|
18
|
+
<typeOfResource>cartographic</typeOfResource>
|
|
19
|
+
<typeOfResource>software, multimedia</typeOfResource>
|
|
20
|
+
<genre authority="lcgft" valueURI="http://id.loc.gov/authorities/genreForms/gf2011026297">Geospatial data</genre>
|
|
21
|
+
<genre authority="rdacontent" valueURI="http://rdvocab.info/termList/RDAContentType/1001">cartographic dataset</genre>
|
|
22
|
+
<originInfo>
|
|
23
|
+
<publisher>Stanford Digital Repository</publisher>
|
|
24
|
+
<place>
|
|
25
|
+
<placeTerm type="text">Stanford, California,</placeTerm>
|
|
26
|
+
</place>
|
|
27
|
+
<dateIssued encoding="w3cdtf" keyDate="yes">2016</dateIssued>
|
|
28
|
+
</originInfo>
|
|
29
|
+
<language>
|
|
30
|
+
<languageTerm authority="iso639-2b">eng</languageTerm>
|
|
31
|
+
</language>
|
|
32
|
+
<physicalDescription>
|
|
33
|
+
<form>Shapefile</form>
|
|
34
|
+
<extent>0.001</extent>
|
|
35
|
+
<digitalOrigin>born digital</digitalOrigin>
|
|
36
|
+
</physicalDescription>
|
|
37
|
+
<subject authority="EPSG" valueURI="http://opengis.net/def/crs/EPSG/0/4326" displayLabel="WGS84">
|
|
38
|
+
<cartographics>
|
|
39
|
+
<scale>Scale not given.</scale>
|
|
40
|
+
<projection>EPSG::4326</projection>
|
|
41
|
+
<coordinates>(E 125°--E 126°/N 7°20ʹ--N 6°40ʹ)</coordinates>
|
|
42
|
+
</cartographics>
|
|
43
|
+
</subject>
|
|
44
|
+
<abstract displayLabel="Abstract" lang="eng">This polygon shapefile is an index to 1:50000 scale maps of Davao (Philippines), titled 'Dabao Kinbōzu -- ダバオ近傍圖/Dabao Kinbōzu.’ This map series was originally produced by the Japanese Land Survey Department of the General Staff Headquarters in 1944. Stanford University Libraries holds a large collection of Japanese military and imperial maps, referred to as gaihōzu, or "maps of outer lands." These maps were produced starting in the early Meiji (1868-1912) era and the end of World War II by the Land Survey Department of the General Staff Headquarters, the former Japanese Army. The Library is in the process of scanning and making available all of the maps in the collection. To create this index, footprints were generated using the fishnet tool, and metadata were supplied for the digitized paper maps by Stanford University Libraries. After the footprints were created, the shapefile was trimmed and labeled according to the sources.</abstract>
|
|
45
|
+
<abstract displayLabel="Purpose" lang="eng">This layer provides an index map that can be used to locate individual scanned map sheets.</abstract>
|
|
46
|
+
<note displayLabel="Preferred citation" lang="eng">Stanford Geospatial Center. (2016). Dabao Kinbōzu, Maps Index. Stanford Digital Repository. Available at: http://purl.stanford.edu/fb897vt9938.</note>
|
|
47
|
+
<relatedItem type="isReferencedBy">
|
|
48
|
+
<titleInfo>
|
|
49
|
+
<title>Dabao Kinbōzu [cartographic material]</title>
|
|
50
|
+
</titleInfo>
|
|
51
|
+
</relatedItem>
|
|
52
|
+
<subject>
|
|
53
|
+
<topic authority="lcsh" authorityURI="http://id.loc.gov/authorities/subjects.html" lang="eng">Military maps</topic>
|
|
54
|
+
</subject>
|
|
55
|
+
<subject>
|
|
56
|
+
<topic authority="lcsh" authorityURI="http://id.loc.gov/authorities/subjects.html" lang="eng">Topographic maps</topic>
|
|
57
|
+
</subject>
|
|
58
|
+
<subject>
|
|
59
|
+
<topic authority="lcsh" authorityURI="http://id.loc.gov/authorities/subjects.html" lang="eng">Index maps</topic>
|
|
60
|
+
</subject>
|
|
61
|
+
<subject>
|
|
62
|
+
<topic authority="lcsh" authorityURI="http://id.loc.gov/authorities/subjects.html" lang="eng">Grids (Cartography)</topic>
|
|
63
|
+
</subject>
|
|
64
|
+
<subject>
|
|
65
|
+
<geographic lang="eng">Davao (Philippines)</geographic>
|
|
66
|
+
</subject>
|
|
67
|
+
<subject>
|
|
68
|
+
<temporal encoding="w3cdtf">1944</temporal>
|
|
69
|
+
</subject>
|
|
70
|
+
<subject>
|
|
71
|
+
<topic authority="ISO19115TopicCategory" authorityURI="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_TopicCategoryCode" valueURI="boundaries">Boundaries</topic>
|
|
72
|
+
</subject>
|
|
73
|
+
<subject>
|
|
74
|
+
<topic authority="ISO19115TopicCategory" authorityURI="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_TopicCategoryCode" valueURI="intelligenceMilitary">Military</topic>
|
|
75
|
+
</subject>
|
|
76
|
+
<location>
|
|
77
|
+
<url>http://purl.stanford.edu/fb897vt9938</url>
|
|
78
|
+
</location>
|
|
79
|
+
<recordInfo>
|
|
80
|
+
<recordContentSource>Stanford</recordContentSource>
|
|
81
|
+
<recordIdentifier>edu.stanford.purl:fb897vt9938</recordIdentifier>
|
|
82
|
+
<recordOrigin>This record was translated from ISO 19139 to MODS v.3 using an xsl transformation.</recordOrigin>
|
|
83
|
+
<languageOfCataloging>
|
|
84
|
+
<languageTerm authority="iso639-2b" type="code">eng</languageTerm>
|
|
85
|
+
</languageOfCataloging>
|
|
86
|
+
</recordInfo>
|
|
87
|
+
<extension displayLabel="geo">
|
|
88
|
+
<rdf:RDF xmlns:gml="http://www.opengis.net/gml/3.2/" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
89
|
+
<rdf:Description rdf:about="http://purl.stanford.edu/fb897vt9938">
|
|
90
|
+
<dc:format>application/x-esri-shapefile; format=Shapefile</dc:format>
|
|
91
|
+
<dc:type>Dataset#Polygon</dc:type>
|
|
92
|
+
<gml:boundedBy>
|
|
93
|
+
<gml:Envelope gml:srsName="EPSG:4326">
|
|
94
|
+
<gml:lowerCorner>125.0 6.6666</gml:lowerCorner>
|
|
95
|
+
<gml:upperCorner>126.0 7.3333</gml:upperCorner>
|
|
96
|
+
</gml:Envelope>
|
|
97
|
+
</gml:boundedBy>
|
|
98
|
+
</rdf:Description>
|
|
99
|
+
</rdf:RDF>
|
|
100
|
+
</extension>
|
|
101
|
+
<relatedItem type="host">
|
|
102
|
+
<titleInfo>
|
|
103
|
+
<title>Topographic Map Indexes</title>
|
|
104
|
+
</titleInfo>
|
|
105
|
+
<location>
|
|
106
|
+
<url>https://purl.stanford.edu/ch237ht4777</url>
|
|
107
|
+
</location>
|
|
108
|
+
<typeOfResource collection="yes"/>
|
|
109
|
+
</relatedItem>
|
|
110
|
+
<accessCondition type="useAndReproduction">This item is in the public domain. There are no restrictions on use.</accessCondition>
|
|
111
|
+
</mods>
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<mods xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" version="3.4" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd">
|
|
3
|
+
<titleInfo>
|
|
4
|
+
<title>10 Meter Contours: Russian River Basin, California</title>
|
|
5
|
+
</titleInfo>
|
|
6
|
+
<name type="corporate">
|
|
7
|
+
<namePart>United States. National Oceanic and Atmospheric Administration</namePart>
|
|
8
|
+
<role>
|
|
9
|
+
<roleTerm type="text" authority="marcrelator">creator</roleTerm>
|
|
10
|
+
</role>
|
|
11
|
+
</name>
|
|
12
|
+
<name type="corporate">
|
|
13
|
+
<namePart>Circuit Rider Productions</namePart>
|
|
14
|
+
<role>
|
|
15
|
+
<roleTerm type="text" authority="marcrelator">creator</roleTerm>
|
|
16
|
+
</role>
|
|
17
|
+
</name>
|
|
18
|
+
<typeOfResource>cartographic</typeOfResource>
|
|
19
|
+
<typeOfResource>software, multimedia</typeOfResource>
|
|
20
|
+
<genre authority="lcgft" valueURI="http://id.loc.gov/authorities/genreForms/gf2011026297">Geospatial data</genre>
|
|
21
|
+
<genre authority="rdacontent" valueURI="http://rdvocab.info/termList/RDAContentType/1001">cartographic dataset</genre>
|
|
22
|
+
<originInfo>
|
|
23
|
+
<publisher>Circuit Rider Productions</publisher>
|
|
24
|
+
<place>
|
|
25
|
+
<placeTerm type="text">Windsor, California, US</placeTerm>
|
|
26
|
+
</place>
|
|
27
|
+
<dateIssued encoding="w3cdtf" keyDate="yes">2002</dateIssued>
|
|
28
|
+
<dateValid encoding="w3cdtf">2002</dateValid>
|
|
29
|
+
</originInfo>
|
|
30
|
+
<language>
|
|
31
|
+
<languageTerm authority="iso639-2b">eng</languageTerm>
|
|
32
|
+
</language>
|
|
33
|
+
<physicalDescription>
|
|
34
|
+
<form>Shapefile</form>
|
|
35
|
+
<extent>74.767</extent>
|
|
36
|
+
<digitalOrigin>born digital</digitalOrigin>
|
|
37
|
+
</physicalDescription>
|
|
38
|
+
<subject>
|
|
39
|
+
<cartographics>
|
|
40
|
+
<scale>Scale not given.</scale>
|
|
41
|
+
<projection>Custom projection</projection>
|
|
42
|
+
<coordinates>(W 123°23ʹ15ʺ--W 122°31ʹ24ʺ/N 39°23ʹ55ʺ--N 38°18ʹ8ʺ)</coordinates>
|
|
43
|
+
</cartographics>
|
|
44
|
+
</subject>
|
|
45
|
+
<abstract displayLabel="Abstract" lang="eng">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.</abstract>
|
|
46
|
+
<abstract displayLabel="Purpose" lang="eng">This layer can be used for watershed analysis and planning in the Russian River region of California.</abstract>
|
|
47
|
+
<note displayLabel="Preferred citation" lang="eng">Circuit Rider Productions and National Oceanic and Atmospheric Administration (2002) 10 Meter Contours: Russian River Basin, California. Circuit Rider Productions.</note>
|
|
48
|
+
<note displayLabel="Supplemental information">The 7.5-minute digital elevation model (DEM) data are digital representations of cartographic information in a raster form. The DEMs consist of an array of elevations for ground positions at regularly spaced intervals. The data are produced in 7.5- by 7.5-minute blocks from either digitized cartographic map contour overlays of a scanned National Aerial Photography Program (NAPP) photographs. The DEM data are stored as profiles with a 10- or 30-meter square grid spacing along and between each profile. Approximate file sizes are 9.9 megabytes for a 10-meter resolution and 1.1 megabytes for a 30-meter horizontal resolution. Data profiles for this product do not always have the same number of elevations because of the variable angle between true north and grid north in the Universal Transverse Mercator (UTM)
|
|
49
|
+
projection coordinate system. The DEM data for 7.5-minute units correspond to the USGS 7.5-minute topographic quadrangle map series for all of the United States and its territories except Alaska.</note>
|
|
50
|
+
<subject>
|
|
51
|
+
<topic authority="lcsh" lang="eng">Contours (Cartography)</topic>
|
|
52
|
+
</subject>
|
|
53
|
+
<subject>
|
|
54
|
+
<geographic lang="eng" valueURI="http://sws.geonames.org/5397100/" authority="geonames" authorityURI="http://www.geonames.org/ontology#">Sonoma County (Calif.)</geographic>
|
|
55
|
+
</subject>
|
|
56
|
+
<subject>
|
|
57
|
+
<geographic lang="eng" valueURI="http://sws.geonames.org/5372163/" authority="geonames" authorityURI="http://www.geonames.org/ontology#">Mendocino County (Calif.)</geographic>
|
|
58
|
+
</subject>
|
|
59
|
+
<subject>
|
|
60
|
+
<temporal encoding="w3cdtf">2002</temporal>
|
|
61
|
+
</subject>
|
|
62
|
+
<subject>
|
|
63
|
+
<topic authority="ISO19115TopicCategory" authorityURI="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_TopicCategoryCode" valueURI="elevation">Elevation</topic>
|
|
64
|
+
</subject>
|
|
65
|
+
<subject>
|
|
66
|
+
<topic authority="ISO19115TopicCategory" authorityURI="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_TopicCategoryCode" valueURI="inlandWaters">Inland Waters</topic>
|
|
67
|
+
</subject>
|
|
68
|
+
<location>
|
|
69
|
+
<url>http://purl.stanford.edu/cg357zz0321</url>
|
|
70
|
+
</location>
|
|
71
|
+
<recordInfo>
|
|
72
|
+
<recordContentSource>Stanford</recordContentSource>
|
|
73
|
+
<recordIdentifier>edu.stanford.purl:cg357zz0321</recordIdentifier>
|
|
74
|
+
<recordOrigin>This record was translated from ISO 19139 to MODS v.3 using an xsl transformation.</recordOrigin>
|
|
75
|
+
<languageOfCataloging>
|
|
76
|
+
<languageTerm authority="iso639-2b" type="code">eng</languageTerm>
|
|
77
|
+
</languageOfCataloging>
|
|
78
|
+
</recordInfo>
|
|
79
|
+
<extension displayLabel="geo">
|
|
80
|
+
<rdf:RDF xmlns:gml="http://www.opengis.net/gml/3.2/" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
81
|
+
<rdf:Description rdf:about="http://purl.stanford.edu/cg357zz0321">
|
|
82
|
+
<dc:format>application/x-esri-shapefile; format=Shapefile</dc:format>
|
|
83
|
+
<dc:type>Dataset#LineString</dc:type>
|
|
84
|
+
<gml:boundedBy>
|
|
85
|
+
<gml:Envelope gml:srsName="EPSG:4326">
|
|
86
|
+
<gml:lowerCorner>-123.387366 38.302994</gml:lowerCorner>
|
|
87
|
+
<gml:upperCorner>-122.52958 39.398403</gml:upperCorner>
|
|
88
|
+
</gml:Envelope>
|
|
89
|
+
</gml:boundedBy>
|
|
90
|
+
<dc:coverage rdf:resource="http://sws.geonames.org/5397100/" dc:language="eng" dc:title="Sonoma County (Calif.)"/>
|
|
91
|
+
<dc:coverage rdf:resource="http://sws.geonames.org/5372163/" dc:language="eng" dc:title="Mendocino County (Calif.)"/>
|
|
92
|
+
</rdf:Description>
|
|
93
|
+
</rdf:RDF>
|
|
94
|
+
</extension>
|
|
95
|
+
<subject authority="EPSG" valueURI="http://opengis.net/def/crs/EPSG/0/4326" displayLabel="WGS84">
|
|
96
|
+
<cartographics>
|
|
97
|
+
<scale>Scale not given.</scale>
|
|
98
|
+
<projection>EPSG::4326</projection>
|
|
99
|
+
<coordinates>W 123°23ʹ15ʺ--W 122°31ʹ46ʺ/N 39°23ʹ54ʺ--N 38°18ʹ11ʺ</coordinates>
|
|
100
|
+
</cartographics>
|
|
101
|
+
</subject>
|
|
102
|
+
<note displayLabel="WGS84 Cartographics">This layer is presented in the WGS84 coordinate system for web display purposes. Downloadable data are provided in native coordinate system or projection.</note>
|
|
103
|
+
<relatedItem type="host">
|
|
104
|
+
<titleInfo>
|
|
105
|
+
<title>Russian River watershed GIS</title>
|
|
106
|
+
</titleInfo>
|
|
107
|
+
<location>
|
|
108
|
+
<url>https://purl.stanford.edu/zt526qk7324</url>
|
|
109
|
+
</location>
|
|
110
|
+
<typeOfResource collection="yes"/>
|
|
111
|
+
</relatedItem>
|
|
112
|
+
<accessCondition 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. Non affiliates seeking access should contact the publisher directly. These data may not be reproduced or used for any purpose without permission.</accessCondition>
|
|
113
|
+
</mods>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Listing of GeoBlacklight .json test documents
|
|
2
|
+
|
|
3
|
+
If you add a new document, please add it to the table below, and indicate its purpose.
|
|
4
|
+
|
|
5
|
+
| document | purpose |
|
|
6
|
+
| -------- | ------- |
|
|
7
|
+
| actual-papermap1 |Nondigitized paper map with a link to a library catalog|
|
|
8
|
+
| actual-point1 |Point dataset with WMS and WFS|
|
|
9
|
+
| actual-polygon1 |Polygon dataset (no direct download) with WFS, WMS, and FGDC metadata as XML|
|
|
10
|
+
| actual-raster1 |Restricted raster layer with WMS and metadata in MODS and ISO 19139|
|
|
11
|
+
| baruch_ancestor1 |SQLite Database with documentation download. Referenced as parent|
|
|
12
|
+
| baruch_ancestor2 |Geodatabase with documentation download. Referenced as parent|
|
|
13
|
+
| baruch_documentation_download |Point dataset with WMS and WFS, documentation download, and two parent records|
|
|
14
|
+
| bbox-spans-180 |Scanned map with IIIF and direct TIFF download that spans across the 180th meridian|
|
|
15
|
+
| cornell_html_metadata |Point dataset with WMS, WFS, direct download, and FGDC metadata XML and HTML|
|
|
16
|
+
| esri-dynamic-layer-single-layer |ArcGIS Dynamic Map Layer with single layer indicated|
|
|
17
|
+
| esri-feature-layer |ArcGIS Feature Layer - point dataset|
|
|
18
|
+
| esri-image-map-layer |ArcGIS Image Map Layer with GeoTIFF direct download|
|
|
19
|
+
| esri-tiled_map_layer |ArcGIS tiled map layer|
|
|
20
|
+
| esri-wms-layer |Dataset with ArcGIS Dynamic Map Layer, ArcGIS WMS, and direct download|
|
|
21
|
+
| harvard_raster |Raster with WMS and Harvard style download function|
|
|
22
|
+
| iiif-eastern-hemisphere |Eastern hemisphere scanned map with IIIF and direct TIFF download|
|
|
23
|
+
| index_map_point | GeoJSON index map of points |
|
|
24
|
+
| index_map_polygon | GeoJSON index map of polygons, with a downloadUrl for the index itself |
|
|
25
|
+
| index_map_polygon-no-downloadurl | GeoJSON index map of polygons, but lacking a downloadUrl for the index itself |
|
|
26
|
+
| index-map-stanford | old-style (pre-GeoJSON) index map of rectangular polygons |
|
|
27
|
+
| no_spatial |File without geometry type or solr_geometry (will cause error)|
|
|
28
|
+
| princeton-child1.json | Child record for testing the `suppressed_b` property |
|
|
29
|
+
| princeton-child2.json | Child record for testing the `suppressed_b` property |
|
|
30
|
+
| princeton-child3.json | Child record for testing the `suppressed_b` property |
|
|
31
|
+
| princeton-child4.json | Child record for testing the `suppressed_b` property |
|
|
32
|
+
| princeton-parent.json | Parent record for testing the `suppressed_b` property |
|
|
33
|
+
| public_direct_download | includes a tentative `dcat_distribution_sm` property |
|
|
34
|
+
| public_iiif_princeton |Scanned map with IIIF|
|
|
35
|
+
| public_polygon_mit |Polygon shapefile with WMS and WFS|
|
|
36
|
+
| restricted-line |Restricted line layer with WFS, WMS and metadata in MODS and ISO 19139|
|
|
37
|
+
| umn_metro_result1.json |Bounding box of metropolitan area and ArcGIS Dynamic Map Layer|
|
|
38
|
+
| umn_state_result1.json |Bounding box of state area and static image in references|
|
|
39
|
+
| umn_state_result2.json |Bounding box of state area and raster download|
|
|
40
|
+
| uva_slug_colon.json | Multipoint dataset with WMS and WFS and a colon in the slug and layer ID |
|
|
@@ -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\"}",
|
|
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,37 @@
|
|
|
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": [
|
|
11
|
+
"Airports",
|
|
12
|
+
"Parks",
|
|
13
|
+
"Public spaces"
|
|
14
|
+
],
|
|
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"
|
|
25
|
+
],
|
|
26
|
+
"dct_temporal_sm": [
|
|
27
|
+
"2014"
|
|
28
|
+
],
|
|
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
|
|
37
|
+
}
|
|
@@ -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\"}",
|
|
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,38 @@
|
|
|
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": [
|
|
17
|
+
"Seafloor Mapping Lab"
|
|
18
|
+
],
|
|
19
|
+
"dc_subject_sm": [
|
|
20
|
+
"Continental margins",
|
|
21
|
+
"Multibeam mapping",
|
|
22
|
+
"Elevation",
|
|
23
|
+
"Imagery and Base Maps",
|
|
24
|
+
"Inland Waters"
|
|
25
|
+
],
|
|
26
|
+
"dct_issued_s": "2005",
|
|
27
|
+
"dct_temporal_sm": [
|
|
28
|
+
"2005"
|
|
29
|
+
],
|
|
30
|
+
"dct_spatial_sm": [
|
|
31
|
+
"Elkhorn Slough (Calif.)",
|
|
32
|
+
"Monterey Bay (Calif.)"
|
|
33
|
+
],
|
|
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"
|
|
38
|
+
}
|
|
@@ -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
|
+
}
|