Skip to content

Commit 0b47a88

Browse files
authoredDec 6, 2023
Release Version 2.18.4 (#308)
* Enforce Specific Versions * Fix Code List Value Remove hardcoded series value. Replace with retrieved value from hDataQuality. * Fix Errors When Undefined * Update .gitignore * Add External Contact Identifiers * Remove puts * Remove puts * Update Version * Update Gemfile.lock
1 parent 680ecbb commit 0b47a88

File tree

5 files changed

+60
-13
lines changed

5 files changed

+60
-13
lines changed
 

‎Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
adiwg-mdtranslator (2.18.3)
4+
adiwg-mdtranslator (2.18.4)
55
adiwg-mdcodes (= 2.8.4)
66
adiwg-mdjson_schemas (= 2.8.1)
77
builder (~> 3.2)

‎lib/adiwg/mdtranslator/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
module ADIWG
110110
module Mdtranslator
111111
# current mdtranslator version
112-
VERSION = "2.18.3"
112+
VERSION = "2.18.4"
113113
end
114114
end
115115

‎lib/adiwg/mdtranslator/writers/html/sections/html_contact.rb

+32
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,38 @@ def writeHtml(hContact)
190190
@html.br
191191
end
192192

193+
# contact - external identifiers []
194+
if hContact.key?(:externalIdentifier) && !hContact[:externalIdentifier].empty?
195+
hContact[:externalIdentifier].each do |identifier|
196+
@html.details do
197+
@html.summary("External Identifier", {'class' => 'h5'})
198+
@html.section(:class => 'block') do
199+
@html.em('Identifier: ')
200+
@html.text!(identifier[:identifier])
201+
@html.br
202+
203+
unless identifier[:namespace].nil?
204+
@html.em('Namespace: ')
205+
@html.text!(identifier[:namespace])
206+
@html.br
207+
end
208+
209+
unless identifier[:version].nil?
210+
@html.em('Version: ')
211+
@html.text!(identifier[:version])
212+
@html.br
213+
end
214+
215+
unless identifier[:description].nil?
216+
@html.em('Description: ')
217+
@html.text!(identifier[:description])
218+
@html.br
219+
end
220+
end
221+
end
222+
end
223+
end
224+
193225
end
194226
end
195227

‎lib/adiwg/mdtranslator/writers/html/sections/html_scope.rb

+18-10
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,29 @@ def writeHtml(hScope)
3232
end
3333

3434
# scope - description [] {scopeDescription}
35-
hScope[:scopeDescriptions].each do |hDescription|
36-
@html.details do
37-
@html.summary('Description', {'class' => 'h5'})
38-
@html.section(:class => 'block') do
39-
descriptionClass.writeHtml(hDescription)
35+
unless !hScope.key?(:scopeDescriptions)
36+
unless hScope[:scopeDescriptions].empty?
37+
hScope[:scopeDescriptions].each do |hDescription|
38+
@html.details do
39+
@html.summary('Description', {'class' => 'h5'})
40+
@html.section(:class => 'block') do
41+
descriptionClass.writeHtml(hDescription)
42+
end
43+
end
4044
end
4145
end
4246
end
4347

4448
# scope - extent [] {extent}
45-
hScope[:extents].each do |hExtent|
46-
@html.details do
47-
@html.summary('Extent', {'class' => 'h5'})
48-
@html.section(:class => 'block') do
49-
extentClass.writeHtml(hExtent)
49+
unless !hScope.key?(:extents)
50+
unless hScope[:extents].empty?
51+
hScope[:extents].each do |hExtent|
52+
@html.details do
53+
@html.summary('Extent', {'class' => 'h5'})
54+
@html.section(:class => 'block') do
55+
extentClass.writeHtml(hExtent)
56+
end
57+
end
5058
end
5159
end
5260
end

‎lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_dataQuality.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,19 @@ def writeXML(hDataQuality)
1717
reportClass = DataQualityReport.new(@xml, @hResponseObj)
1818
citationClass = CI_Citation.new(@xml, @hResponseObj)
1919

20+
codeListValue = nil
21+
unless hDataQuality[:scope].empty?
22+
unless hDataQuality[:scope][:scopeCode].nil?
23+
codeListValue = hDataQuality[:scope][:scopeCode]
24+
end
25+
end
26+
2027
@xml.tag!('mdq:DQ_DataQuality') do
2128

2229
@xml.tag!('mdq:scope') do
2330
@xml.tag!('mcc:MD_Scope') do
2431
@xml.tag!('mcc:level') do
25-
@xml.tag!('mcc:MD_ScopeCode', codeList: "http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode", codeListValue: "series")
32+
@xml.tag!('mcc:MD_ScopeCode', codeList: "http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode", codeListValue: codeListValue)
2633
end
2734
end
2835
end

0 commit comments

Comments
 (0)
Please sign in to comment.