relaton 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,6 +13,10 @@ module Relaton
13
13
  def get(code, date, opts)
14
14
  raise "This is an abstract class!"
15
15
  end
16
+
17
+ def from_xml(xml)
18
+ raise "This is an abstract class!"
19
+ end
16
20
  end
17
21
  end
18
22
 
@@ -1,3 +1,3 @@
1
1
  module Relaton
2
- VERSION = "0.2.5".freeze
2
+ VERSION = "0.2.6".freeze
3
3
  end
@@ -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 = "gem for importing and caching bibliographic references to technical standards"
13
+ spec.summary = "The Relaton core for importing, managing and caching bibliographic references to technical standards."
14
14
  spec.description = <<~DESCRIPTION
15
- gem for importing and caching bibliographic references to technical standards
16
- in the Relaton/XML bibliographic model.
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.3.1"
32
- spec.add_dependency "isobib", "~> 0.3.1"
33
- spec.add_dependency "ietfbib", "~> 0.4.1"
34
- spec.add_dependency "iecbib", "~> 0.1.1"
35
- spec.add_dependency 'iso-bib-item', '~> 0.3.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.rm_f %w(testcache testcache2)
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 = PStore.new "testcache"
32
- testcache.transaction true do
33
- expect(testcache["ISO(ISO 19115-1)"]["bib"].to_xml).to include "<bibitem type=\"international-standard\" id=\"ISO19115-1\">"
34
- end
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 = PStore.new "testcache"
48
- testcache.transaction do
49
- expect(testcache["ISO(ISO 111111119115-1)"]["fetched"].to_s).to eq Date.today.to_s
50
- expect(testcache["ISO(ISO 111111119115-1)"]["bib"]).to eq "not_found"
51
- end
52
- testcache = PStore.new "testcache2"
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", value: "test value"
70
- expect(@db.load_entry("test key")[:value]).to eq "test value"
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 = PStore.new "testcache"
82
- testcache.transaction true do
83
- expect(testcache["CN(GB/T 20223:2006)"]["bib"].to_xml).to include "<bibitem type=\"standard\" id=\"GB/T20223\">"
84
- end
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 = PStore.new "testcache"
99
- testcache.transaction true do
100
- expect(testcache["IETF(RFC 8341)"]["bib"].to_xml).to include "<bibitem id=\"RFC8341\">"
101
- end
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.transaction do
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
- store = PStore.new file
136
- store.transaction do
137
- store[:resp] = method.call(*args) unless store.root? :resp
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
- <bibitem type="international-standard" id="ISO19115-1">
4
- <title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
5
- <title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
6
- <uri type="src">https://www.iso.org/standard/53798.html</uri>
7
- <uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
8
- <uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
9
- <docidentifier type="ISO">ISO 19115-1</docidentifier>
10
- <contributor>
11
- <role type="publisher"/>
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>International Organization for Standardization</name>
14
- <abbreviation>ISO</abbreviation>
15
- <uri>www.iso.org</uri>
29
+ <name>ISO</name>
16
30
  </organization>
17
- </contributor>
18
- <edition>1</edition>
19
- <language>en</language>
20
- <language>fr</language>
21
- <script>Latn</script>
22
- <status>
23
- <stage>60</stage>
24
- <substage>60</substage>
25
- </status>
26
- <copyright>
27
- <from>2014</from>
28
- <owner>
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>ISO</name>
62
+ <name>International Organization for Standardization</name>
63
+ <abbreviation>ISO</abbreviation>
64
+ <uri>www.iso.org</uri>
31
65
  </organization>
32
- </owner>
33
- </copyright>
34
- <relation type="obsoletes">
35
- <bibitem>
36
- <formattedref>ISO 19115:2003</formattedref>
37
- </bibitem>
38
- </relation>
39
- <relation type="obsoletes">
40
- <bibitem>
41
- <formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
42
- </bibitem>
43
- </relation>
44
- <relation type="updates">
45
- <bibitem>
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>International Organization for Standardization</name>
64
- <abbreviation>ISO</abbreviation>
65
- <uri>www.iso.org</uri>
81
+ <name>ISO</name>
66
82
  </organization>
67
- </contributor>
68
- <edition>1</edition>
69
- <language>en</language>
70
- <language>fr</language>
71
- <script>Latn</script>
72
- <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>
73
- <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>
74
- <status>
75
- <stage>60</stage>
76
- <substage>60</substage>
77
- </status>
78
- <copyright>
79
- <from>2014</from>
80
- <owner>
81
- <organization>
82
- <name>ISO</name>
83
- </organization>
84
- </owner>
85
- </copyright>
86
- <relation type="obsoletes">
87
- <bibitem>
88
- <formattedref>ISO 19115:2003</formattedref>
89
- </bibitem>
90
- </relation>
91
- <relation type="obsoletes">
92
- <bibitem>
93
- <formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
94
- </bibitem>
95
- </relation>
96
- <relation type="updates">
97
- <bibitem>
98
- <formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
99
- </bibitem>
100
- </relation>
101
- <editorialgroup>
102
- <technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
103
- </editorialgroup>
104
- <ics>
105
- <code>35.240.70</code>
106
- <text>IT applications in science</text>
107
- </ics>
108
- </bibitem>
109
- </relation>
110
- <editorialgroup>
111
- <technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
112
- </editorialgroup>
113
- <ics>
114
- <code>35.240.70</code>
115
- <text>IT applications in science</text>
116
- </ics>
117
- </bibitem>
118
- <bibitem type="international-standard" id="ISO19115-2">
119
- <title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
120
- <title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
121
- <uri type="src">https://www.iso.org/standard/39229.html</uri>
122
- <uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
123
- <uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
124
- <docidentifier type="ISO">ISO 19115-2</docidentifier>
125
- <contributor>
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>International Organization for Standardization</name>
129
- <abbreviation>ISO</abbreviation>
130
- <uri>www.iso.org</uri>
143
+ <name>ISO</name>
131
144
  </organization>
132
- </contributor>
133
- <edition>1</edition>
134
- <language>en</language>
135
- <language>fr</language>
136
- <script>Latn</script>
137
- <status>
138
- <stage>90</stage>
139
- <substage>92</substage>
140
- </status>
141
- <copyright>
142
- <from>2009</from>
143
- <owner>
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>ISO</name>
166
+ <name>International Organization for Standardization</name>
167
+ <abbreviation>ISO</abbreviation>
168
+ <uri>www.iso.org</uri>
146
169
  </organization>
147
- </owner>
148
- </copyright>
149
- <relation type="updates">
150
- <bibitem>
151
- <formattedref>ISO 19115-2</formattedref>
152
- </bibitem>
153
- </relation>
154
- <relation type="instance">
155
- <bibitem type="international-standard">
156
- <title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
157
- <title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
158
- <uri type="src">https://www.iso.org/standard/39229.html</uri>
159
- <uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
160
- <uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
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>International Organization for Standardization</name>
169
- <abbreviation>ISO</abbreviation>
170
- <uri>www.iso.org</uri>
185
+ <name>ISO</name>
171
186
  </organization>
172
- </contributor>
173
- <edition>1</edition>
174
- <language>en</language>
175
- <language>fr</language>
176
- <script>Latn</script>
177
- <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>
178
- <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>
179
- <status>
180
- <stage>90</stage>
181
- <substage>92</substage>
182
- </status>
183
- <copyright>
184
- <from>2009</from>
185
- <owner>
186
- <organization>
187
- <name>ISO</name>
188
- </organization>
189
- </owner>
190
- </copyright>
191
- <relation type="updates">
192
- <bibitem>
193
- <formattedref>ISO 19115-2</formattedref>
194
- </bibitem>
195
- </relation>
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>