relaton 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +19 -19
- data/lib/relaton/db.rb +75 -63
- data/lib/relaton/db_cache.rb +111 -0
- data/lib/relaton/processor.rb +4 -0
- data/lib/relaton/version.rb +1 -1
- data/relaton.gemspec +10 -9
- data/spec/relaton/relaton_spec.rb +31 -54
- data/spec/support/gb_t_20223_2006.xml +33 -0
- data/spec/support/iso_111111119115_1.xml +0 -0
- data/spec/support/iso_19115_1.xml +115 -0
- data/spec/support/iso_19115_2.xml +95 -0
- data/spec/support/list_entries.xml +197 -200
- data/spec/support/rfc_8341.xml +46 -0
- metadata +25 -22
- data/spec/support/gb_t_20223_2006 +0 -0
- data/spec/support/iso_111111119115_1 +0 -1
- data/spec/support/iso_19115_1 +0 -0
- data/spec/support/iso_19115_2 +0 -0
- data/spec/support/rfc_8341 +0 -0
data/lib/relaton/processor.rb
CHANGED
data/lib/relaton/version.rb
CHANGED
data/relaton.gemspec
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# coding: utf-8
|
2
|
-
|
2
|
+
|
3
3
|
lib = File.expand_path("../lib", __FILE__)
|
4
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
5
|
require "relaton/version"
|
@@ -10,10 +10,11 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["Ribose Inc."]
|
11
11
|
spec.email = ["open.source@ribose.com"]
|
12
12
|
|
13
|
-
spec.summary = "
|
13
|
+
spec.summary = "The Relaton core for importing, managing and caching bibliographic references to technical standards."
|
14
14
|
spec.description = <<~DESCRIPTION
|
15
|
-
|
16
|
-
|
15
|
+
The Relaton core for importing, managing and caching bibliographic
|
16
|
+
references to technical standards in the Relaton/XML bibliographic
|
17
|
+
model.
|
17
18
|
|
18
19
|
This gem is in active development.
|
19
20
|
DESCRIPTION
|
@@ -28,11 +29,11 @@ Gem::Specification.new do |spec|
|
|
28
29
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
29
30
|
|
30
31
|
spec.add_dependency "algoliasearch"
|
31
|
-
spec.add_dependency "gbbib", "~> 0.
|
32
|
-
spec.add_dependency "isobib", "~> 0.
|
33
|
-
spec.add_dependency "ietfbib", "~> 0.4.
|
34
|
-
spec.add_dependency "iecbib", "~> 0.
|
35
|
-
spec.add_dependency 'iso-bib-item', '~> 0.
|
32
|
+
spec.add_dependency "gbbib", "~> 0.4.0"
|
33
|
+
spec.add_dependency "isobib", "~> 0.4.0"
|
34
|
+
spec.add_dependency "ietfbib", "~> 0.4.2"
|
35
|
+
spec.add_dependency "iecbib", "~> 0.2.0"
|
36
|
+
spec.add_dependency 'iso-bib-item', '~> 0.4.1'
|
36
37
|
|
37
38
|
spec.add_development_dependency "bundler", "~> 1.15"
|
38
39
|
spec.add_development_dependency "byebug", "~> 10.0"
|
@@ -5,20 +5,12 @@ RSpec.describe Relaton::Db do
|
|
5
5
|
# let!(:db) { Relaton::Db.new("testcache", "testcache2") }
|
6
6
|
|
7
7
|
before :each do
|
8
|
-
FileUtils.
|
8
|
+
FileUtils.rm_rf %w(testcache testcache2)
|
9
9
|
@db = Relaton::Db.new "testcache", "testcache2"
|
10
10
|
end
|
11
11
|
|
12
12
|
it "rejects an illegal reference prefix" do
|
13
13
|
expect { @db.fetch("XYZ XYZ", nil, {}) }.to output(/does not have a recognised prefix/).to_stderr
|
14
|
-
testcache = PStore.new "testcache"
|
15
|
-
testcache.transaction do
|
16
|
-
expect(testcache.roots.size).to eq 1
|
17
|
-
end
|
18
|
-
testcache = PStore.new "testcache2"
|
19
|
-
testcache.transaction do
|
20
|
-
expect(testcache.roots.size).to eq 1
|
21
|
-
end
|
22
14
|
end
|
23
15
|
|
24
16
|
it "gets an ISO reference and caches it" do
|
@@ -28,14 +20,10 @@ RSpec.describe Relaton::Db do
|
|
28
20
|
expect(bib.to_xml).to include "<bibitem type=\"international-standard\" id=\"ISO19115-1\">"
|
29
21
|
expect(File.exist?("testcache")).to be true
|
30
22
|
expect(File.exist?("testcache2")).to be true
|
31
|
-
testcache =
|
32
|
-
testcache.
|
33
|
-
|
34
|
-
|
35
|
-
testcache = PStore.new "testcache2"
|
36
|
-
testcache.transaction do
|
37
|
-
expect(testcache["ISO(ISO 19115-1)"]["bib"].to_xml).to include "<bibitem type=\"international-standard\" id=\"ISO19115-1\">"
|
38
|
-
end
|
23
|
+
testcache = Relaton::DbCache.new "testcache"
|
24
|
+
expect(testcache["ISO(ISO 19115-1)"]).to include "<bibitem type=\"international-standard\" id=\"ISO19115-1\">"
|
25
|
+
testcache = Relaton::DbCache.new "testcache2"
|
26
|
+
expect(testcache["ISO(ISO 19115-1)"]).to include "<bibitem type=\"international-standard\" id=\"ISO19115-1\">"
|
39
27
|
end
|
40
28
|
|
41
29
|
it "deals with a non-existant ISO reference" do
|
@@ -44,16 +32,12 @@ RSpec.describe Relaton::Db do
|
|
44
32
|
expect(bib).to be_nil
|
45
33
|
expect(File.exist?("testcache")).to be true
|
46
34
|
expect(File.exist?("testcache2")).to be true
|
47
|
-
testcache =
|
48
|
-
testcache.
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
testcache
|
53
|
-
testcache.transaction do
|
54
|
-
expect(testcache["ISO(ISO 111111119115-1)"]["fetched"].to_s).to eq Date.today.to_s
|
55
|
-
expect(testcache["ISO(ISO 111111119115-1)"]["bib"]).to eq "not_found"
|
56
|
-
end
|
35
|
+
testcache = Relaton::DbCache.new "testcache"
|
36
|
+
expect(testcache.fetched("ISO(ISO 111111119115-1)")).to eq Date.today.to_s
|
37
|
+
expect(testcache["ISO(ISO 111111119115-1)"]).to include "not_found"
|
38
|
+
testcache = Relaton::DbCache.new "testcache2"
|
39
|
+
expect(testcache.fetched("ISO(ISO 111111119115-1)")).to eq Date.today.to_s
|
40
|
+
expect(testcache["ISO(ISO 111111119115-1)"]).to include "not_found"
|
57
41
|
end
|
58
42
|
|
59
43
|
it "list all elements as a serialization" do
|
@@ -65,10 +49,15 @@ RSpec.describe Relaton::Db do
|
|
65
49
|
expect(@db.to_xml).to eq File.read file
|
66
50
|
end
|
67
51
|
|
68
|
-
it "save/load entry" do
|
69
|
-
@db.save_entry "test key",
|
70
|
-
expect(@db.load_entry("test key")
|
52
|
+
it "save/load/delete entry" do
|
53
|
+
@db.save_entry "test key", "test value"
|
54
|
+
expect(@db.load_entry("test key")).to eq "test value"
|
71
55
|
expect(@db.load_entry("not existed key")).to be_nil
|
56
|
+
testcache = Relaton::DbCache.new "testcache"
|
57
|
+
testcache.delete("test_key")
|
58
|
+
testcache2 = Relaton::DbCache.new "testcache2"
|
59
|
+
testcache2.delete("test_key")
|
60
|
+
expect(@db.load_entry("test key")).to be_nil
|
72
61
|
end
|
73
62
|
|
74
63
|
it "get GB reference and cache it" do
|
@@ -78,14 +67,10 @@ RSpec.describe Relaton::Db do
|
|
78
67
|
expect(bib.to_xml).to include "<bibitem type=\"standard\" id=\"GB/T20223\">"
|
79
68
|
expect(File.exist?("testcache")).to be true
|
80
69
|
expect(File.exist?("testcache2")).to be true
|
81
|
-
testcache =
|
82
|
-
testcache.
|
83
|
-
|
84
|
-
|
85
|
-
testcache = PStore.new "testcache2"
|
86
|
-
testcache.transaction do
|
87
|
-
expect(testcache["CN(GB/T 20223:2006)"]["bib"].to_xml).to include "<bibitem type=\"standard\" id=\"GB/T20223\">"
|
88
|
-
end
|
70
|
+
testcache = Relaton::DbCache.new "testcache"
|
71
|
+
expect(testcache["CN(GB/T 20223:2006)"]).to include "<bibitem type=\"standard\" id=\"GB/T20223\">"
|
72
|
+
testcache = Relaton::DbCache.new "testcache2"
|
73
|
+
expect(testcache["CN(GB/T 20223:2006)"]).to include "<bibitem type=\"standard\" id=\"GB/T20223\">"
|
89
74
|
end
|
90
75
|
|
91
76
|
it "get RFC reference and cache it" do
|
@@ -95,14 +80,10 @@ RSpec.describe Relaton::Db do
|
|
95
80
|
expect(bib.to_xml).to include "<bibitem id=\"RFC8341\">"
|
96
81
|
expect(File.exist?("testcache")).to be true
|
97
82
|
expect(File.exist?("testcache2")).to be true
|
98
|
-
testcache =
|
99
|
-
testcache.
|
100
|
-
|
101
|
-
|
102
|
-
testcache = PStore.new "testcache2"
|
103
|
-
testcache.transaction do
|
104
|
-
expect(testcache["IETF(RFC 8341)"]["bib"].to_xml).to include "<bibitem id=\"RFC8341\">"
|
105
|
-
end
|
83
|
+
testcache = Relaton::DbCache.new "testcache"
|
84
|
+
expect(testcache["IETF(RFC 8341)"]).to include "<bibitem id=\"RFC8341\">"
|
85
|
+
testcache = Relaton::DbCache.new "testcache2"
|
86
|
+
expect(testcache["IETF(RFC 8341)"]).to include "<bibitem id=\"RFC8341\">"
|
106
87
|
end
|
107
88
|
|
108
89
|
it "shoul clear global cache if version is changed" do
|
@@ -112,9 +93,7 @@ RSpec.describe Relaton::Db do
|
|
112
93
|
stub_const "Relaton::VERSION", "new_version"
|
113
94
|
db = Relaton::Db.new "testcache", "testcache2"
|
114
95
|
testcache = db.instance_variable_get :@db
|
115
|
-
testcache.
|
116
|
-
expect(testcache.root?("test_key")).to be_falsey
|
117
|
-
end
|
96
|
+
expect(testcache.all.any?).to be_falsey
|
118
97
|
testcache = db.instance_variable_get :@local_db
|
119
98
|
expect(testcache).to be_nil
|
120
99
|
end
|
@@ -132,11 +111,9 @@ RSpec.describe Relaton::Db do
|
|
132
111
|
expect_args args
|
133
112
|
file = "spec/support/" + args[0].downcase.gsub(/[\/\s-]/, "_")
|
134
113
|
file += "_#{args[1]}" if args[1]
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
store[:resp]
|
139
|
-
end
|
114
|
+
file += ".xml"
|
115
|
+
File.write file, method.call(*args)&.to_xml unless File.exist? file
|
116
|
+
File.read file
|
140
117
|
end
|
141
118
|
|
142
119
|
def expect_args(args)
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<bibitem type="standard" id="GB/T20223">
|
2
|
+
<title format="text/plain" language="zh" script="Hans">棉短绒</title>
|
3
|
+
<title format="text/plain" language="en" script="Latn">Cotton linter</title>
|
4
|
+
<uri type="src">http://www.std.gov.cn/gb/search/gbDetailed?id=71F772D778ADD3A7E05397BE0A0AB82A</uri>
|
5
|
+
<docidentifier type="Chinese Standard">GB/T 20223-2006</docidentifier>
|
6
|
+
<date type="published">
|
7
|
+
<on>2006</on>
|
8
|
+
</date>
|
9
|
+
<contributor>
|
10
|
+
<role type="publisher"/>
|
11
|
+
<organization>
|
12
|
+
<name language="en">General Administration of Quality Supervision, Inspection and Quarantine; Standardization Administration of China</name>
|
13
|
+
<name language="zh">中华人民共和国国家质量监督检验检疫总局 中国国家标准化管理委员会</name>
|
14
|
+
</organization>
|
15
|
+
</contributor>
|
16
|
+
<language>zh</language>
|
17
|
+
<script>Hans</script>
|
18
|
+
<status>obsoleted</status>
|
19
|
+
<ics>
|
20
|
+
<code>59.060.10</code>
|
21
|
+
<text>Natural fibres</text>
|
22
|
+
</ics>
|
23
|
+
<gbcommittee type="technical">中国纤维检验局</gbcommittee>
|
24
|
+
<gbtype>
|
25
|
+
<gbscope>national</gbscope>
|
26
|
+
<gbprefix>GB_national</gbprefix>
|
27
|
+
<gbmandate>recommended</gbmandate>
|
28
|
+
</gbtype>
|
29
|
+
<ccs>
|
30
|
+
<code>B32</code>
|
31
|
+
<text>纤维作物与产品</text>
|
32
|
+
</ccs>
|
33
|
+
</bibitem>
|
File without changes
|
@@ -0,0 +1,115 @@
|
|
1
|
+
<bibitem type="international-standard" id="ISO19115-1">
|
2
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
|
3
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
|
4
|
+
<uri type="src">https://www.iso.org/standard/53798.html</uri>
|
5
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
|
6
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
|
7
|
+
<docidentifier type="ISO">ISO 19115-1</docidentifier>
|
8
|
+
<contributor>
|
9
|
+
<role type="publisher"/>
|
10
|
+
<organization>
|
11
|
+
<name>International Organization for Standardization</name>
|
12
|
+
<abbreviation>ISO</abbreviation>
|
13
|
+
<uri>www.iso.org</uri>
|
14
|
+
</organization>
|
15
|
+
</contributor>
|
16
|
+
<edition>1</edition>
|
17
|
+
<language>en</language>
|
18
|
+
<language>fr</language>
|
19
|
+
<script>Latn</script>
|
20
|
+
<status>
|
21
|
+
<stage>60</stage>
|
22
|
+
<substage>60</substage>
|
23
|
+
</status>
|
24
|
+
<copyright>
|
25
|
+
<from>2014</from>
|
26
|
+
<owner>
|
27
|
+
<organization>
|
28
|
+
<name>ISO</name>
|
29
|
+
</organization>
|
30
|
+
</owner>
|
31
|
+
</copyright>
|
32
|
+
<relation type="obsoletes">
|
33
|
+
<bibitem>
|
34
|
+
<formattedref>ISO 19115:2003</formattedref>
|
35
|
+
</bibitem>
|
36
|
+
</relation>
|
37
|
+
<relation type="obsoletes">
|
38
|
+
<bibitem>
|
39
|
+
<formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
|
40
|
+
</bibitem>
|
41
|
+
</relation>
|
42
|
+
<relation type="updates">
|
43
|
+
<bibitem>
|
44
|
+
<formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
|
45
|
+
</bibitem>
|
46
|
+
</relation>
|
47
|
+
<relation type="instance">
|
48
|
+
<bibitem type="international-standard">
|
49
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
|
50
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
|
51
|
+
<uri type="src">https://www.iso.org/standard/53798.html</uri>
|
52
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
|
53
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
|
54
|
+
<docidentifier type="ISO">ISO 19115-1:2014</docidentifier>
|
55
|
+
<date type="published">
|
56
|
+
<on>2014</on>
|
57
|
+
</date>
|
58
|
+
<contributor>
|
59
|
+
<role type="publisher"/>
|
60
|
+
<organization>
|
61
|
+
<name>International Organization for Standardization</name>
|
62
|
+
<abbreviation>ISO</abbreviation>
|
63
|
+
<uri>www.iso.org</uri>
|
64
|
+
</organization>
|
65
|
+
</contributor>
|
66
|
+
<edition>1</edition>
|
67
|
+
<language>en</language>
|
68
|
+
<language>fr</language>
|
69
|
+
<script>Latn</script>
|
70
|
+
<abstract format="plain" language="en" script="Latn">ISO 19115-1:2014 defines the schema required for describing geographic information and services by means of metadata. It provides information about the identification, the extent, the quality, the spatial and temporal aspects, the content, the spatial reference, the portrayal, distribution, and other properties of digital geographic data and services.ISO 19115-1:2014 is applicable to:-the cataloguing of all types of resources, clearinghouse activities, and the full description of datasets and services;-geographic services, geographic datasets, dataset series, and individual geographic features and feature properties.ISO 19115-1:2014 defines:-mandatory and conditional metadata sections, metadata entities, and metadata elements;-the minimum set of metadata required to serve most metadata applications (data discovery, determining data fitness for use, data access, data transfer, and use of digital data and services);-optional metadata elements to allow for a more extensive standard description of resources, if required;-a method for extending metadata to fit specialized needs.Though ISO 19115-1:2014 is applicable to digital data and services, its principles can be extended to many other types of resources such as maps, charts, and textual documents as well as non-geographic data. Certain conditional metadata elements might not apply to these other forms of data.</abstract>
|
71
|
+
<abstract format="plain" language="fr" script="Latn">L'ISO 19115-1:2014 définit le schéma requis pour décrire des informations géographiques et des services au moyen de métadonnées. Elle fournit des informations concernant l'identification, l'étendue, la qualité, les aspects spatiaux et temporels, le contenu, la référence spatiale, la représentation des données, la distribution et d'autres propriétés des données géographiques numériques et des services.L'ISO 19115-1:2014 est applicable:-au catalogage de tous les types de ressources, des activités des centres d'informations et à la description complète des jeux de données et des services,-aux services géographiques, jeux de données géographiques, séries de jeux de données, entités géographiques individuelles et propriétés d'entités.L'ISO 19115-1:2014 définit:-des sections relatives aux métadonnées obligatoires et facultatives, aux entités de métadonnées et aux éléments de métadonnées,-le jeu minimal de métadonnées requis pour répondre au besoin de la plupart des applications des métadonnées (la découverte des données, la détermination de l'adéquation des données à une utilisation, l'accès aux données, le transfert des données et l'utilisation des données numériques et des services),-les éléments de métadonnées facultatifs pour permettre une description standard plus poussée des ressources, si cela est nécessaire,-un procédé d'extension des métadonnées pour s'adapter aux besoins spéciaux.L'ISO 19115-1:2014 est applicable aux données numériques et services, ses principes peuvent être étendus à bien d'autres types de ressources telles que les cartes, les graphes et les documents textes, de même qu'à des données non géographiques. Certains éléments de métadonnées conditionnels peuvent ne pas s'appliquer à ces autres formes de données.</abstract>
|
72
|
+
<status>
|
73
|
+
<stage>60</stage>
|
74
|
+
<substage>60</substage>
|
75
|
+
</status>
|
76
|
+
<copyright>
|
77
|
+
<from>2014</from>
|
78
|
+
<owner>
|
79
|
+
<organization>
|
80
|
+
<name>ISO</name>
|
81
|
+
</organization>
|
82
|
+
</owner>
|
83
|
+
</copyright>
|
84
|
+
<relation type="obsoletes">
|
85
|
+
<bibitem>
|
86
|
+
<formattedref>ISO 19115:2003</formattedref>
|
87
|
+
</bibitem>
|
88
|
+
</relation>
|
89
|
+
<relation type="obsoletes">
|
90
|
+
<bibitem>
|
91
|
+
<formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
|
92
|
+
</bibitem>
|
93
|
+
</relation>
|
94
|
+
<relation type="updates">
|
95
|
+
<bibitem>
|
96
|
+
<formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
|
97
|
+
</bibitem>
|
98
|
+
</relation>
|
99
|
+
<editorialgroup>
|
100
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
101
|
+
</editorialgroup>
|
102
|
+
<ics>
|
103
|
+
<code>35.240.70</code>
|
104
|
+
<text>IT applications in science</text>
|
105
|
+
</ics>
|
106
|
+
</bibitem>
|
107
|
+
</relation>
|
108
|
+
<editorialgroup>
|
109
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
110
|
+
</editorialgroup>
|
111
|
+
<ics>
|
112
|
+
<code>35.240.70</code>
|
113
|
+
<text>IT applications in science</text>
|
114
|
+
</ics>
|
115
|
+
</bibitem>
|
@@ -0,0 +1,95 @@
|
|
1
|
+
<bibitem type="international-standard" id="ISO19115-2">
|
2
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
|
3
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
|
4
|
+
<uri type="src">https://www.iso.org/standard/39229.html</uri>
|
5
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
|
6
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
|
7
|
+
<docidentifier type="ISO">ISO 19115-2</docidentifier>
|
8
|
+
<contributor>
|
9
|
+
<role type="publisher"/>
|
10
|
+
<organization>
|
11
|
+
<name>International Organization for Standardization</name>
|
12
|
+
<abbreviation>ISO</abbreviation>
|
13
|
+
<uri>www.iso.org</uri>
|
14
|
+
</organization>
|
15
|
+
</contributor>
|
16
|
+
<edition>1</edition>
|
17
|
+
<language>en</language>
|
18
|
+
<language>fr</language>
|
19
|
+
<script>Latn</script>
|
20
|
+
<status>
|
21
|
+
<stage>90</stage>
|
22
|
+
<substage>92</substage>
|
23
|
+
</status>
|
24
|
+
<copyright>
|
25
|
+
<from>2009</from>
|
26
|
+
<owner>
|
27
|
+
<organization>
|
28
|
+
<name>ISO</name>
|
29
|
+
</organization>
|
30
|
+
</owner>
|
31
|
+
</copyright>
|
32
|
+
<relation type="updates">
|
33
|
+
<bibitem>
|
34
|
+
<formattedref>ISO 19115-2</formattedref>
|
35
|
+
</bibitem>
|
36
|
+
</relation>
|
37
|
+
<relation type="instance">
|
38
|
+
<bibitem type="international-standard">
|
39
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
|
40
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
|
41
|
+
<uri type="src">https://www.iso.org/standard/39229.html</uri>
|
42
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
|
43
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
|
44
|
+
<docidentifier type="ISO">ISO 19115-2:2009</docidentifier>
|
45
|
+
<date type="published">
|
46
|
+
<on>2009</on>
|
47
|
+
</date>
|
48
|
+
<contributor>
|
49
|
+
<role type="publisher"/>
|
50
|
+
<organization>
|
51
|
+
<name>International Organization for Standardization</name>
|
52
|
+
<abbreviation>ISO</abbreviation>
|
53
|
+
<uri>www.iso.org</uri>
|
54
|
+
</organization>
|
55
|
+
</contributor>
|
56
|
+
<edition>1</edition>
|
57
|
+
<language>en</language>
|
58
|
+
<language>fr</language>
|
59
|
+
<script>Latn</script>
|
60
|
+
<abstract format="plain" language="en" script="Latn">ISO 19115-2:2009 extends the existing geographic metadata standard by defining the schema required for describing imagery and gridded data. It provides information about the properties of the measuring equipment used to acquire the data, the geometry of the measuring process employed by the equipment, and the production process used to digitize the raw data. This extension deals with metadata needed to describe the derivation of geographic information from raw data, including the properties of the measuring system, and the numerical methods and computational procedures used in the derivation. The metadata required to address coverage data in general is addressed sufficiently in the general part of ISO 19115.</abstract>
|
61
|
+
<abstract format="plain" language="fr" script="Latn">L'ISO 19115-2:2009 étend la norme existante sur les métadonnées géographiques en définissant le schéma requis de description des images et des matrices. Elle donne des informations relatives aux propriétés des équipements de mesure utilisés pour obtenir les données, la géométrie du processus de mesure utilisée par ces équipements, et le processus de production utilisé pour numériser les données brutes. Cette extension porte sur les métadonnées nécessaires pour décrire la déduction des informations géographiques à partir de données brutes, y compris les propriétés du système de mesure, et les méthodes numériques et procédures informatiques utilisées pour la déduction. Les métadonnées requises pour aborder les données de couverture en général sont suffisamment abordées dans la partie générale de l'ISO 19115.</abstract>
|
62
|
+
<status>
|
63
|
+
<stage>90</stage>
|
64
|
+
<substage>92</substage>
|
65
|
+
</status>
|
66
|
+
<copyright>
|
67
|
+
<from>2009</from>
|
68
|
+
<owner>
|
69
|
+
<organization>
|
70
|
+
<name>ISO</name>
|
71
|
+
</organization>
|
72
|
+
</owner>
|
73
|
+
</copyright>
|
74
|
+
<relation type="updates">
|
75
|
+
<bibitem>
|
76
|
+
<formattedref>ISO 19115-2</formattedref>
|
77
|
+
</bibitem>
|
78
|
+
</relation>
|
79
|
+
<editorialgroup>
|
80
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
81
|
+
</editorialgroup>
|
82
|
+
<ics>
|
83
|
+
<code>35.240.70</code>
|
84
|
+
<text>IT applications in science</text>
|
85
|
+
</ics>
|
86
|
+
</bibitem>
|
87
|
+
</relation>
|
88
|
+
<editorialgroup>
|
89
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
90
|
+
</editorialgroup>
|
91
|
+
<ics>
|
92
|
+
<code>35.240.70</code>
|
93
|
+
<text>IT applications in science</text>
|
94
|
+
</ics>
|
95
|
+
</bibitem>
|
@@ -1,213 +1,210 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<documents>
|
3
|
-
<
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
<
|
11
|
-
|
2
|
+
<documents><bibitem type="international-standard" id="ISO19115-1">
|
3
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
|
4
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
|
5
|
+
<uri type="src">https://www.iso.org/standard/53798.html</uri>
|
6
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
|
7
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
|
8
|
+
<docidentifier type="ISO">ISO 19115-1</docidentifier>
|
9
|
+
<contributor>
|
10
|
+
<role type="publisher"/>
|
11
|
+
<organization>
|
12
|
+
<name>International Organization for Standardization</name>
|
13
|
+
<abbreviation>ISO</abbreviation>
|
14
|
+
<uri>www.iso.org</uri>
|
15
|
+
</organization>
|
16
|
+
</contributor>
|
17
|
+
<edition>1</edition>
|
18
|
+
<language>en</language>
|
19
|
+
<language>fr</language>
|
20
|
+
<script>Latn</script>
|
21
|
+
<status>
|
22
|
+
<stage>60</stage>
|
23
|
+
<substage>60</substage>
|
24
|
+
</status>
|
25
|
+
<copyright>
|
26
|
+
<from>2014</from>
|
27
|
+
<owner>
|
12
28
|
<organization>
|
13
|
-
<name>
|
14
|
-
<abbreviation>ISO</abbreviation>
|
15
|
-
<uri>www.iso.org</uri>
|
29
|
+
<name>ISO</name>
|
16
30
|
</organization>
|
17
|
-
</
|
18
|
-
|
19
|
-
|
20
|
-
<
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
31
|
+
</owner>
|
32
|
+
</copyright>
|
33
|
+
<relation type="obsoletes">
|
34
|
+
<bibitem>
|
35
|
+
<formattedref>ISO 19115:2003</formattedref>
|
36
|
+
</bibitem>
|
37
|
+
</relation>
|
38
|
+
<relation type="obsoletes">
|
39
|
+
<bibitem>
|
40
|
+
<formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
|
41
|
+
</bibitem>
|
42
|
+
</relation>
|
43
|
+
<relation type="updates">
|
44
|
+
<bibitem>
|
45
|
+
<formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
|
46
|
+
</bibitem>
|
47
|
+
</relation>
|
48
|
+
<relation type="instance">
|
49
|
+
<bibitem type="international-standard">
|
50
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
|
51
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
|
52
|
+
<uri type="src">https://www.iso.org/standard/53798.html</uri>
|
53
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
|
54
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
|
55
|
+
<docidentifier type="ISO">ISO 19115-1:2014</docidentifier>
|
56
|
+
<date type="published">
|
57
|
+
<on>2014</on>
|
58
|
+
</date>
|
59
|
+
<contributor>
|
60
|
+
<role type="publisher"/>
|
29
61
|
<organization>
|
30
|
-
<name>
|
62
|
+
<name>International Organization for Standardization</name>
|
63
|
+
<abbreviation>ISO</abbreviation>
|
64
|
+
<uri>www.iso.org</uri>
|
31
65
|
</organization>
|
32
|
-
</
|
33
|
-
|
34
|
-
|
35
|
-
<
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
<
|
42
|
-
</
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
<formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
|
47
|
-
</bibitem>
|
48
|
-
</relation>
|
49
|
-
<relation type="instance">
|
50
|
-
<bibitem type="international-standard">
|
51
|
-
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
|
52
|
-
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
|
53
|
-
<uri type="src">https://www.iso.org/standard/53798.html</uri>
|
54
|
-
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
|
55
|
-
<uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
|
56
|
-
<docidentifier type="ISO">ISO 19115-1:2014</docidentifier>
|
57
|
-
<date type="published">
|
58
|
-
<on>2014</on>
|
59
|
-
</date>
|
60
|
-
<contributor>
|
61
|
-
<role type="publisher"/>
|
66
|
+
</contributor>
|
67
|
+
<edition>1</edition>
|
68
|
+
<language>en</language>
|
69
|
+
<language>fr</language>
|
70
|
+
<script>Latn</script>
|
71
|
+
<abstract format="plain" language="en" script="Latn">ISO 19115-1:2014 defines the schema required for describing geographic information and services by means of metadata. It provides information about the identification, the extent, the quality, the spatial and temporal aspects, the content, the spatial reference, the portrayal, distribution, and other properties of digital geographic data and services.ISO 19115-1:2014 is applicable to:-the cataloguing of all types of resources, clearinghouse activities, and the full description of datasets and services;-geographic services, geographic datasets, dataset series, and individual geographic features and feature properties.ISO 19115-1:2014 defines:-mandatory and conditional metadata sections, metadata entities, and metadata elements;-the minimum set of metadata required to serve most metadata applications (data discovery, determining data fitness for use, data access, data transfer, and use of digital data and services);-optional metadata elements to allow for a more extensive standard description of resources, if required;-a method for extending metadata to fit specialized needs.Though ISO 19115-1:2014 is applicable to digital data and services, its principles can be extended to many other types of resources such as maps, charts, and textual documents as well as non-geographic data. Certain conditional metadata elements might not apply to these other forms of data.</abstract>
|
72
|
+
<abstract format="plain" language="fr" script="Latn">L'ISO 19115-1:2014 définit le schéma requis pour décrire des informations géographiques et des services au moyen de métadonnées. Elle fournit des informations concernant l'identification, l'étendue, la qualité, les aspects spatiaux et temporels, le contenu, la référence spatiale, la représentation des données, la distribution et d'autres propriétés des données géographiques numériques et des services.L'ISO 19115-1:2014 est applicable:-au catalogage de tous les types de ressources, des activités des centres d'informations et à la description complète des jeux de données et des services,-aux services géographiques, jeux de données géographiques, séries de jeux de données, entités géographiques individuelles et propriétés d'entités.L'ISO 19115-1:2014 définit:-des sections relatives aux métadonnées obligatoires et facultatives, aux entités de métadonnées et aux éléments de métadonnées,-le jeu minimal de métadonnées requis pour répondre au besoin de la plupart des applications des métadonnées (la découverte des données, la détermination de l'adéquation des données à une utilisation, l'accès aux données, le transfert des données et l'utilisation des données numériques et des services),-les éléments de métadonnées facultatifs pour permettre une description standard plus poussée des ressources, si cela est nécessaire,-un procédé d'extension des métadonnées pour s'adapter aux besoins spéciaux.L'ISO 19115-1:2014 est applicable aux données numériques et services, ses principes peuvent être étendus à bien d'autres types de ressources telles que les cartes, les graphes et les documents textes, de même qu'à des données non géographiques. Certains éléments de métadonnées conditionnels peuvent ne pas s'appliquer à ces autres formes de données.</abstract>
|
73
|
+
<status>
|
74
|
+
<stage>60</stage>
|
75
|
+
<substage>60</substage>
|
76
|
+
</status>
|
77
|
+
<copyright>
|
78
|
+
<from>2014</from>
|
79
|
+
<owner>
|
62
80
|
<organization>
|
63
|
-
<name>
|
64
|
-
<abbreviation>ISO</abbreviation>
|
65
|
-
<uri>www.iso.org</uri>
|
81
|
+
<name>ISO</name>
|
66
82
|
</organization>
|
67
|
-
</
|
68
|
-
|
69
|
-
|
70
|
-
<
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
<
|
77
|
-
</
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
</
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
<
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
</
|
118
|
-
<
|
119
|
-
|
120
|
-
<
|
121
|
-
<
|
122
|
-
|
123
|
-
|
124
|
-
<
|
125
|
-
<
|
126
|
-
<role type="publisher"/>
|
83
|
+
</owner>
|
84
|
+
</copyright>
|
85
|
+
<relation type="obsoletes">
|
86
|
+
<bibitem>
|
87
|
+
<formattedref>ISO 19115:2003</formattedref>
|
88
|
+
</bibitem>
|
89
|
+
</relation>
|
90
|
+
<relation type="obsoletes">
|
91
|
+
<bibitem>
|
92
|
+
<formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
|
93
|
+
</bibitem>
|
94
|
+
</relation>
|
95
|
+
<relation type="updates">
|
96
|
+
<bibitem>
|
97
|
+
<formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
|
98
|
+
</bibitem>
|
99
|
+
</relation>
|
100
|
+
<editorialgroup>
|
101
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
102
|
+
</editorialgroup>
|
103
|
+
<ics>
|
104
|
+
<code>35.240.70</code>
|
105
|
+
<text>IT applications in science</text>
|
106
|
+
</ics>
|
107
|
+
</bibitem>
|
108
|
+
</relation>
|
109
|
+
<editorialgroup>
|
110
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
111
|
+
</editorialgroup>
|
112
|
+
<ics>
|
113
|
+
<code>35.240.70</code>
|
114
|
+
<text>IT applications in science</text>
|
115
|
+
</ics>
|
116
|
+
</bibitem> <bibitem type="international-standard" id="ISO19115-2">
|
117
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
|
118
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
|
119
|
+
<uri type="src">https://www.iso.org/standard/39229.html</uri>
|
120
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
|
121
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
|
122
|
+
<docidentifier type="ISO">ISO 19115-2</docidentifier>
|
123
|
+
<contributor>
|
124
|
+
<role type="publisher"/>
|
125
|
+
<organization>
|
126
|
+
<name>International Organization for Standardization</name>
|
127
|
+
<abbreviation>ISO</abbreviation>
|
128
|
+
<uri>www.iso.org</uri>
|
129
|
+
</organization>
|
130
|
+
</contributor>
|
131
|
+
<edition>1</edition>
|
132
|
+
<language>en</language>
|
133
|
+
<language>fr</language>
|
134
|
+
<script>Latn</script>
|
135
|
+
<status>
|
136
|
+
<stage>90</stage>
|
137
|
+
<substage>92</substage>
|
138
|
+
</status>
|
139
|
+
<copyright>
|
140
|
+
<from>2009</from>
|
141
|
+
<owner>
|
127
142
|
<organization>
|
128
|
-
<name>
|
129
|
-
<abbreviation>ISO</abbreviation>
|
130
|
-
<uri>www.iso.org</uri>
|
143
|
+
<name>ISO</name>
|
131
144
|
</organization>
|
132
|
-
</
|
133
|
-
|
134
|
-
|
135
|
-
<
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
<
|
143
|
-
<
|
145
|
+
</owner>
|
146
|
+
</copyright>
|
147
|
+
<relation type="updates">
|
148
|
+
<bibitem>
|
149
|
+
<formattedref>ISO 19115-2</formattedref>
|
150
|
+
</bibitem>
|
151
|
+
</relation>
|
152
|
+
<relation type="instance">
|
153
|
+
<bibitem type="international-standard">
|
154
|
+
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
|
155
|
+
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
|
156
|
+
<uri type="src">https://www.iso.org/standard/39229.html</uri>
|
157
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
|
158
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
|
159
|
+
<docidentifier type="ISO">ISO 19115-2:2009</docidentifier>
|
160
|
+
<date type="published">
|
161
|
+
<on>2009</on>
|
162
|
+
</date>
|
163
|
+
<contributor>
|
164
|
+
<role type="publisher"/>
|
144
165
|
<organization>
|
145
|
-
<name>
|
166
|
+
<name>International Organization for Standardization</name>
|
167
|
+
<abbreviation>ISO</abbreviation>
|
168
|
+
<uri>www.iso.org</uri>
|
146
169
|
</organization>
|
147
|
-
</
|
148
|
-
|
149
|
-
|
150
|
-
<
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
<
|
157
|
-
|
158
|
-
|
159
|
-
<
|
160
|
-
<
|
161
|
-
<docidentifier type="ISO">ISO 19115-2:2009</docidentifier>
|
162
|
-
<date type="published">
|
163
|
-
<on>2009</on>
|
164
|
-
</date>
|
165
|
-
<contributor>
|
166
|
-
<role type="publisher"/>
|
170
|
+
</contributor>
|
171
|
+
<edition>1</edition>
|
172
|
+
<language>en</language>
|
173
|
+
<language>fr</language>
|
174
|
+
<script>Latn</script>
|
175
|
+
<abstract format="plain" language="en" script="Latn">ISO 19115-2:2009 extends the existing geographic metadata standard by defining the schema required for describing imagery and gridded data. It provides information about the properties of the measuring equipment used to acquire the data, the geometry of the measuring process employed by the equipment, and the production process used to digitize the raw data. This extension deals with metadata needed to describe the derivation of geographic information from raw data, including the properties of the measuring system, and the numerical methods and computational procedures used in the derivation. The metadata required to address coverage data in general is addressed sufficiently in the general part of ISO 19115.</abstract>
|
176
|
+
<abstract format="plain" language="fr" script="Latn">L'ISO 19115-2:2009 étend la norme existante sur les métadonnées géographiques en définissant le schéma requis de description des images et des matrices. Elle donne des informations relatives aux propriétés des équipements de mesure utilisés pour obtenir les données, la géométrie du processus de mesure utilisée par ces équipements, et le processus de production utilisé pour numériser les données brutes. Cette extension porte sur les métadonnées nécessaires pour décrire la déduction des informations géographiques à partir de données brutes, y compris les propriétés du système de mesure, et les méthodes numériques et procédures informatiques utilisées pour la déduction. Les métadonnées requises pour aborder les données de couverture en général sont suffisamment abordées dans la partie générale de l'ISO 19115.</abstract>
|
177
|
+
<status>
|
178
|
+
<stage>90</stage>
|
179
|
+
<substage>92</substage>
|
180
|
+
</status>
|
181
|
+
<copyright>
|
182
|
+
<from>2009</from>
|
183
|
+
<owner>
|
167
184
|
<organization>
|
168
|
-
<name>
|
169
|
-
<abbreviation>ISO</abbreviation>
|
170
|
-
<uri>www.iso.org</uri>
|
185
|
+
<name>ISO</name>
|
171
186
|
</organization>
|
172
|
-
</
|
173
|
-
|
174
|
-
|
175
|
-
<
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
<
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
<editorialgroup>
|
197
|
-
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
198
|
-
</editorialgroup>
|
199
|
-
<ics>
|
200
|
-
<code>35.240.70</code>
|
201
|
-
<text>IT applications in science</text>
|
202
|
-
</ics>
|
203
|
-
</bibitem>
|
204
|
-
</relation>
|
205
|
-
<editorialgroup>
|
206
|
-
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
207
|
-
</editorialgroup>
|
208
|
-
<ics>
|
209
|
-
<code>35.240.70</code>
|
210
|
-
<text>IT applications in science</text>
|
211
|
-
</ics>
|
212
|
-
</bibitem>
|
213
|
-
</documents>
|
187
|
+
</owner>
|
188
|
+
</copyright>
|
189
|
+
<relation type="updates">
|
190
|
+
<bibitem>
|
191
|
+
<formattedref>ISO 19115-2</formattedref>
|
192
|
+
</bibitem>
|
193
|
+
</relation>
|
194
|
+
<editorialgroup>
|
195
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
196
|
+
</editorialgroup>
|
197
|
+
<ics>
|
198
|
+
<code>35.240.70</code>
|
199
|
+
<text>IT applications in science</text>
|
200
|
+
</ics>
|
201
|
+
</bibitem>
|
202
|
+
</relation>
|
203
|
+
<editorialgroup>
|
204
|
+
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
205
|
+
</editorialgroup>
|
206
|
+
<ics>
|
207
|
+
<code>35.240.70</code>
|
208
|
+
<text>IT applications in science</text>
|
209
|
+
</ics>
|
210
|
+
</bibitem></documents>
|