Skip to content

Commit

Permalink
Add Quality Result File to Coverage Result
Browse files Browse the repository at this point in the history
  • Loading branch information
jwaspin committed Jan 17, 2024
1 parent f6e97a5 commit 8a9412f
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions lib/adiwg/mdtranslator/internal/internal_metadata_obj.rb
Original file line number Diff line number Diff line change
Expand Up @@ -650,29 +650,38 @@ def newDataQuality

def newConformanceResult
{
dateTime: [],
dateTime: nil,
scope: {},
specification: {},
explanation: nil,
pass: false
}
end

def newQualityResultFile
{
fileName: nil,
fileType: nil,
fileDescription: nil,
fileFormat: {}
}
end

def newCoverageResult
{
dateTime: [],
dateTime: nil,
scope: {},
spatialRepresentationType: nil,
spatialRepresentation: {},
resultContent: [],
resourceFormat: nil,
resultFile: nil
resourceFormat: {},
resultFile: {}
}
end

def newDescriptiveResult
{
dateTime: [],
dateTime: nil,
scope: {},
statement: nil
}
Expand All @@ -695,7 +704,7 @@ def newEvaluationMethod

def newQuantitativeResult
{
dateTime: [],
dateTime: nil,
scope: {},
values: [],
valueUnits: nil,
Expand Down

0 comments on commit 8a9412f

Please sign in to comment.