geoblacklight 2.1.2 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +6 -0
- data/.gitignore +3 -1
- data/.rubocop.yml +3 -1
- data/.rubocop_todo.yml +7 -15
- data/README.md +5 -6
- 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 -37
- 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/modules/help_text.js +7 -0
- data/app/assets/javascripts/geoblacklight/modules/item.js +1 -3
- data/app/assets/javascripts/geoblacklight/viewers/oembed.js +13 -0
- data/app/assets/stylesheets/geoblacklight/_blacklight_overrides.scss +9 -1
- data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +49 -59
- data/app/assets/stylesheets/geoblacklight/modules/item.scss +4 -0
- data/app/assets/stylesheets/geoblacklight/modules/results.scss +22 -0
- data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +4 -0
- data/app/helpers/geoblacklight_helper.rb +91 -5
- data/app/models/concerns/geoblacklight/solr_document.rb +4 -0
- data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +5 -0
- data/app/views/catalog/_data_dictionary.html.erb +3 -2
- data/app/views/catalog/_document_action.html.erb +1 -1
- data/app/views/catalog/_exports.html.erb +2 -10
- data/app/views/catalog/_home_text.html.erb +4 -4
- data/app/views/catalog/_show_default_viewer_container.html.erb +5 -0
- data/app/views/catalog/_show_header_default.html.erb +2 -4
- data/app/views/relation/_ancestors.html.erb +2 -1
- data/app/views/relation/_descendants.html.erb +2 -1
- data/app/views/shared/_header_navbar.html.erb +2 -0
- data/config/locales/geoblacklight.en.yml +88 -0
- data/geoblacklight.gemspec +1 -0
- data/lib/generators/geoblacklight/templates/geoblacklight.js +1 -1
- data/lib/generators/geoblacklight/templates/settings.yml +19 -0
- data/lib/geoblacklight/constants.rb +3 -2
- data/lib/geoblacklight/item_viewer.rb +5 -1
- data/lib/geoblacklight/metadata/base.rb +15 -10
- data/lib/geoblacklight/reference.rb +2 -1
- data/lib/geoblacklight/version.rb +1 -1
- data/package.json +4 -0
- data/schema/references.md +2 -1
- data/spec/features/exports_spec.rb +9 -0
- data/spec/features/help_text_spec.rb +8 -0
- data/spec/features/metadata_panel_spec.rb +51 -8
- data/spec/features/oembed_spec.rb +9 -0
- data/spec/features/search_results_map_spec.rb +1 -1
- data/spec/features/split_view.html.erb_spec.rb +1 -1
- data/spec/features/suppressed_records_spec.rb +14 -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/iiif-eastern-hemisphere.json +1 -1
- data/spec/fixtures/solr_documents/oembed.json +24 -0
- data/spec/helpers/geoblacklight_helper_spec.rb +30 -7
- data/spec/javascripts/geoblacklight_spec.js +4 -0
- data/spec/javascripts/metadata_download_button_spec.js +1 -1
- data/spec/lib/geoblacklight/metadata/base_spec.rb +18 -4
- data/spec/lib/geoblacklight/reference_spec.rb +30 -0
- data/spec/models/concerns/geoblacklight/solr_document_spec.rb +20 -0
- data/spec/spec_helper.rb +8 -5
- data/vendor/assets/javascripts/readmore.js +618 -0
- data/vendor/assets/javascripts/readmore.js.map +1 -0
- metadata +96 -3
- data/vendor/assets/javascripts/readmore.min.js +0 -11
data/geoblacklight.gemspec
CHANGED
@@ -4,6 +4,12 @@ APPLICATION_LOGO_URL: 'http://geoblacklight.org/images/geoblacklight-logo.png'
|
|
4
4
|
# Carto OneClick Service https://carto.com/engine/open-in-carto/
|
5
5
|
CARTO_ONECLICK_LINK: 'http://oneclick.carto.com/'
|
6
6
|
|
7
|
+
# Hide Carto export link
|
8
|
+
# CARTO_HIDE: true
|
9
|
+
|
10
|
+
# Hide ArcGIS export link
|
11
|
+
# ARCGIS_HIDE: true
|
12
|
+
|
7
13
|
# ArcGIS Online Base URL
|
8
14
|
ARCGIS_BASE_URL: 'https://www.arcgis.com/home/webmap/viewer.html'
|
9
15
|
|
@@ -106,3 +112,16 @@ LEAFLET:
|
|
106
112
|
<<: *opacity_control
|
107
113
|
IMAGEMAPLAYER:
|
108
114
|
<<: *opacity_control
|
115
|
+
|
116
|
+
# Toggle the help text feature that offers users context
|
117
|
+
HELP_TEXT:
|
118
|
+
viewer_protocol:
|
119
|
+
- 'dynamic_map_layer'
|
120
|
+
- 'feature_layer'
|
121
|
+
- 'iiif'
|
122
|
+
- 'iiif_manifest'
|
123
|
+
- 'image_map_layer'
|
124
|
+
- 'index_map'
|
125
|
+
- 'tiled_map_layer'
|
126
|
+
- 'wms'
|
127
|
+
- 'oembed'
|
@@ -8,7 +8,7 @@ module Geoblacklight
|
|
8
8
|
html: 'http://www.w3.org/1999/xhtml',
|
9
9
|
iiif: 'http://iiif.io/api/image',
|
10
10
|
iiif_manifest: 'http://iiif.io/api/presentation#manifest',
|
11
|
-
iso19139: 'http://www.isotc211.org/schemas/2005/gmd
|
11
|
+
iso19139: 'http://www.isotc211.org/schemas/2005/gmd',
|
12
12
|
mods: 'http://www.loc.gov/mods/v3',
|
13
13
|
shapefile: 'http://www.esri.com/library/whitepapers/pdfs/shapefile.pdf',
|
14
14
|
url: 'http://schema.org/url',
|
@@ -21,7 +21,8 @@ module Geoblacklight
|
|
21
21
|
dynamic_map_layer: 'urn:x-esri:serviceType:ArcGIS#DynamicMapLayer',
|
22
22
|
image_map_layer: 'urn:x-esri:serviceType:ArcGIS#ImageMapLayer',
|
23
23
|
data_dictionary: 'http://lccn.loc.gov/sh85035852',
|
24
|
-
index_map: 'https://openindexmaps.org'
|
24
|
+
index_map: 'https://openindexmaps.org',
|
25
|
+
oembed: 'https://oembed.com'
|
25
26
|
}.freeze
|
26
27
|
end
|
27
28
|
end
|
@@ -42,8 +42,12 @@ module Geoblacklight
|
|
42
42
|
@references.index_map
|
43
43
|
end
|
44
44
|
|
45
|
+
def oembed
|
46
|
+
@references.oembed
|
47
|
+
end
|
48
|
+
|
45
49
|
def viewer_preference
|
46
|
-
[index_map, wms, iiif, tiled_map_layer, dynamic_map_layer,
|
50
|
+
[oembed, index_map, wms, iiif, tiled_map_layer, dynamic_map_layer,
|
47
51
|
image_map_layer, feature_layer].compact.map(&:to_hash).first
|
48
52
|
end
|
49
53
|
end
|
@@ -49,16 +49,21 @@ module Geoblacklight
|
|
49
49
|
conn.use FaradayMiddleware::FollowRedirects
|
50
50
|
conn.adapter Faraday.default_adapter
|
51
51
|
end
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
52
|
+
begin
|
53
|
+
response = connection.get
|
54
|
+
return response.body unless response.nil? || response.status == 404
|
55
|
+
Geoblacklight.logger.error "Could not reach #{@reference.endpoint}"
|
56
|
+
''
|
57
|
+
rescue Faraday::Error::ConnectionFailed => error
|
58
|
+
Geoblacklight.logger.error error.inspect
|
59
|
+
''
|
60
|
+
rescue Faraday::Error::TimeoutError => error
|
61
|
+
Geoblacklight.logger.error error.inspect
|
62
|
+
''
|
63
|
+
rescue OpenSSL::SSL::SSLError => error
|
64
|
+
Geoblacklight.logger.error error.inspect
|
65
|
+
''
|
66
|
+
end
|
62
67
|
end
|
63
68
|
|
64
69
|
##
|
data/package.json
ADDED
data/schema/references.md
CHANGED
@@ -11,7 +11,7 @@ Direct download file | `http://schema.org/downloadUrl` | Direct file download fe
|
|
11
11
|
Data dictionary / documentation download | `http://lccn.loc.gov/sh85035852` | Direct documentation download link|
|
12
12
|
Full layer description | `http://schema.org/url` | Further descriptive information about layer|
|
13
13
|
Metadata in ISO 19139 | `http://www.isotc211.org/schemas/2005/gmd/` | Structured metadata in ISO standard expressed as XML|
|
14
|
-
Metadata in FGDC | `http://www.opengis.net/cat/csw/csdgm
|
14
|
+
Metadata in FGDC | `http://www.opengis.net/cat/csw/csdgm` | Structured metadata in FGDC standard expressed as XML|
|
15
15
|
Metadata in MODS | `http://www.loc.gov/mods/v3` | Structured metadata in MODS format|
|
16
16
|
Metadata in HTML | `http://www.w3.org/1999/xhtml` | Structured metadata in any standard expressed as HTML|
|
17
17
|
ArcGIS FeatureLayer | `urn:x-esri:serviceType:ArcGIS#FeatureLayer` | Previewing of ArcGIS FeatureLayer Service|
|
@@ -20,3 +20,4 @@ ArcGIS DynamicMapLayer | `urn:x-esri:serviceType:ArcGIS#DynamicMapLayer` | Previ
|
|
20
20
|
ArcGIS ImageMapLayer | `urn:x-esri:serviceType:ArcGIS#ImageMapLayer` | Previewing of ArcGIS ImageMapLayer Service|
|
21
21
|
Harvard Geospatial Library Email Download | `http://schema.org/DownloadAction` | Retrieve a file via email from the Harvard Geospatial Library|
|
22
22
|
OpenIndexMap | `https://openindexmaps.org` | Provide an index map preview|
|
23
|
+
oEmbed | `https://oembed.com` | Provide an object that is embeddable through an oEmbed service
|
@@ -24,4 +24,13 @@ feature 'Export features' do
|
|
24
24
|
expect(page).not_to have_css 'li.exports a', text: 'Open in Carto'
|
25
25
|
end
|
26
26
|
end
|
27
|
+
context 'when carto is configured not to display' do
|
28
|
+
before do
|
29
|
+
allow(Settings).to receive(:CARTO_HIDE).and_return(true)
|
30
|
+
end
|
31
|
+
it 'will not display the carto link' do
|
32
|
+
visit solr_document_path 'tufts-cambridgegrid100-04'
|
33
|
+
expect(page).not_to have_css 'li.exports a', text: 'Open in Carto'
|
34
|
+
end
|
35
|
+
end
|
27
36
|
end
|
@@ -2,6 +2,35 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
feature 'Metadata tools' do
|
4
4
|
feature 'when metadata references are available', js: :true do
|
5
|
+
let(:iso19139) { File.read(Rails.root.join('..', 'spec', 'fixtures', 'iso19139', 'stanford-cg357zz0321.xml')) }
|
6
|
+
let(:fgdc) { File.read(Rails.root.join('..', 'spec', 'fixtures', 'fgdc', 'harvard-g7064-s2-1834-k3.xml')) }
|
7
|
+
let(:mods) { File.read(Rails.root.join('..', 'spec', 'fixtures', 'mods', 'stanford-cg357zz0321.mods')) }
|
8
|
+
let(:fgdc_response) { instance_double(Faraday::Response) }
|
9
|
+
let(:fgdc_connection) { instance_double(Faraday::Connection) }
|
10
|
+
let(:iso19139_response) { instance_double(Faraday::Response) }
|
11
|
+
let(:iso19139_connection) { instance_double(Faraday::Connection) }
|
12
|
+
let(:response) { instance_double(Faraday::Response) }
|
13
|
+
let(:connection) { instance_double(Faraday::Connection) }
|
14
|
+
|
15
|
+
before do
|
16
|
+
allow(iso19139_response).to receive(:body).and_return(iso19139)
|
17
|
+
allow(iso19139_response).to receive(:status).and_return(200)
|
18
|
+
allow(iso19139_connection).to receive(:get).and_return(iso19139_response)
|
19
|
+
allow(Faraday).to receive(:new).with(url: 'https://raw.githubusercontent.com/OpenGeoMetadata/edu.stanford.purl/master/cg/357/zz/0321/iso19139.xml').and_return(iso19139_connection)
|
20
|
+
|
21
|
+
allow(fgdc_response).to receive(:body).and_return(fgdc)
|
22
|
+
allow(fgdc_response).to receive(:status).and_return(200)
|
23
|
+
allow(fgdc_connection).to receive(:get).and_return(fgdc_response)
|
24
|
+
allow(Faraday).to receive(:new).with(url: 'https://raw.githubusercontent.com/OpenGeoMetadata/edu.harvard/master/217/121/227/77/fgdc.xml').and_return(fgdc_connection)
|
25
|
+
|
26
|
+
allow(response).to receive(:body).and_return(mods)
|
27
|
+
allow(response).to receive(:status).and_return(200)
|
28
|
+
allow(connection).to receive(:get).and_return(response)
|
29
|
+
allow(Faraday).to receive(:new).with(url: 'http://purl.stanford.edu/cg357zz0321.mods').and_return(connection)
|
30
|
+
|
31
|
+
allow(Faraday).to receive(:new).with(hash_including(url: 'http://127.0.0.1:8983/solr/blacklight-core/')).and_call_original
|
32
|
+
end
|
33
|
+
|
5
34
|
scenario 'shows up as HTML' do
|
6
35
|
visit solr_document_path 'harvard-g7064-s2-1834-k3'
|
7
36
|
expect(page).to have_css 'li.metadata a', text: 'Metadata'
|
@@ -14,14 +43,28 @@ feature 'Metadata tools' do
|
|
14
43
|
end
|
15
44
|
end
|
16
45
|
end
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
46
|
+
context 'when the metadata is in the XML' do
|
47
|
+
let(:mods) { File.read(Rails.root.join('..', 'spec', 'fixtures', 'mods', 'fb897vt9938.mods')) }
|
48
|
+
let(:response) { instance_double(Faraday::Response) }
|
49
|
+
let(:connection) { instance_double(Faraday::Connection) }
|
50
|
+
|
51
|
+
before do
|
52
|
+
allow(response).to receive(:body).and_return(mods)
|
53
|
+
allow(response).to receive(:status).and_return(200)
|
54
|
+
allow(connection).to receive(:get).and_return(response)
|
55
|
+
allow(Faraday).to receive(:new).with(url: 'http://purl.stanford.edu/fb897vt9938.mods').and_return(connection)
|
56
|
+
allow(Faraday).to receive(:new).and_call_original
|
57
|
+
end
|
58
|
+
|
59
|
+
scenario 'shows up as XML' do
|
60
|
+
visit solr_document_path 'stanford-cg357zz0321'
|
61
|
+
expect(page).to have_css 'li.metadata a', text: 'Metadata'
|
62
|
+
click_link 'Metadata'
|
63
|
+
using_wait_time 15 do
|
64
|
+
within '.metadata-view' do
|
65
|
+
expect(page).to have_css '.pill-metadata', text: 'MODS'
|
66
|
+
expect(page).to have_css '.CodeRay'
|
67
|
+
end
|
25
68
|
end
|
26
69
|
end
|
27
70
|
end
|
@@ -21,7 +21,7 @@ feature 'search results map', js: true do
|
|
21
21
|
# "-101.90917968749999,38.75408327579141,-83.27636718749999,53.27835301753182"
|
22
22
|
left, bottom, right, top = bbox.split(',')
|
23
23
|
expect(left.to_f).to be_within(2).of(-101)
|
24
|
-
expect(bottom.to_f).to be_within(
|
24
|
+
expect(bottom.to_f).to be_within(3).of(38)
|
25
25
|
expect(right.to_f).to be_within(2).of(-83)
|
26
26
|
expect(top.to_f).to be_within(2).of(53)
|
27
27
|
end
|
@@ -9,7 +9,7 @@ feature 'Index view', js: true do
|
|
9
9
|
scenario 'should have documents and map on page' do
|
10
10
|
visit search_catalog_path(f: { Settings.FIELDS.PROVENANCE => ['Stanford'] })
|
11
11
|
expect(page).to have_css('#documents')
|
12
|
-
expect(page).to have_css('.document', count:
|
12
|
+
expect(page).to have_css('.document', count: 5)
|
13
13
|
expect(page).to have_css('#map')
|
14
14
|
end
|
15
15
|
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
feature 'Suppressed records' do
|
4
|
+
scenario 'are viewable' do
|
5
|
+
visit solr_document_path 'princeton-jq085m62x'
|
6
|
+
expect(page).to have_css('#document')
|
7
|
+
end
|
8
|
+
|
9
|
+
scenario 'are exportable' do
|
10
|
+
visit solr_document_path 'princeton-jq085m62x'
|
11
|
+
click_link 'Web services'
|
12
|
+
expect(page).to have_css 'h1.modal-title', text: 'Web services'
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?><!DOCTYPE metadata SYSTEM "http://www.fgdc.gov/metadata/fgdc-std-001-1998.dtd"><metadata> <idinfo> <citation> <citeinfo> <origin>Harvard Map Collection, Harvard College Library</origin> <pubdate>200903</pubdate> <title>Saint Petersburg Region, Russia, 1834 (Raster Image)</title> <geoform>map</geoform> <pubinfo> <pubplace>Cambridge, Massachusetts</pubplace> <publish>Harvard Map Collection, Harvard College Library</publish> </pubinfo> <onlink>http://hgl.harvard.edu:8080/HGL/jsp/HGL.jsp?action=VColl&VCollName=G7064_S2_1834_K3</onlink> </citeinfo> </citation> <descript> <abstract>This layer is a georeferenced raster image of the historic paper map entitled: [Karta mesta zanimaemago Sanktpeterburgom : v tom vide v kakom onoe nakhodilos' za god do osnovaniia goroda; sostavlena dlia panoramy S. Peterburga, 1834]. It was published in 1834. Scale [ca. 1:76,000]. Covers Saint Petersburg Region, Russia. Map in Russian and Swedish.The image inside the map neatline is georeferenced to the surface of the earth and fit to the 'Pulkovo 1995 Gauss Kruger Zone 6N' coordinate system. All map collar and inset information is also available as part of the raster image, including any inset maps, profiles, statistical tables, directories, text, illustrations, index maps, legends, or other information associated with the principal map.This map shows features such as roads, drainage, built-up areas and selected buildings, ground cover, and more. Relief is shown by hachures. Depths shown by soundings. Includes insets: [Retusari island] -- [Sluselberg]. This layer is part of a selection of digitally scanned and georeferenced historic maps from The Harvard Map Collection as part of the Imaging the Urban Environment project. Maps selected for this project represent major urban areas and cities of the world, at various time periods. These maps typically portray both natural and manmade features at a large scale. The selection represents a range of regions, originators, ground condition dates, scales, and purposes.</abstract> <purpose>Historic paper maps can provide an excellent view of the changes that have occurred in the cultural and physical landscape. The wide range of information provided on these maps make them useful in the study of historic geography, and urban and rural land use change. As this map has been georeferenced, it can be used in a GIS as a source or background layer in conjunction with other GIS data.</purpose> </descript> <timeperd> <timeinfo> <sngdate> <caldate>1834</caldate> </sngdate> </timeinfo> <current>source map publication date</current> </timeperd> <status> <progress>Complete</progress> <update>None planned</update> </status> <spdom> <bounding> <westbc>30.013108</westbc> <eastbc>30.875309</eastbc> <northbc>60.041712</northbc> <southbc>59.669749</southbc> </bounding> </spdom> <keywords> <theme> <themekt>LCSH</themekt> <themekey>Maps</themekey> <themekey>Human settlements</themekey> <themekey>Cities and towns</themekey> <themekey>Land use</themekey> <themekey>Landforms</themekey> <themekey>Infrastructure (Economics)</themekey> <themekey>Transportation</themekey> <themekey>Bodies of water</themekey> </theme> <theme> <themekt>ISO 19115 Topic Category</themekt> <themekey>imageryBaseMapsEarthCover</themekey> </theme> <place> <placekt>GNS (NIMA)</placekt> <placekey>Russia</placekey> <placekey>Saint Petersburg</placekey> </place> </keywords> <accconst>None</accconst> <useconst>For educational, non-commercial use only.</useconst> <ptcontac> <cntinfo> <cntorgp> <cntorg>Harvard Map Collection, Harvard College Library</cntorg> </cntorgp> <cntpos>Harvard Geospatial Library</cntpos> <cntaddr> <addrtype>mailing and physical address</addrtype> <address>Harvard Map Collection</address> <address>Pusey Library</address> <address>Harvard University</address> <city>Cambridge</city> <state>MA</state> <postal>02138</postal> <country>USA</country> </cntaddr> <cntvoice>617-495-2417</cntvoice> <cntfax>617-496-0440</cntfax> <cntemail>hgl_ref@hulmail.harvard.edu</cntemail> <hours>Monday - Friday, 9:00 am - 4:00 pm EST-USA</hours> </cntinfo> </ptcontac> <native>ESRI ArcGIS 9.2</native> </idinfo> <dataqual> <attracc> <attraccr>The georeferenced raster is a faithfully reproduced digital image of the original source map. Some differences may be detected between the source graphic used and the raster image due to the RGB values assigned that particular color. The intent is to recreate those colors as near as possible.</attraccr> </attracc> <complete>Data completeness for raster digital image files reflect content of the source graphic. Features may have been eliminated or generalized on the source graphic due to scale and legibility constraints</complete> <posacc> <horizpa> <horizpar>The horizontal positional accuracy of a raster image is approximately the same as the accuracy of the published source map. The lack of a greater accuracy is largely the result of the inaccuracies with the original measurements and possible distortions in the original paper map document. There may also be errors introduced during the digitizing and georeferencing process. For instance, this raster image was georeferenced to another georeferenced image, which may have its own positional inaccuracies (see "Process Steps"). In most cases, however, errors in the raster image are small compared with sources of error in the original map graphic. The RMS error for this map is 211.03295 meters. This value describes how consistent the transformation is between the different control points (links). The RMS error is only an assessment of the accuracy of the transformation.</horizpar> </horizpa> </posacc> <lineage> <srcinfo> <srccite> <citeinfo> <pubdate>1834</pubdate> <title>[Karta mesta zanimaemago Sanktpeterburgom : v tom vide v kakom onoe nakhodilos' za god do osnovaniia goroda; sostavlena dlia panoramy S. Peterburga, 1834].</title> <geoform>map</geoform> <pubinfo> <pubplace>S.l.</pubplace> <publish>s.n.</publish> </pubinfo> <othercit>1 map ; 44 x 50 cm.</othercit> </citeinfo> </srccite> <srcscale>76000</srcscale> <typesrc>paper</typesrc> <srctime> <timeinfo> <sngdate> <caldate>1834</caldate> </sngdate> </timeinfo> <srccurr>publication date</srccurr> </srctime> <srccitea>Paper Map</srccitea> <srccontr>Source map for raster image</srccontr> </srcinfo> <procstep> <procdesc>Production of this raster image began with the scanning of the paper map on a high-resolution scanner: (Betterlight, Super8K2 scanning back camera and ViewFinder 5.x capture software). Maps were photographed at a copy stand. A vacuum easel was used to keep the maps flat during photography. The imaging specification was designed to produce detailed "Archival Master" images that, to the extent possible, are faithful reproductions of the originals, and that allow for highly detailed screen reproduction and print reproduction at up 1:1. Images in this collection were processed using Adobe Photoshop. Color and tonal corrections were made using Adobe Photoshop. Image files were viewed on a calibrated monitor. Editing was performed in an ISO 3664 compliant proofing environment. Master Image files were corrected and archived as TIFF files in the sRGB IEC611966-2.1 color-space. When possible files were batch processed using an "action" script derived from edits applied to match a representative sample.</procdesc> <srcused>Paper Map</srcused> <procdate>2007-2008</procdate> <srcprod>TIFF Map Image</srcprod> <proccont> <cntinfo> <cntorgp> <cntorg>Harvard College Library</cntorg> </cntorgp> <cntpos>Digital Imaging and Photography Group</cntpos> <cntaddr> <addrtype>mailing and physical address</addrtype> <address>D-Level, Room D-30</address> <address>Widener Library</address> <city>Cambridge</city> <state>MA</state> <postal>02138</postal> <country>USA</country> </cntaddr> <cntvoice>617-495-2030</cntvoice> </cntinfo> </proccont> </procstep> <procstep> <procdesc>Using ArcMap 9.2 software, the digital TIFF image was georeferenced to common points located on the following scanned, georeferenced paper map: Leningrad (1:35,000) published by the U.S. Central Intelligence Agency in 1956. This map was scanned at 300 dpi and then georeferenced to four sets of UTM coordinates (closest to the corners) in the 'European Datum 1950 UTM Zone 36N' coordinate system with an RMS error of 10.49738 meters. The digital TIFF image was georeferenced to the above-listed map using the 'Pulkovo 1995 Gauss Kruger Zone 6N' coordinate system. In addition to the above-listed map, this TIFF image was also georeferenced to points located on the following digital vector file: ESRI Data and Maps 2006 Europe Major Rivers (1:25,000), and to the following previously georeferenced digital image: "Plan Kronshtatsko bukhty s S. Peterburgom" published in 1855 (georeferenced by the Harvard Map Collection with a resulting RMS error of 175.44826. A world file (.tfwx) and an .aux.xml file were automatically generated and saved in association with the digital TIFF image. See 'Horizontal Accuracy' for the RMS error of this TIFF image. Please note that the projection will need to be defined by the user in order to display the image with other projected data and the world file will need to be stored in the same root directory as the image.</procdesc> <srcused>TIFF Map Image</srcused> <procdate>2008</procdate> <srcprod>Georeferenced Raster Data</srcprod> <proccont> <cntinfo> <cntorgp> <cntorg>Harvard Geospatial Library</cntorg> </cntorgp> <cntpos>GIS Technician</cntpos> <cntaddr> <addrtype>mailing and physical address</addrtype> <address>Harvard University Library</address> <address>Office for Information Systems</address> <address>90 Mount Auburn Street</address> <city>Cambridge</city> <state>MA</state> <postal>02138</postal> <country>USA</country> </cntaddr> <cntvoice>617-495-2417</cntvoice> <cntfax>617-496-0440</cntfax> <cntemail>hgl_ref@hulmail.harvard.edu</cntemail> <hours>Monday - Friday, 9:00 am - 4:00 pm EST-USA</hours> </cntinfo> </proccont> </procstep> </lineage> </dataqual> <spdoinfo> <direct>Raster</direct> <rastinfo> <rasttype>Pixel</rasttype> <rowcount>5826</rowcount> <colcount>7046</colcount> <vrtcount>1</vrtcount> </rastinfo> </spdoinfo> <spref> <horizsys> <planar> <mapproj> <mapprojn>Transverse Mercator</mapprojn> <transmer> <sfctrmer>1.000000</sfctrmer> <longcm>33.000000</longcm> <latprjo>0.000000</latprjo> <feast>500000.000000</feast> <fnorth>0.000000</fnorth> </transmer> </mapproj> <planci> <plance>row and column</plance> <coordrep> <absres>6.647349</absres> <ordres>6.810329</ordres> </coordrep> <plandu>meters</plandu> </planci> </planar> <geodetic> <horizdn>D_Pulkovo_1995</horizdn> <ellips>Krasovsky_1940</ellips> <semiaxis>6378245.000000</semiaxis> <denflat>298.300000</denflat> </geodetic> </horizsys> </spref> <eainfo> <overview> <eaover>The indexes reference a color palette of RGB values from 0 through 255, representing the color value from the original paper sheet map. The colors on that sheet can represent relief, drainage, vegetation, populated places, cultural features, coastal hydrography, transportation features (roads, railroads, tracks and trails), spot elevations and boundaries. The colors are sometimes explained in a legend that is incorporated into the map inset or collar.</eaover> <eadetcit>Not applicable.</eadetcit> </overview> </eainfo> <distinfo> <distrib> <cntinfo> <cntorgp> <cntorg>Harvard University Library</cntorg> </cntorgp> <cntpos>Harvard Geospatial Library</cntpos> <cntaddr> <addrtype>mailing and physical address</addrtype> <address>Office For Information Systems</address> <address>90 Mount Auburn Street</address> <city>Cambridge</city> <state>MA</state> <postal>02138</postal> <country>USA</country> </cntaddr> <cntvoice>617-495-2417</cntvoice> <cntfax>617-496-0440</cntfax> <cntemail>hgl_ref@hulmail.harvard.edu</cntemail> <hours>Monday - Friday, 9:00 am - 4:00 pm EST-USA</hours> </cntinfo> </distrib> <resdesc>Downloadable Data</resdesc> <distliab>Although this data set has been developed by Harvard University, no warranty expressed or implied is made by the University as to the accuracy of the data and related materials. The act of distribution shall not constitute any such warranty, and no responsibility is assumed by the University in the use of this data, or related materials.</distliab> <stdorder> <digform> <digtinfo> <formname>TIFF</formname> <filedec>ZIP</filedec> </digtinfo> <digtopt> <onlinopt> <computer> <networka> <networkr>http://hgl.harvard.edu/</networkr> </networka> </computer> </onlinopt> </digtopt> </digform> <fees>None</fees> </stdorder> </distinfo> <metainfo> <metd>20090312</metd> <metc> <cntinfo> <cntorgp> <cntorg>Harvard Geospatial Library</cntorg> </cntorgp> <cntpos>Geospatial Resources Cataloger</cntpos> <cntaddr> <addrtype>mailing and physical address</addrtype> <address>Harvard University Library</address> <address>Office For Information Systems</address> <address>90 Mount Auburn Street</address> <city>Cambridge</city> <state>MA</state> <postal>02138</postal> <country>USA</country> </cntaddr> <cntvoice>617-495-2417</cntvoice> <cntfax>617-496-0440</cntfax> <cntemail>hgl_ref@hulmail.harvard.edu</cntemail> <hours>Monday - Friday, 9:00 am - 4:00 pm EST-USA</hours> </cntinfo> </metc> <metstdn>FGDC Content Standards for Digital Geospatial Metadata</metstdn> <metstdv>FGDC-STD-001-1998</metstdv> <mettc>local time</mettc> </metainfo></metadata>
|
@@ -0,0 +1,581 @@
|
|
1
|
+
<MD_Metadata xmlns="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
2
|
+
<fileIdentifier>
|
3
|
+
<gco:CharacterString>edu.stanford.purl:cg357zz0321</gco:CharacterString>
|
4
|
+
</fileIdentifier>
|
5
|
+
<language>
|
6
|
+
<LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
|
7
|
+
</language>
|
8
|
+
<characterSet>
|
9
|
+
<MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</MD_CharacterSetCode>
|
10
|
+
</characterSet>
|
11
|
+
<parentIdentifier>
|
12
|
+
<gco:CharacterString>http://purl.stanford.edu/zt526qk7324.mods</gco:CharacterString>
|
13
|
+
</parentIdentifier>
|
14
|
+
<hierarchyLevel>
|
15
|
+
<MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</MD_ScopeCode>
|
16
|
+
</hierarchyLevel>
|
17
|
+
<hierarchyLevelName>
|
18
|
+
<gco:CharacterString>dataset</gco:CharacterString>
|
19
|
+
</hierarchyLevelName>
|
20
|
+
<contact>
|
21
|
+
<CI_ResponsibleParty>
|
22
|
+
<organisationName>
|
23
|
+
<gco:CharacterString>Stanford Geospatial Center</gco:CharacterString>
|
24
|
+
</organisationName>
|
25
|
+
<contactInfo>
|
26
|
+
<CI_Contact>
|
27
|
+
<phone>
|
28
|
+
<CI_Telephone>
|
29
|
+
<voice>
|
30
|
+
<gco:CharacterString>650-723-2746</gco:CharacterString>
|
31
|
+
</voice>
|
32
|
+
</CI_Telephone>
|
33
|
+
</phone>
|
34
|
+
<address>
|
35
|
+
<CI_Address>
|
36
|
+
<deliveryPoint>
|
37
|
+
<gco:CharacterString>Mitchell Bldg. 2nd floor</gco:CharacterString>
|
38
|
+
</deliveryPoint>
|
39
|
+
<deliveryPoint>
|
40
|
+
<gco:CharacterString>397 Panama Mall</gco:CharacterString>
|
41
|
+
</deliveryPoint>
|
42
|
+
<city>
|
43
|
+
<gco:CharacterString>Stanford</gco:CharacterString>
|
44
|
+
</city>
|
45
|
+
<administrativeArea>
|
46
|
+
<gco:CharacterString>California</gco:CharacterString>
|
47
|
+
</administrativeArea>
|
48
|
+
<postalCode>
|
49
|
+
<gco:CharacterString>94305</gco:CharacterString>
|
50
|
+
</postalCode>
|
51
|
+
<country>
|
52
|
+
<gco:CharacterString>US</gco:CharacterString>
|
53
|
+
</country>
|
54
|
+
<electronicMailAddress>
|
55
|
+
<gco:CharacterString>brannerlibrary@stanford.edu</gco:CharacterString>
|
56
|
+
</electronicMailAddress>
|
57
|
+
</CI_Address>
|
58
|
+
</address>
|
59
|
+
</CI_Contact>
|
60
|
+
</contactInfo>
|
61
|
+
<role>
|
62
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</CI_RoleCode>
|
63
|
+
</role>
|
64
|
+
</CI_ResponsibleParty>
|
65
|
+
</contact>
|
66
|
+
<dateStamp>
|
67
|
+
<gco:Date>2014-10-08</gco:Date>
|
68
|
+
</dateStamp>
|
69
|
+
<metadataStandardName>
|
70
|
+
<gco:CharacterString>ISO 19139 Geographic Information - Metadata - Implementation Specification</gco:CharacterString>
|
71
|
+
</metadataStandardName>
|
72
|
+
<metadataStandardVersion>
|
73
|
+
<gco:CharacterString>2007</gco:CharacterString>
|
74
|
+
</metadataStandardVersion>
|
75
|
+
<dataSetURI>
|
76
|
+
<gco:CharacterString>http://purl.stanford.edu/cg357zz0321</gco:CharacterString>
|
77
|
+
</dataSetURI>
|
78
|
+
<spatialRepresentationInfo>
|
79
|
+
<MD_VectorSpatialRepresentation>
|
80
|
+
<topologyLevel>
|
81
|
+
<MD_TopologyLevelCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly" codeSpace="ISOTC211/19115">geometryOnly</MD_TopologyLevelCode>
|
82
|
+
</topologyLevel>
|
83
|
+
<geometricObjects>
|
84
|
+
<MD_GeometricObjects>
|
85
|
+
<geometricObjectType>
|
86
|
+
<MD_GeometricObjectTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="composite" codeSpace="ISOTC211/19115">composite</MD_GeometricObjectTypeCode>
|
87
|
+
</geometricObjectType>
|
88
|
+
<geometricObjectCount>
|
89
|
+
<gco:Integer>4417</gco:Integer>
|
90
|
+
</geometricObjectCount>
|
91
|
+
</MD_GeometricObjects>
|
92
|
+
</geometricObjects>
|
93
|
+
</MD_VectorSpatialRepresentation>
|
94
|
+
</spatialRepresentationInfo>
|
95
|
+
<referenceSystemInfo>
|
96
|
+
<MD_ReferenceSystem>
|
97
|
+
<referenceSystemIdentifier>
|
98
|
+
<RS_Identifier>
|
99
|
+
<code>
|
100
|
+
<gco:CharacterString>26910</gco:CharacterString>
|
101
|
+
</code>
|
102
|
+
<codeSpace>
|
103
|
+
<gco:CharacterString>EPSG</gco:CharacterString>
|
104
|
+
</codeSpace>
|
105
|
+
<version>
|
106
|
+
<gco:CharacterString>7.9.4</gco:CharacterString>
|
107
|
+
</version>
|
108
|
+
</RS_Identifier>
|
109
|
+
</referenceSystemIdentifier>
|
110
|
+
</MD_ReferenceSystem>
|
111
|
+
</referenceSystemInfo>
|
112
|
+
<identificationInfo>
|
113
|
+
<MD_DataIdentification>
|
114
|
+
<citation>
|
115
|
+
<CI_Citation>
|
116
|
+
<title>
|
117
|
+
<gco:CharacterString>10 Meter Contours: Russian River Basin, California</gco:CharacterString>
|
118
|
+
</title>
|
119
|
+
<date>
|
120
|
+
<CI_Date>
|
121
|
+
<date>
|
122
|
+
<gco:Date>2002-09-01</gco:Date>
|
123
|
+
</date>
|
124
|
+
<dateType>
|
125
|
+
<CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
|
126
|
+
</dateType>
|
127
|
+
</CI_Date>
|
128
|
+
</date>
|
129
|
+
<identifier>
|
130
|
+
<MD_Identifier>
|
131
|
+
<code>
|
132
|
+
<gco:CharacterString>http://purl.stanford.edu/cg357zz0321</gco:CharacterString>
|
133
|
+
</code>
|
134
|
+
</MD_Identifier>
|
135
|
+
</identifier>
|
136
|
+
<citedResponsibleParty>
|
137
|
+
<CI_ResponsibleParty>
|
138
|
+
<organisationName>
|
139
|
+
<gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
|
140
|
+
</organisationName>
|
141
|
+
<contactInfo>
|
142
|
+
<CI_Contact>
|
143
|
+
<address>
|
144
|
+
<CI_Address>
|
145
|
+
<city>
|
146
|
+
<gco:CharacterString>Windsor</gco:CharacterString>
|
147
|
+
</city>
|
148
|
+
<administrativeArea>
|
149
|
+
<gco:CharacterString>California</gco:CharacterString>
|
150
|
+
</administrativeArea>
|
151
|
+
<country>
|
152
|
+
<gco:CharacterString>US</gco:CharacterString>
|
153
|
+
</country>
|
154
|
+
</CI_Address>
|
155
|
+
</address>
|
156
|
+
</CI_Contact>
|
157
|
+
</contactInfo>
|
158
|
+
<role>
|
159
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</CI_RoleCode>
|
160
|
+
</role>
|
161
|
+
</CI_ResponsibleParty>
|
162
|
+
</citedResponsibleParty>
|
163
|
+
<citedResponsibleParty>
|
164
|
+
<CI_ResponsibleParty>
|
165
|
+
<organisationName>
|
166
|
+
<gco:CharacterString>United States. National Oceanic and Atmospheric Administration</gco:CharacterString>
|
167
|
+
</organisationName>
|
168
|
+
<role>
|
169
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
|
170
|
+
</role>
|
171
|
+
</CI_ResponsibleParty>
|
172
|
+
</citedResponsibleParty>
|
173
|
+
<citedResponsibleParty>
|
174
|
+
<CI_ResponsibleParty>
|
175
|
+
<organisationName>
|
176
|
+
<gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
|
177
|
+
</organisationName>
|
178
|
+
<role>
|
179
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
|
180
|
+
</role>
|
181
|
+
</CI_ResponsibleParty>
|
182
|
+
</citedResponsibleParty>
|
183
|
+
<presentationForm>
|
184
|
+
<CI_PresentationFormCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_PresentationFormCode" codeListValue="mapDigital" codeSpace="ISOTC211/19115">mapDigital</CI_PresentationFormCode>
|
185
|
+
</presentationForm>
|
186
|
+
<collectiveTitle>
|
187
|
+
<gco:CharacterString>Russian River Watershed GIS</gco:CharacterString>
|
188
|
+
</collectiveTitle>
|
189
|
+
</CI_Citation>
|
190
|
+
</citation>
|
191
|
+
<abstract>
|
192
|
+
<gco:CharacterString>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.</gco:CharacterString>
|
193
|
+
</abstract>
|
194
|
+
<purpose>
|
195
|
+
<gco:CharacterString>This layer can be used for watershed analysis and planning in the Russian River region of California.</gco:CharacterString>
|
196
|
+
</purpose>
|
197
|
+
<credit>
|
198
|
+
<gco:CharacterString>Circuit Rider Productions and National Oceanic and Atmospheric Administration (2002) 10 Meter Contours: Russian River Basin, California. Circuit Rider Productions.</gco:CharacterString>
|
199
|
+
</credit>
|
200
|
+
<status>
|
201
|
+
<MD_ProgressCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed" codeSpace="ISOTC211/19115">completed</MD_ProgressCode>
|
202
|
+
</status>
|
203
|
+
<pointOfContact>
|
204
|
+
<CI_ResponsibleParty>
|
205
|
+
<organisationName>
|
206
|
+
<gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
|
207
|
+
</organisationName>
|
208
|
+
<contactInfo>
|
209
|
+
<CI_Contact>
|
210
|
+
<phone>
|
211
|
+
<CI_Telephone>
|
212
|
+
<voice>
|
213
|
+
<gco:CharacterString>Sonoma and Mendocino Counties</gco:CharacterString>
|
214
|
+
</voice>
|
215
|
+
</CI_Telephone>
|
216
|
+
</phone>
|
217
|
+
<address>
|
218
|
+
<CI_Address>
|
219
|
+
<city>
|
220
|
+
<gco:CharacterString>Windsor</gco:CharacterString>
|
221
|
+
</city>
|
222
|
+
<administrativeArea>
|
223
|
+
<gco:CharacterString>California</gco:CharacterString>
|
224
|
+
</administrativeArea>
|
225
|
+
<country>
|
226
|
+
<gco:CharacterString>US</gco:CharacterString>
|
227
|
+
</country>
|
228
|
+
</CI_Address>
|
229
|
+
</address>
|
230
|
+
</CI_Contact>
|
231
|
+
</contactInfo>
|
232
|
+
<role>
|
233
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</CI_RoleCode>
|
234
|
+
</role>
|
235
|
+
</CI_ResponsibleParty>
|
236
|
+
</pointOfContact>
|
237
|
+
<resourceMaintenance>
|
238
|
+
<MD_MaintenanceInformation>
|
239
|
+
<maintenanceAndUpdateFrequency>
|
240
|
+
<MD_MaintenanceFrequencyCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded" codeSpace="ISOTC211/19115">asNeeded</MD_MaintenanceFrequencyCode>
|
241
|
+
</maintenanceAndUpdateFrequency>
|
242
|
+
</MD_MaintenanceInformation>
|
243
|
+
</resourceMaintenance>
|
244
|
+
<descriptiveKeywords>
|
245
|
+
<MD_Keywords>
|
246
|
+
<keyword>
|
247
|
+
<gco:CharacterString>Sonoma County (Calif.)</gco:CharacterString>
|
248
|
+
</keyword>
|
249
|
+
<keyword>
|
250
|
+
<gco:CharacterString>Mendocino County (Calif.)</gco:CharacterString>
|
251
|
+
</keyword>
|
252
|
+
<type>
|
253
|
+
<MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</MD_KeywordTypeCode>
|
254
|
+
</type>
|
255
|
+
</MD_Keywords>
|
256
|
+
</descriptiveKeywords>
|
257
|
+
<descriptiveKeywords>
|
258
|
+
<MD_Keywords>
|
259
|
+
<keyword>
|
260
|
+
<gco:CharacterString>2002</gco:CharacterString>
|
261
|
+
</keyword>
|
262
|
+
<type>
|
263
|
+
<MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="temporal" codeSpace="ISOTC211/19115">temporal</MD_KeywordTypeCode>
|
264
|
+
</type>
|
265
|
+
</MD_Keywords>
|
266
|
+
</descriptiveKeywords>
|
267
|
+
<descriptiveKeywords>
|
268
|
+
<MD_Keywords>
|
269
|
+
<keyword>
|
270
|
+
<gco:CharacterString>Contours (Cartography)</gco:CharacterString>
|
271
|
+
</keyword>
|
272
|
+
<type>
|
273
|
+
<MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</MD_KeywordTypeCode>
|
274
|
+
</type>
|
275
|
+
<thesaurusName>
|
276
|
+
<CI_Citation>
|
277
|
+
<title>
|
278
|
+
<gco:CharacterString>lcsh</gco:CharacterString>
|
279
|
+
</title>
|
280
|
+
<date>
|
281
|
+
<CI_Date>
|
282
|
+
<date>
|
283
|
+
<gco:Date>2011-04-26</gco:Date>
|
284
|
+
</date>
|
285
|
+
<dateType>
|
286
|
+
<CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision" codeSpace="ISOTC211/19115">revision</CI_DateTypeCode>
|
287
|
+
</dateType>
|
288
|
+
</CI_Date>
|
289
|
+
</date>
|
290
|
+
</CI_Citation>
|
291
|
+
</thesaurusName>
|
292
|
+
</MD_Keywords>
|
293
|
+
</descriptiveKeywords>
|
294
|
+
<descriptiveKeywords>
|
295
|
+
<MD_Keywords>
|
296
|
+
<keyword>
|
297
|
+
<gco:CharacterString>Downloadable Data</gco:CharacterString>
|
298
|
+
</keyword>
|
299
|
+
<thesaurusName uuidref="723f6998-058e-11dc-8314-0800200c9a66"/>
|
300
|
+
</MD_Keywords>
|
301
|
+
</descriptiveKeywords>
|
302
|
+
<resourceConstraints>
|
303
|
+
<MD_LegalConstraints>
|
304
|
+
<useLimitation>
|
305
|
+
<gco:CharacterString>No restrictions on access or use.</gco:CharacterString>
|
306
|
+
</useLimitation>
|
307
|
+
</MD_LegalConstraints>
|
308
|
+
</resourceConstraints>
|
309
|
+
<aggregationInfo>
|
310
|
+
<MD_AggregateInformation>
|
311
|
+
<aggregateDataSetName>
|
312
|
+
<CI_Citation>
|
313
|
+
<title>
|
314
|
+
<gco:CharacterString>Russian River Watershed GIS</gco:CharacterString>
|
315
|
+
</title>
|
316
|
+
<date>
|
317
|
+
<CI_Date>
|
318
|
+
<date>
|
319
|
+
<gco:Date>2002-10-24</gco:Date>
|
320
|
+
</date>
|
321
|
+
<dateType>
|
322
|
+
<CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
|
323
|
+
</dateType>
|
324
|
+
</CI_Date>
|
325
|
+
</date>
|
326
|
+
<identifier>
|
327
|
+
<MD_Identifier>
|
328
|
+
<code>
|
329
|
+
<gco:CharacterString>http://purl.stanford.edu/zt526qk7324</gco:CharacterString>
|
330
|
+
</code>
|
331
|
+
</MD_Identifier>
|
332
|
+
</identifier>
|
333
|
+
<citedResponsibleParty>
|
334
|
+
<CI_ResponsibleParty>
|
335
|
+
<organisationName>
|
336
|
+
<gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
|
337
|
+
</organisationName>
|
338
|
+
<role>
|
339
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
|
340
|
+
</role>
|
341
|
+
</CI_ResponsibleParty>
|
342
|
+
</citedResponsibleParty>
|
343
|
+
<citedResponsibleParty>
|
344
|
+
<CI_ResponsibleParty>
|
345
|
+
<organisationName>
|
346
|
+
<gco:CharacterString>Circuit Rider Productions</gco:CharacterString>
|
347
|
+
</organisationName>
|
348
|
+
<contactInfo>
|
349
|
+
<CI_Contact>
|
350
|
+
<address>
|
351
|
+
<CI_Address>
|
352
|
+
<city>
|
353
|
+
<gco:CharacterString>Windsor</gco:CharacterString>
|
354
|
+
</city>
|
355
|
+
<administrativeArea>
|
356
|
+
<gco:CharacterString>California</gco:CharacterString>
|
357
|
+
</administrativeArea>
|
358
|
+
<country>
|
359
|
+
<gco:CharacterString>US</gco:CharacterString>
|
360
|
+
</country>
|
361
|
+
<electronicMailAddress>
|
362
|
+
<gco:CharacterString>info@circuitriderstudios.com</gco:CharacterString>
|
363
|
+
</electronicMailAddress>
|
364
|
+
</CI_Address>
|
365
|
+
</address>
|
366
|
+
</CI_Contact>
|
367
|
+
</contactInfo>
|
368
|
+
<role>
|
369
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</CI_RoleCode>
|
370
|
+
</role>
|
371
|
+
</CI_ResponsibleParty>
|
372
|
+
</citedResponsibleParty>
|
373
|
+
<citedResponsibleParty>
|
374
|
+
<CI_ResponsibleParty>
|
375
|
+
<organisationName>
|
376
|
+
<gco:CharacterString>United States. National Oceanic and Atmospheric Administration</gco:CharacterString>
|
377
|
+
</organisationName>
|
378
|
+
<role>
|
379
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
|
380
|
+
</role>
|
381
|
+
</CI_ResponsibleParty>
|
382
|
+
</citedResponsibleParty>
|
383
|
+
</CI_Citation>
|
384
|
+
</aggregateDataSetName>
|
385
|
+
<associationType>
|
386
|
+
<DS_AssociationTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#DS_AssociationTypeCode" codeListValue="largerWorkCitation" codeSpace="ISOTC211/19115">largerWorkCitation</DS_AssociationTypeCode>
|
387
|
+
</associationType>
|
388
|
+
<initiativeType>
|
389
|
+
<DS_InitiativeTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#DS_InitiativeTypeCode" codeListValue="collection" codeSpace="ISOTC211/19115">collection</DS_InitiativeTypeCode>
|
390
|
+
</initiativeType>
|
391
|
+
</MD_AggregateInformation>
|
392
|
+
</aggregationInfo>
|
393
|
+
<spatialRepresentationType>
|
394
|
+
<MD_SpatialRepresentationTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector" codeSpace="ISOTC211/19115">vector</MD_SpatialRepresentationTypeCode>
|
395
|
+
</spatialRepresentationType>
|
396
|
+
<language>
|
397
|
+
<LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
|
398
|
+
</language>
|
399
|
+
<characterSet>
|
400
|
+
<MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</MD_CharacterSetCode>
|
401
|
+
</characterSet>
|
402
|
+
<topicCategory>
|
403
|
+
<MD_TopicCategoryCode>elevation</MD_TopicCategoryCode>
|
404
|
+
</topicCategory>
|
405
|
+
<topicCategory>
|
406
|
+
<MD_TopicCategoryCode>inlandWaters</MD_TopicCategoryCode>
|
407
|
+
</topicCategory>
|
408
|
+
<environmentDescription>
|
409
|
+
<gco:CharacterString>Microsoft Windows 7 Version 6.1 (Build 7601) Service Pack 1; Esri ArcGIS 10.1.0.3035</gco:CharacterString>
|
410
|
+
</environmentDescription>
|
411
|
+
<extent>
|
412
|
+
<EX_Extent>
|
413
|
+
<description>
|
414
|
+
<gco:CharacterString>publication date</gco:CharacterString>
|
415
|
+
</description>
|
416
|
+
<temporalElement>
|
417
|
+
<EX_TemporalExtent>
|
418
|
+
<extent>
|
419
|
+
<gml:TimeInstant gml:id="idp48672">
|
420
|
+
<gml:timePosition>2002-09-01T00:00:00</gml:timePosition>
|
421
|
+
</gml:TimeInstant>
|
422
|
+
</extent>
|
423
|
+
</EX_TemporalExtent>
|
424
|
+
</temporalElement>
|
425
|
+
</EX_Extent>
|
426
|
+
</extent>
|
427
|
+
<extent>
|
428
|
+
<EX_Extent>
|
429
|
+
<geographicElement>
|
430
|
+
<EX_GeographicBoundingBox>
|
431
|
+
<extentTypeCode>
|
432
|
+
<gco:Boolean>true</gco:Boolean>
|
433
|
+
</extentTypeCode>
|
434
|
+
<westBoundLongitude>
|
435
|
+
<gco:Decimal>-123.387612</gco:Decimal>
|
436
|
+
</westBoundLongitude>
|
437
|
+
<eastBoundLongitude>
|
438
|
+
<gco:Decimal>-122.523422</gco:Decimal>
|
439
|
+
</eastBoundLongitude>
|
440
|
+
<southBoundLatitude>
|
441
|
+
<gco:Decimal>38.302329</gco:Decimal>
|
442
|
+
</southBoundLatitude>
|
443
|
+
<northBoundLatitude>
|
444
|
+
<gco:Decimal>39.398515</gco:Decimal>
|
445
|
+
</northBoundLatitude>
|
446
|
+
</EX_GeographicBoundingBox>
|
447
|
+
</geographicElement>
|
448
|
+
</EX_Extent>
|
449
|
+
</extent>
|
450
|
+
<supplementalInformation>
|
451
|
+
<gco:CharacterString>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)
|
452
|
+
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.</gco:CharacterString>
|
453
|
+
</supplementalInformation>
|
454
|
+
</MD_DataIdentification>
|
455
|
+
</identificationInfo>
|
456
|
+
<contentInfo>
|
457
|
+
<MD_FeatureCatalogueDescription>
|
458
|
+
<complianceCode>
|
459
|
+
<gco:Boolean>false</gco:Boolean>
|
460
|
+
</complianceCode>
|
461
|
+
<language>
|
462
|
+
<LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
|
463
|
+
</language>
|
464
|
+
<includedWithDataset>
|
465
|
+
<gco:Boolean>true</gco:Boolean>
|
466
|
+
</includedWithDataset>
|
467
|
+
<featureCatalogueCitation>
|
468
|
+
<CI_Citation>
|
469
|
+
<title>
|
470
|
+
<gco:CharacterString>Feature Catalog for 10 Meter Contours: Russian River Basin, California</gco:CharacterString>
|
471
|
+
</title>
|
472
|
+
<date>
|
473
|
+
<CI_Date>
|
474
|
+
<date>
|
475
|
+
<gco:Date>2002-09-01</gco:Date>
|
476
|
+
</date>
|
477
|
+
<dateType>
|
478
|
+
<CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
|
479
|
+
</dateType>
|
480
|
+
</CI_Date>
|
481
|
+
</date>
|
482
|
+
<identifier>
|
483
|
+
<MD_Identifier>
|
484
|
+
<code>
|
485
|
+
<gco:CharacterString>3a76ccfc-607e-4cb7-8a72-d83755ed66b7</gco:CharacterString>
|
486
|
+
</code>
|
487
|
+
</MD_Identifier>
|
488
|
+
</identifier>
|
489
|
+
</CI_Citation>
|
490
|
+
</featureCatalogueCitation>
|
491
|
+
</MD_FeatureCatalogueDescription>
|
492
|
+
</contentInfo>
|
493
|
+
<distributionInfo>
|
494
|
+
<MD_Distribution>
|
495
|
+
<distributionFormat>
|
496
|
+
<MD_Format>
|
497
|
+
<name>
|
498
|
+
<gco:CharacterString>Shapefile</gco:CharacterString>
|
499
|
+
</name>
|
500
|
+
<version gco:nilReason="missing"/>
|
501
|
+
</MD_Format>
|
502
|
+
</distributionFormat>
|
503
|
+
<distributor>
|
504
|
+
<MD_Distributor>
|
505
|
+
<distributorContact>
|
506
|
+
<CI_ResponsibleParty>
|
507
|
+
<organisationName>
|
508
|
+
<gco:CharacterString>Stanford Geospatial Center</gco:CharacterString>
|
509
|
+
</organisationName>
|
510
|
+
<contactInfo>
|
511
|
+
<CI_Contact>
|
512
|
+
<phone>
|
513
|
+
<CI_Telephone>
|
514
|
+
<voice>
|
515
|
+
<gco:CharacterString>650-723-2746</gco:CharacterString>
|
516
|
+
</voice>
|
517
|
+
</CI_Telephone>
|
518
|
+
</phone>
|
519
|
+
<address>
|
520
|
+
<CI_Address>
|
521
|
+
<deliveryPoint>
|
522
|
+
<gco:CharacterString>Mitchell Bldg. 2nd floor</gco:CharacterString>
|
523
|
+
</deliveryPoint>
|
524
|
+
<deliveryPoint>
|
525
|
+
<gco:CharacterString>397 Panama Mall</gco:CharacterString>
|
526
|
+
</deliveryPoint>
|
527
|
+
<city>
|
528
|
+
<gco:CharacterString>Stanford</gco:CharacterString>
|
529
|
+
</city>
|
530
|
+
<administrativeArea>
|
531
|
+
<gco:CharacterString>California</gco:CharacterString>
|
532
|
+
</administrativeArea>
|
533
|
+
<postalCode>
|
534
|
+
<gco:CharacterString>94305</gco:CharacterString>
|
535
|
+
</postalCode>
|
536
|
+
<country>
|
537
|
+
<gco:CharacterString>US</gco:CharacterString>
|
538
|
+
</country>
|
539
|
+
<electronicMailAddress>
|
540
|
+
<gco:CharacterString>brannerlibrary@stanford.edu</gco:CharacterString>
|
541
|
+
</electronicMailAddress>
|
542
|
+
</CI_Address>
|
543
|
+
</address>
|
544
|
+
</CI_Contact>
|
545
|
+
</contactInfo>
|
546
|
+
<role>
|
547
|
+
<CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</CI_RoleCode>
|
548
|
+
</role>
|
549
|
+
</CI_ResponsibleParty>
|
550
|
+
</distributorContact>
|
551
|
+
<distributorTransferOptions>
|
552
|
+
<MD_DigitalTransferOptions/>
|
553
|
+
</distributorTransferOptions>
|
554
|
+
</MD_Distributor>
|
555
|
+
</distributor>
|
556
|
+
<transferOptions>
|
557
|
+
<MD_DigitalTransferOptions>
|
558
|
+
<transferSize>
|
559
|
+
<gco:Real>74.767</gco:Real>
|
560
|
+
</transferSize>
|
561
|
+
<onLine>
|
562
|
+
<CI_OnlineResource>
|
563
|
+
<linkage>
|
564
|
+
<URL>http://purl.stanford.edu/cg357zz0321</URL>
|
565
|
+
</linkage>
|
566
|
+
<protocol>
|
567
|
+
<gco:CharacterString>http</gco:CharacterString>
|
568
|
+
</protocol>
|
569
|
+
<name>
|
570
|
+
<gco:CharacterString>rr_contours.shp</gco:CharacterString>
|
571
|
+
</name>
|
572
|
+
<function>
|
573
|
+
<CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</CI_OnLineFunctionCode>
|
574
|
+
</function>
|
575
|
+
</CI_OnlineResource>
|
576
|
+
</onLine>
|
577
|
+
</MD_DigitalTransferOptions>
|
578
|
+
</transferOptions>
|
579
|
+
</MD_Distribution>
|
580
|
+
</distributionInfo>
|
581
|
+
</MD_Metadata>
|