adiwg-mdtranslator 2.16.1 → 2.17.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +29 -2
- data/lib/adiwg/mdtranslator/internal/internal_metadata_obj.rb +2 -3
- data/lib/adiwg/mdtranslator/readers/fgdc/modules/module_attribute.rb +6 -2
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_processStep.rb +3 -14
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_processing.rb +4 -5
- data/lib/adiwg/mdtranslator/version.rb +3 -1
- data/lib/adiwg/mdtranslator/writers/html/sections/html_algorithm.rb +48 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_nominalResolution.rb +51 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_processReport.rb +47 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_processStep.rb +35 -8
- data/lib/adiwg/mdtranslator/writers/html/sections/html_processing.rb +89 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_source.rb +25 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_algorithm.rb +61 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_leProcessStep.rb +167 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_leSource.rb +150 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_liProcessStep.rb +130 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_liSource.rb +126 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_lineage.rb +5 -4
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_nominalResolution.rb +61 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_processReport.rb +66 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_processStep.rb +22 -101
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_processing.rb +110 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_1/classes/class_source.rb +19 -95
- data/lib/adiwg/mdtranslator/writers/iso19115_1/iso19115_1_writer_messages_eng.yml +11 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_algorithm.rb +61 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_leProcessStep.rb +153 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_leSource.rb +134 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_liProcessStep.rb +126 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_liSource.rb +114 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_lineage.rb +13 -11
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_nominalResolution.rb +61 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_processReport.rb +66 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_processStep.rb +22 -96
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_processing.rb +110 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_source.rb +20 -82
- data/lib/adiwg/mdtranslator/writers/iso19115_2/classes/class_taxonomy.rb +2 -2
- data/lib/adiwg/mdtranslator/writers/iso19115_2/iso19115_2_writer_messages_eng.yml +9 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_processStep.rb +0 -1
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_processing.rb +1 -1
- metadata +22 -2
@@ -1,21 +1,18 @@
|
|
1
|
-
# ISO <<
|
1
|
+
# ISO <<Abstract>> Source
|
2
2
|
# 19115-1 writer output in XML
|
3
3
|
|
4
4
|
# History:
|
5
|
-
# Stan Smith 2019-
|
5
|
+
# Stan Smith 2019-09-27 original script.
|
6
6
|
|
7
|
-
require_relative '
|
8
|
-
require_relative '
|
9
|
-
require_relative 'class_citation'
|
10
|
-
require_relative 'class_scope'
|
11
|
-
require_relative 'class_processStep'
|
7
|
+
require_relative 'class_liSource'
|
8
|
+
require_relative 'class_leSource'
|
12
9
|
|
13
10
|
module ADIWG
|
14
11
|
module Mdtranslator
|
15
12
|
module Writers
|
16
13
|
module Iso19115_1
|
17
14
|
|
18
|
-
class
|
15
|
+
class Source
|
19
16
|
|
20
17
|
def initialize(xml, hResponseObj)
|
21
18
|
@xml = xml
|
@@ -25,99 +22,26 @@ module ADIWG
|
|
25
22
|
def writeXML(hSource, inContext = nil)
|
26
23
|
|
27
24
|
# classes used
|
28
|
-
|
29
|
-
|
30
|
-
citationClass = CI_Citation.new(@xml, @hResponseObj)
|
31
|
-
scopeClass = MD_Scope.new(@xml, @hResponseObj)
|
32
|
-
stepClass = LI_ProcessStep.new(@xml, @hResponseObj)
|
25
|
+
liSourceClass = LI_Source.new(@xml, @hResponseObj)
|
26
|
+
leSourceClass = LE_Source.new(@xml, @hResponseObj)
|
33
27
|
|
34
|
-
outContext =
|
35
|
-
outContext = inContext + ' source' unless inContext.nil?
|
28
|
+
outContext = inContext
|
36
29
|
|
37
|
-
#
|
38
|
-
|
39
|
-
s = hSource[:sourceId]
|
40
|
-
unless s.nil?
|
41
|
-
attributes = { id: s.gsub(/[^0-9A-Za-z]/,'') }
|
42
|
-
end
|
43
|
-
|
44
|
-
@xml.tag!('mrl:LI_Source', attributes) do
|
45
|
-
|
46
|
-
# source - description
|
47
|
-
unless hSource[:description].nil?
|
48
|
-
@xml.tag!('mrl:description') do
|
49
|
-
@xml.tag!('gco:CharacterString', hSource[:description])
|
50
|
-
end
|
51
|
-
end
|
52
|
-
if hSource[:description].nil? && @hResponseObj[:writerShowTags]
|
53
|
-
@xml.tag!('mrl:description')
|
54
|
-
end
|
55
|
-
|
56
|
-
# source - spatial resolution {MD_Resolution}
|
57
|
-
unless hSource[:spatialResolution].empty?
|
58
|
-
@xml.tag!('mrl:sourceSpatialResolution') do
|
59
|
-
resolutionClass.writeXML(hSource[:spatialResolution], outContext)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
if hSource[:spatialResolution].empty? && @hResponseObj[:writerShowTags]
|
63
|
-
@xml.tag!('mrl:sourceSpatialResolution')
|
64
|
-
end
|
30
|
+
# use LE_Source if hSource has any ...
|
31
|
+
# processedLevel, resolution
|
65
32
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
referenceClass.writeXML(hSource[:referenceSystem])
|
70
|
-
end
|
71
|
-
end
|
72
|
-
if hSource[:referenceSystem].empty? && @hResponseObj[:writerShowTags]
|
73
|
-
@xml.tag!('mrl:sourceReferenceSystem')
|
74
|
-
end
|
33
|
+
useLE = false
|
34
|
+
useLE = true unless hSource[:processedLevel].empty?
|
35
|
+
useLE = true unless hSource[:resolution].empty?
|
75
36
|
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
end
|
82
|
-
if hSource[:sourceCitation].empty? && @hResponseObj[:writerShowTags]
|
83
|
-
@xml.tag!('mrl:sourceCitation')
|
84
|
-
end
|
85
|
-
|
86
|
-
# source - metadata [] {CI_Citation}
|
87
|
-
aCitations = hSource[:metadataCitations]
|
88
|
-
aCitations.each do |hCitation|
|
89
|
-
@xml.tag!('mrl:sourceMetadata') do
|
90
|
-
citationClass.writeXML(hCitation, outContext)
|
91
|
-
end
|
92
|
-
end
|
93
|
-
if aCitations.empty? && @hResponseObj[:writerShowTags]
|
94
|
-
@xml.tag!('mrl:sourceMetadata')
|
95
|
-
end
|
96
|
-
|
97
|
-
# source - scope {MD_Scope}
|
98
|
-
unless hSource[:scope].empty?
|
99
|
-
@xml.tag!('mrl:scope') do
|
100
|
-
scopeClass.writeXML(hSource[:scope], outContext)
|
101
|
-
end
|
102
|
-
end
|
103
|
-
if hSource[:scope].empty? && @hResponseObj[:writerShowTags]
|
104
|
-
@xml.tag!('mrl:scope')
|
105
|
-
end
|
106
|
-
|
107
|
-
# source - process step [] {LI_ProcessStep}
|
108
|
-
aSteps = hSource[:sourceSteps]
|
109
|
-
aSteps.each do |hStep|
|
110
|
-
@xml.tag!('mrl:sourceStep') do
|
111
|
-
stepClass.writeXML(hStep)
|
112
|
-
end
|
113
|
-
end
|
114
|
-
if aSteps.empty? && @hResponseObj[:writerShowTags]
|
115
|
-
@xml.tag!('mrl:sourceStep')
|
116
|
-
end
|
37
|
+
if useLE
|
38
|
+
leSourceClass.writeXML(hSource, outContext)
|
39
|
+
else
|
40
|
+
liSourceClass.writeXML(hSource, outContext)
|
41
|
+
end
|
117
42
|
|
118
|
-
end # mrl:LI_Source tag
|
119
43
|
end # writeXML
|
120
|
-
end #
|
44
|
+
end # Source class
|
121
45
|
|
122
46
|
end
|
123
47
|
end
|
@@ -130,3 +130,14 @@ messageList:
|
|
130
130
|
- {id: 400, message: "invalid topic category"}
|
131
131
|
|
132
132
|
- {id: 410, message: "temporal extent must have a TimeInstant or TimePeriod"}
|
133
|
+
|
134
|
+
- {id: 420, message: "algorithm citation is missing"}
|
135
|
+
- {id: 421, message: "algorithm description is missing"}
|
136
|
+
|
137
|
+
- {id: 430, message: "processing identifier is missing"}
|
138
|
+
|
139
|
+
- {id: 440, message: "process step report name is missing"}
|
140
|
+
|
141
|
+
- {id: 450, message: "nominal resolution is missing"}
|
142
|
+
|
143
|
+
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# ISO <<Class>> LE_Algorithm
|
2
|
+
# 19115-2 writer output in XML
|
3
|
+
|
4
|
+
# History:
|
5
|
+
# Stan Smith 201-09-25 original script.
|
6
|
+
|
7
|
+
require_relative '../iso19115_2_writer'
|
8
|
+
require_relative 'class_citation'
|
9
|
+
|
10
|
+
module ADIWG
|
11
|
+
module Mdtranslator
|
12
|
+
module Writers
|
13
|
+
module Iso19115_2
|
14
|
+
|
15
|
+
class LE_Algorithm
|
16
|
+
|
17
|
+
def initialize(xml, hResponseObj)
|
18
|
+
@xml = xml
|
19
|
+
@hResponseObj = hResponseObj
|
20
|
+
@NameSpace = ADIWG::Mdtranslator::Writers::Iso19115_2
|
21
|
+
end
|
22
|
+
|
23
|
+
def writeXML(hAlgorithm, inContext = nil)
|
24
|
+
|
25
|
+
# classes used
|
26
|
+
citationClass = CI_Citation.new(@xml, @hResponseObj)
|
27
|
+
|
28
|
+
outContext = 'algorithm'
|
29
|
+
outContext = inContext + ' ' + outContext unless inContext.nil?
|
30
|
+
|
31
|
+
@xml.tag!('gmi:LE_Algorithm') do
|
32
|
+
|
33
|
+
# algorithm - citation {CI_Citation} (required)
|
34
|
+
hCitation = hAlgorithm[:citation]
|
35
|
+
unless hCitation.empty?
|
36
|
+
@xml.tag!('gmi:citation') do
|
37
|
+
citationClass.writeXML(hCitation, outContext)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
if hCitation.empty?
|
41
|
+
@NameSpace.issueWarning(390, 'gmi:citation', outContext)
|
42
|
+
end
|
43
|
+
|
44
|
+
# algorithm - description (required)
|
45
|
+
unless hAlgorithm[:description].nil?
|
46
|
+
@xml.tag!('gmi:description') do
|
47
|
+
@xml.tag!('gco:CharacterString', hAlgorithm[:description])
|
48
|
+
end
|
49
|
+
end
|
50
|
+
if hAlgorithm[:description].nil?
|
51
|
+
@NameSpace.issueWarning(391, 'gmi:description', outContext)
|
52
|
+
end
|
53
|
+
|
54
|
+
end # gmi:LE_Algorithm tag
|
55
|
+
end # writeXML
|
56
|
+
end # LE_Algorithm class
|
57
|
+
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,153 @@
|
|
1
|
+
# ISO <<Class>> LE_ProcessStep
|
2
|
+
# 19115-2 writer output in XML
|
3
|
+
|
4
|
+
# History:
|
5
|
+
# Stan Smith 2019-09-25 original script.
|
6
|
+
|
7
|
+
require_relative '../iso19115_2_writer'
|
8
|
+
require_relative 'class_responsibleParty'
|
9
|
+
require_relative 'class_source'
|
10
|
+
require_relative 'class_processing'
|
11
|
+
require_relative 'class_processReport'
|
12
|
+
|
13
|
+
module ADIWG
|
14
|
+
module Mdtranslator
|
15
|
+
module Writers
|
16
|
+
module Iso19115_2
|
17
|
+
|
18
|
+
class LE_ProcessStep
|
19
|
+
|
20
|
+
def initialize(xml, hResponseObj)
|
21
|
+
@xml = xml
|
22
|
+
@hResponseObj = hResponseObj
|
23
|
+
@NameSpace = ADIWG::Mdtranslator::Writers::Iso19115_2
|
24
|
+
end
|
25
|
+
|
26
|
+
def writeXML(hStep, inContext = nil)
|
27
|
+
|
28
|
+
# classes used
|
29
|
+
partyClass = CI_ResponsibleParty.new(@xml, @hResponseObj)
|
30
|
+
sourceClass = Source.new(@xml, @hResponseObj)
|
31
|
+
processingClass = LE_Processing.new(@xml, @hResponseObj)
|
32
|
+
reportClass = LE_ProcessStepReport.new(@xml, @hResponseObj)
|
33
|
+
|
34
|
+
outContext = 'process step'
|
35
|
+
outContext = outContext + ' ' + hStep[:stepId].to_s unless hStep[:stepId].nil?
|
36
|
+
outContext = inContext + ' ' + outContext unless inContext.nil?
|
37
|
+
|
38
|
+
# process step - id
|
39
|
+
attributes = {}
|
40
|
+
s = hStep[:stepId]
|
41
|
+
unless s.nil?
|
42
|
+
attributes = { id: s.gsub(/[^0-9A-Za-z]/,'') }
|
43
|
+
end
|
44
|
+
|
45
|
+
@xml.tag!('gmi:LE_ProcessStep', attributes) do
|
46
|
+
|
47
|
+
# process step - description (required)
|
48
|
+
unless hStep[:description].nil?
|
49
|
+
@xml.tag!('gmd:description') do
|
50
|
+
@xml.tag!('gco:CharacterString', hStep[:description])
|
51
|
+
end
|
52
|
+
end
|
53
|
+
if hStep[:description].nil?
|
54
|
+
@NameSpace.issueWarning(260, 'gmd:description', outContext)
|
55
|
+
end
|
56
|
+
|
57
|
+
# process step - rationale
|
58
|
+
unless hStep[:rationale].nil?
|
59
|
+
@xml.tag!('gmd:rationale') do
|
60
|
+
@xml.tag!('gco:CharacterString', hStep[:rationale])
|
61
|
+
end
|
62
|
+
end
|
63
|
+
if hStep[:rationale].nil? && @hResponseObj[:writerShowTags]
|
64
|
+
@xml.tag!('gmd:rationale')
|
65
|
+
end
|
66
|
+
|
67
|
+
# process step - datetime
|
68
|
+
hPeriod = hStep[:timePeriod]
|
69
|
+
unless hPeriod.empty?
|
70
|
+
hDate = hPeriod[:startDateTime]
|
71
|
+
if hDate.empty?
|
72
|
+
hDate = hPeriod[:endDateTime]
|
73
|
+
end
|
74
|
+
date = hDate[:dateTime]
|
75
|
+
dateResolution = hDate[:dateResolution]
|
76
|
+
s = AdiwgDateTimeFun.stringDateTimeFromDateTime(date, dateResolution)
|
77
|
+
if s != 'ERROR'
|
78
|
+
@xml.tag!('gmd:dateTime') do
|
79
|
+
@xml.tag!('gco:DateTime', s)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
if hPeriod.empty? && @hResponseObj[:writerShowTags]
|
84
|
+
@xml.tag!('gmd:dateTime')
|
85
|
+
end
|
86
|
+
|
87
|
+
# process step - processor [] {CI_ResponsibleParty}
|
88
|
+
aParties = hStep[:processors]
|
89
|
+
aParties.each do |hRParty|
|
90
|
+
role = hRParty[:roleName]
|
91
|
+
aParties = hRParty[:parties]
|
92
|
+
aParties.each do |hParty|
|
93
|
+
@xml.tag!('gmd:processor') do
|
94
|
+
partyClass.writeXML(role, hParty, outContext)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
if aParties.empty? && @hResponseObj[:writerShowTags]
|
99
|
+
@xml.tag!('gmd:processor')
|
100
|
+
end
|
101
|
+
|
102
|
+
# process step - source [] {Source}
|
103
|
+
aSources = hStep[:stepSources]
|
104
|
+
aSources.each do |hSource|
|
105
|
+
@xml.tag!('gmd:source') do
|
106
|
+
sourceClass.writeXML(hSource)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
if aSources.empty? && @hResponseObj[:writerShowTags]
|
110
|
+
@xml.tag!('gmd:source')
|
111
|
+
end
|
112
|
+
|
113
|
+
# process step - processing information {LE_Processing}
|
114
|
+
hProcessing = hStep[:processingInformation]
|
115
|
+
unless hProcessing.empty?
|
116
|
+
@xml.tag!('gmi:processingInformation') do
|
117
|
+
processingClass.writeXML(hProcessing, outContext)
|
118
|
+
end
|
119
|
+
end
|
120
|
+
if hProcessing.empty? && @hResponseObj[:writerShowTags]
|
121
|
+
@xml.tag!('gmi:processingInformation')
|
122
|
+
end
|
123
|
+
|
124
|
+
# process step - output [] {Source}
|
125
|
+
aOutput = hStep[:stepProducts]
|
126
|
+
aOutput.each do |hSource|
|
127
|
+
@xml.tag!('gmi:output') do
|
128
|
+
sourceClass.writeXML(hSource)
|
129
|
+
end
|
130
|
+
end
|
131
|
+
if aOutput.empty? && @hResponseObj[:writerShowTags]
|
132
|
+
@xml.tag!('gmi:output')
|
133
|
+
end
|
134
|
+
|
135
|
+
# process step - report [] {LE_ProcessStepReport}
|
136
|
+
aReports = hStep[:reports]
|
137
|
+
aReports.each do |hReport|
|
138
|
+
@xml.tag!('gmi:report') do
|
139
|
+
reportClass.writeXML(hReport)
|
140
|
+
end
|
141
|
+
end
|
142
|
+
if aReports.empty? && @hResponseObj[:writerShowTags]
|
143
|
+
@xml.tag!('gmi:report')
|
144
|
+
end
|
145
|
+
|
146
|
+
end # gmd:LE_ProcessStep tag
|
147
|
+
end # writeXML
|
148
|
+
end # LE_ProcessStep class
|
149
|
+
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
end
|
@@ -0,0 +1,134 @@
|
|
1
|
+
# ISO <<Class>> LE_Source
|
2
|
+
# 19115-2 writer output in XML
|
3
|
+
|
4
|
+
# History:
|
5
|
+
# Stan Smith 2019-09-25 original script.
|
6
|
+
|
7
|
+
require_relative 'class_fraction'
|
8
|
+
require_relative 'class_referenceSystem'
|
9
|
+
require_relative 'class_citation'
|
10
|
+
require_relative 'class_processStep'
|
11
|
+
require_relative 'class_rsIdentifier'
|
12
|
+
require_relative 'class_nominalResolution'
|
13
|
+
|
14
|
+
module ADIWG
|
15
|
+
module Mdtranslator
|
16
|
+
module Writers
|
17
|
+
module Iso19115_2
|
18
|
+
|
19
|
+
class LE_Source
|
20
|
+
|
21
|
+
def initialize(xml, hResponseObj)
|
22
|
+
@xml = xml
|
23
|
+
@hResponseObj = hResponseObj
|
24
|
+
end
|
25
|
+
|
26
|
+
def writeXML(hSource, inContext = nil)
|
27
|
+
|
28
|
+
# classes used
|
29
|
+
fractionClass = MD_RepresentativeFraction.new(@xml, @hResponseObj)
|
30
|
+
systemClass = MD_ReferenceSystem.new(@xml, @hResponseObj)
|
31
|
+
citationClass = CI_Citation.new(@xml, @hResponseObj)
|
32
|
+
stepClass = ProcessStep.new(@xml, @hResponseObj)
|
33
|
+
identifierClass = RS_Identifier.new(@xml, @hResponseObj)
|
34
|
+
resolutionClass = LE_NominalResolution.new(@xml, @hResponseObj)
|
35
|
+
|
36
|
+
# source - id
|
37
|
+
attributes = {}
|
38
|
+
s = hSource[:sourceId]
|
39
|
+
unless s.nil?
|
40
|
+
attributes = { id: s.gsub(/[^0-9A-Za-z]/,'') }
|
41
|
+
end
|
42
|
+
|
43
|
+
outContext = 'source'
|
44
|
+
outContext = outContext + ' ' + hSource[:sourceId].to_s unless hSource[:sourceId].nil?
|
45
|
+
outContext = inContext + ' ' + outContext unless inContext.nil?
|
46
|
+
|
47
|
+
@xml.tag!('gmi:LE_Source', attributes) do
|
48
|
+
|
49
|
+
# source - description
|
50
|
+
unless hSource[:description].nil?
|
51
|
+
@xml.tag!('gmd:description') do
|
52
|
+
@xml.tag!('gco:CharacterString', hSource[:description])
|
53
|
+
end
|
54
|
+
end
|
55
|
+
if hSource[:description].nil? && @hResponseObj[:writerShowTags]
|
56
|
+
@xml.tag!('gmd:description')
|
57
|
+
end
|
58
|
+
|
59
|
+
# source - scale denominator {MD_RepresentativeFraction}
|
60
|
+
hResolution = hSource[:spatialResolution]
|
61
|
+
unless hResolution[:scaleFactor].nil?
|
62
|
+
@xml.tag!('gmd:scaleDenominator') do
|
63
|
+
fractionClass.writeXML(hResolution[:scaleFactor])
|
64
|
+
end
|
65
|
+
end
|
66
|
+
if hResolution[:scaleFactor].nil? && @hResponseObj[:writerShowTags]
|
67
|
+
@xml.tag!('gmd:scaleDenominator')
|
68
|
+
end
|
69
|
+
|
70
|
+
# source - reference system {MD_ReferenceSystem}
|
71
|
+
hSystem = hSource[:referenceSystem]
|
72
|
+
unless hSystem.empty?
|
73
|
+
@xml.tag!('gmd:sourceReferenceSystem') do
|
74
|
+
systemClass.writeXML(hSystem)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
if hSystem.empty? && @hResponseObj[:writerShowTags]
|
78
|
+
@xml.tag!('gmd:sourceReferenceSystem')
|
79
|
+
end
|
80
|
+
|
81
|
+
# source - citation {CI_Citation}
|
82
|
+
hCitation = hSource[:sourceCitation]
|
83
|
+
unless hCitation.empty?
|
84
|
+
@xml.tag!('gmd:sourceCitation') do
|
85
|
+
citationClass.writeXML(hCitation, outContext)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
if hCitation.empty? && @hResponseObj[:writerShowTags]
|
89
|
+
@xml.tag!('gmd:sourceCitation')
|
90
|
+
end
|
91
|
+
|
92
|
+
# source - extent [] {EX_Extent} (not implemented)
|
93
|
+
|
94
|
+
# source - source step [] {ProcessStep}
|
95
|
+
aSteps = hSource[:sourceSteps]
|
96
|
+
aSteps.each do |hStep|
|
97
|
+
@xml.tag!('gmd:sourceStep') do
|
98
|
+
stepClass.writeXML(hStep)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
if aSteps.empty? && @hResponseObj[:writerShowTags]
|
102
|
+
@xml.tag!('gmd:sourceStep')
|
103
|
+
end
|
104
|
+
|
105
|
+
# source - processed level {RS_Identifier}
|
106
|
+
hProcess = hSource[:processedLevel]
|
107
|
+
unless hProcess.empty?
|
108
|
+
@xml.tag!('gmi:processedLevel') do
|
109
|
+
identifierClass.writeXML(hProcess, outContext)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
if hProcess.empty? && @hResponseObj[:writerShowTags]
|
113
|
+
@xml.tag!('gmi:processedLevel')
|
114
|
+
end
|
115
|
+
|
116
|
+
# source - resolution {LE_NominalResolution}
|
117
|
+
hNominal = hSource[:resolution]
|
118
|
+
unless hNominal.empty?
|
119
|
+
@xml.tag!('gmi:resolution') do
|
120
|
+
resolutionClass.writeXML(hNominal, outContext)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
if hNominal.empty? && @hResponseObj[:writerShowTags]
|
124
|
+
@xml.tag!('gmi:resolution')
|
125
|
+
end
|
126
|
+
|
127
|
+
end # gmd:LE_Source tag
|
128
|
+
end # writeXML
|
129
|
+
end # LE_Source class
|
130
|
+
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|