diff --git a/DESCRIPTION b/DESCRIPTION index 9f976760..ce293141 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,7 +2,7 @@ Package: geometa Type: Package Title: Tools for Reading and Writing ISO/OGC Geographic Metadata Version: 0.9 -Date: 2024-12-08 +Date: 2024-12-12 Authors@R: c( person("Emmanuel", "Blondel", role = c("aut", "cre"), email = "emmanuel.blondel1@gmail.com", comment = c(ORCID = "0000-0002-5870-5762")), person("R Consortium", role = "fnd")) diff --git a/R/ISOAbstractResult.R b/R/ISOAbstractResult.R index dd643995..c4d05698 100644 --- a/R/ISOAbstractResult.R +++ b/R/ISOAbstractResult.R @@ -10,7 +10,9 @@ #' @note abstract class #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_Result} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_Result} #' #' @author Emmanuel Blondel #' @@ -18,15 +20,12 @@ ISOAbstractResult <- R6Class("ISOAbstractResult", inherit = ISOAbstractObject, private = list( xmlElement = "AbstractDQ_Result", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list( - #'@field specification specification - specification = NULL, - #'@field explanation explanation - explanation = NULL, - #'@field pass pass - pass = NULL, #'@description Initializes object #'@param xml object of class \link{XMLInternalNode-class} diff --git a/R/ISOConformanceResult.R b/R/ISOConformanceResult.R index 2b748623..10edf2ff 100644 --- a/R/ISOConformanceResult.R +++ b/R/ISOConformanceResult.R @@ -22,7 +22,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_ConformanceResult} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_ConformanceResult} #' #' @author Emmanuel Blondel #' @@ -30,9 +32,17 @@ ISOConformanceResult <- R6Class("ISOConformanceResult", inherit = ISOAbstractResult, private = list( xmlElement = "DQ_ConformanceResult", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list( + + #'@field resultScope resultScope [0..1]: ISOScope (=> 19115-3) + resultScope = NULL, + #'@field dateTime dateTime [0..1] (=> 19115-3) + dateTime = NULL, #'@field specification specification specification = NULL, #'@field explanation explanation @@ -46,6 +56,26 @@ ISOConformanceResult <- R6Class("ISOConformanceResult", super$initialize(xml = xml) }, + #'@description Set result scope + #'@param scope object of class \link{ISOScope} + setResultScope = function(scope){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!is(scope, "ISOScope")){ + stop("The argument should be a 'ISOScope' object") + } + self$resultScope = scope + }, + + #'@description Set date time + #'@param dateTime date time, object of class \link{POSIXct} + setDateTime = function(dateTime){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!all(class(dateTime) == c("POSIXct","POSIXt"))){ + stop("The argument should be an 'POSIXct'/'POSIXt' object") + } + self$dateTime <- dateTime + }, + #'@description Set specification #'@param specification specification setSpecification = function(specification){ diff --git a/R/ISODataQuality.R b/R/ISODataQuality.R index 19a54ed7..9b715773 100644 --- a/R/ISODataQuality.R +++ b/R/ISODataQuality.R @@ -88,12 +88,17 @@ ISODataQuality <- R6Class("ISODataQuality", inherit = ISOAbstractObject, private = list( xmlElement = "DQ_DataQuality", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list( #'@field scope scope scope = NULL, - #'@field report list of reports + #'@field standaloneQualityReport standalone quality report (=> 19115-3) + standaloneQualityReport = NULL, + #'@field report list of reports (=> 19139) report = list(), #'@field lineage lineage lineage = NULL, @@ -107,18 +112,36 @@ ISODataQuality <- R6Class("ISODataQuality", #'@description Set scope #'@param scope scope setScope = function(scope){ - if(!is(scope, "ISODataQualityScope")){ - stop("The argument should be a 'ISODataQualityScope' object") - } + switch(getMetadataStandard(), + "19139" = { + if(!is(scope, "ISODataQualityScope")){ + stop("The argument should be a 'ISODataQualityScope' object") + } + }, + "19115-3" = { + if(!is(scope, "ISOScope")){ + stop("The argument should be a 'ISOScope' object") + } + } + ) self$scope <- scope }, + #'@description Set standalone quality report + #'@param report object of class \link{ISOStandaloneQualityReportInformation} + setStandaloneQualityReport = function(report){ + if(!is(report, "ISOStandaloneQualityReportInformation")){ + stop("The argument should inherit class 'ISOStandaloneQualityReportInformation'") + } + self$standaloneQualityReport = report + }, + #'@description Adds report - #'@param report report, object of class \link{ISODomainConsistency} + #'@param report report, object of class \link{ISODataQualityAbstractElement} #'@return \code{TRUE} if added, \code{FALSE} otherwise addReport = function(report){ - if(!is(report, "ISODomainConsistency")){ - stop("The argument should be a 'ISODomainConsistency' object") + if(!is(report, "ISODataQualityAbstractElement")){ + stop("The argument should inherit class 'ISODataQualityAbstractElement'") } self$report <- c(self$report, report) }, @@ -126,6 +149,7 @@ ISODataQuality <- R6Class("ISODataQuality", #'@description Set lineage #'@param lineage lineage, object of class \link{ISOLineage} setLineage = function(lineage){ + self$stopIfMetadataStandardIsNot("19139") if(!is(lineage, "ISOLineage")){ stop("The argument should be a 'ISOLineage' object") } diff --git a/R/ISODataQualityAbstractElement.R b/R/ISODataQualityAbstractElement.R index 97d68e77..43898285 100644 --- a/R/ISODataQualityAbstractElement.R +++ b/R/ISODataQualityAbstractElement.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_Element} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_Element} #' #' @author Emmanuel Blondel #' @@ -16,26 +18,37 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", inherit = ISOAbstractObject, private = list( xmlElement = "AbstractDQ_Element", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list( - - #'@field nameOfMeasure nameOfMeasure [0..*]: character + + #'@field standaloneQualityReportDetails standaloneQualityReportDetails [0..1]: character (=> 19115-3) + standaloneQualityReportDetails = NULL, + #'@field nameOfMeasure nameOfMeasure [0..*]: character (=> 19139) nameOfMeasure = list(), - #'@field measureIdentification measureIdentification [0..1]: ISOMetaIdentifier + #'@field measureIdentification measureIdentification [0..1]: ISOMetaIdentifier (=> 19139) measureIdentification = NULL, - #'@field measureDescription measureDescription [0..1]: character + #'@field measureDescription measureDescription [0..1]: character (=> 19139) measureDescription = NULL, - #'@field evaluationMethodType evaluationMethodType [0..1]: ISOEvaluationMethodType + #'@field measure measure [0..1]: ISOMeasureReference (=> 19115-3) + measure = NULL, + #'@field evaluationMethodType evaluationMethodType [0..1]: ISOEvaluationMethodType (=> 19139) evaluationMethodType = NULL, - #'@field evaluationMethodDescription evaluationMethodDescription [0..1]: character + #'@field evaluationMethodDescription evaluationMethodDescription [0..1]: character (=> 19139) evaluationMethodDescription = NULL, - #'@field evaluationProcedure evaluationProcedure [0..1]: ISOCitation + #'@field evaluationProcedure evaluationProcedure [0..1]: ISOCitation (=> 19139) evaluationProcedure = NULL, - #'@field dateTime dateTime [0..1]: ISODateTime + #'@field evaluationMethod evaluationMethod [0..1]: ISOEvaluationMethod (=> 19115-3) + evaluationMethod = NULL, + #'@field dateTime dateTime [0..1]: ISODateTime (=> 19139) dateTime = NULL, - #'@field result result [1..2]: ISOConformanceResult + #'@field result result [1..2]: ISOAbstractResult result = list(), + #'@field derivedElement derivedElement [0..*]: ISODataQualityAbstractElement (=> 19115-3) + derivedElement = list(), #'@description Initializes object #'@param xml object of class \link{XMLInternalNode-class} @@ -43,11 +56,19 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", super$initialize(xml = xml) }, + #'@description Set Standalone quality report details + #'@param details object of class \link{character} + setStandaloneQualityReportDetails = function(details){ + self$stopIfMetadataStandardIsNot("19115-3") + self$standaloneQualityReportDetails = details + }, + #'@description Adds name of measure #'@param name name #'@param locales list of localized names. Default is \code{NULL} #'@return \code{TRUE} if added, \code{FALSE} addNameOfMeasure = function(name, locales = NULL){ + self$stopIfMetadataStandardIsNot("19139") if(!is.null(locales)){ name <- self$createLocalisedProperty(name, locales) } @@ -59,6 +80,7 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", #'@param locales list of localized names. Default is \code{NULL} #'@return \code{TRUE} if deleted, \code{FALSE} delNameOfMeasure = function(name, locales = NULL){ + self$stopIfMetadataStandardIsNot("19139") if(!is.null(locales)){ name <- self$createLocalisedProperty(name, locales) } @@ -68,16 +90,28 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", #'@description Set measure identification #'@param identification object of class \link{ISOMetaIdentifier} setMeasureIdentification = function(identification){ + self$stopIfMetadataStandardIsNot("19139") if(!is(identification, "ISOMetaIdentifier")){ stop("The argument value should be an object of class 'ISOMetaIdentifier") } self$measureIdentification = identification }, + #'@description Set measure + #'@param measure object of class \link{ISOMeasureReference} + setMeasure = function(measure){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!is(measure, "ISOMeasureReference")){ + stop("The argument value should be an object of class 'ISOMeasureReference") + } + self$measure = measure + }, + #'@description Set measure description #'@param description object of class \link{character} #'@param locales list of localized descriptions. Default is \code{NULL} setMeasureDescription = function(description, locales = NULL){ + self$stopIfMetadataStandardIsNot("19139") if(!is.null(locales)){ description <- self$createLocalisedProperty(description, locales) } @@ -88,6 +122,7 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", #'@param type object of class \link{ISOEvaluationMethodType} or any \link{character} value #' from those returned by \code{ISOEvaluationMethodType$values()} setEvaluationMethodType = function(type){ + self$stopIfMetadataStandardIsNot("19139") if(!is(type, "ISOEvaluationMethodType")){ type <- ISOEvaluationMethodType$new(value = type) } @@ -98,6 +133,7 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", #'@param description description #'@param locales list of localized descriptions. Default is \code{NULL} setEvaluationMethodDescription = function(description, locales = NULL){ + self$stopIfMetadataStandardIsNot("19139") if(!is.null(locales)){ description <- self$createLocalisedProperty(description, locales) } @@ -107,15 +143,27 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", #'@description Set evaluation procedure #'@param procedure procedure, object of class \link{ISOCitation} setEvaluationProcedure = function(procedure){ + self$stopIfMetadataStandardIsNot("19139") if(!is(procedure, "ISOCitation")){ stop("The argument value should be an object of class 'ISOCitation'") } self$evaluationProcedure <- procedure }, + #'@description Set evaluation method + #'@param evaluationMethod object of class \link{ISOEvaluationMethod} + setEvaluationMethod = function(evaluationMethod){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!is(evaluationMethod, "ISOEvaluationMethod")){ + stop("The argument value should be an object of class 'ISOEvaluationMethod") + } + self$evaluationMethod = evaluationMethod + }, + #'@description Set date time #'@param dateTime date time, object of class \link{POSIXct} setDateTime = function(dateTime){ + self$stopIfMetadataStandardIsNot("19139") if(!all(class(dateTime) == c("POSIXct","POSIXt"))){ stop("The argument should be an 'POSIXct'/'POSIXt' object") } @@ -123,23 +171,43 @@ ISODataQualityAbstractElement <- R6Class("ISODataQualityAbstractElement", }, #'@description Adds result - #'@param result object of class \link{ISOConformanceResult} + #'@param result object of class \link{ISOAbstractResult} #'@return \code{TRUE} if added, \code{FALSE} otherwise addResult = function(result){ - if(!is(result, "ISOConformanceResult")){ - stop("The argument value should be an object of class 'ISOConformanceResult'") + if(!is(result, "ISOAbstractResult")){ + stop("The argument value should be an object of class 'ISOAbstractResult'") } return(self$addListElement("result", result)) }, #'@description Deletes result - #'@param result object of class \link{ISOConformanceResult} + #'@param result object of class \link{ISOAbstractResult} #'@return \code{TRUE} if deleted, \code{FALSE} otherwise delResult = function(result){ - if(!is(result, "ISOConformanceResult")){ - stop("The argument value should be an object of class 'ISOConformanceResult'") + if(!is(result, "ISOAbstractResult")){ + stop("The argument value should be an object of class 'ISOAbstractResult'") } return(self$delListElement("result", result)) + }, + + #'@description Adds element + #'@param element object of class \link{ISODataQualityAbstractElement} + #'@return \code{TRUE} if added, \code{FALSE} otherwise + addElement = function(element){ + if(!is(element, "ISODataQualityAbstractElement")){ + stop("The argument value should be an object of class 'ISODataQualityAbstractElement'") + } + return(self$addListElement("element", element)) + }, + + #'@description Deletes element + #'@param element object of class \link{ISODataQualityAbstractElement} + #'@return \code{TRUE} if deleted, \code{FALSE} otherwise + delElement = function(element){ + if(!is(element, "ISODataQualityAbstractElement")){ + stop("The argument value should be an object of class 'ISODataQualityAbstractElement'") + } + return(self$delListElement("element", element)) } ) ) \ No newline at end of file diff --git a/R/ISODataQualityCompleteness.R b/R/ISODataQualityCompleteness.R index dea7858c..13ef40e1 100644 --- a/R/ISODataQualityCompleteness.R +++ b/R/ISODataQualityCompleteness.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_Completeness} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_Completeness} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOAbstractCompleteness <- R6Class("ISOAbstractCompleteness", inherit = ISODataQualityAbstractElement, private = list( xmlElement = "AbstractDQ_Completeness", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -56,7 +61,9 @@ ISOAbstractCompleteness <- R6Class("ISOAbstractCompleteness", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_CompletenessOmission} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_CompletenessOmission} #' #' @author Emmanuel Blondel #' @@ -64,7 +71,10 @@ ISOCompletenessOmission <- R6Class("ISOCompletenessOmission", inherit = ISOAbstractThematicAccuracy, private = list( xmlElement = "DQ_CompletenessOmission", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -104,7 +114,9 @@ ISOCompletenessOmission <- R6Class("ISOCompletenessOmission", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_CompletenessCommission} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_CompletenessCommission} #' #' @author Emmanuel Blondel #' @@ -112,7 +124,10 @@ ISOCompletenessCommission <- R6Class("ISOCompletenessCommission", inherit = ISOAbstractThematicAccuracy, private = list( xmlElement = "DQ_CompletenessCommission", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) diff --git a/R/ISODataQualityLogicalConsistency.R b/R/ISODataQualityLogicalConsistency.R index 42bcd423..5e847074 100644 --- a/R/ISODataQualityLogicalConsistency.R +++ b/R/ISODataQualityLogicalConsistency.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_LogicalConsistency} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_LogicalConsistency} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOAbstractLogicalConsistency <- R6Class("ISOAbstractLogicalConsistency", inherit = ISODataQualityAbstractElement, private = list( xmlElement = "AbstractDQ_LogicalConsistency", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -56,7 +61,9 @@ ISOAbstractLogicalConsistency <- R6Class("ISOAbstractLogicalConsistency", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_TopologicalConsistency} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_TopologicalConsistency} #' #' @author Emmanuel Blondel #' @@ -64,7 +71,10 @@ ISOTopologicalConsistency <- R6Class("ISOTopologicalConsistency", inherit = ISOAbstractLogicalConsistency, private = list( xmlElement = "DQ_TopologicalConsistency", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -104,7 +114,9 @@ ISOTopologicalConsistency <- R6Class("ISOTopologicalConsistency", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_FormatConsistency} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_FormatConsistency} #' #' @author Emmanuel Blondel #' @@ -112,7 +124,10 @@ ISOFormatConsistency <- R6Class("ISOFormatConsistency", inherit = ISOAbstractLogicalConsistency, private = list( xmlElement = "DQ_FormatConsistency", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -152,7 +167,9 @@ ISOFormatConsistency <- R6Class("ISOFormatConsistency", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_DomainConsistency} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_DomainConsistency} #' #' @author Emmanuel Blondel #' @@ -160,7 +177,10 @@ ISODomainConsistency <- R6Class("ISODomainConsistency", inherit = ISOAbstractLogicalConsistency, private = list( xmlElement = "DQ_DomainConsistency", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -200,7 +220,9 @@ ISODomainConsistency <- R6Class("ISODomainConsistency", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_ConceptualConsistency} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_ConceptualConsistency} #' #' @author Emmanuel Blondel #' @@ -208,7 +230,10 @@ ISOConceptualConsistency <- R6Class("ISOConceptualConsistency", inherit = ISOAbstractLogicalConsistency, private = list( xmlElement = "DQ_ConceptualConsistency", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) \ No newline at end of file diff --git a/R/ISODataQualityPositionalAccuracy.R b/R/ISODataQualityPositionalAccuracy.R index 622817a9..7b429b8d 100644 --- a/R/ISODataQualityPositionalAccuracy.R +++ b/R/ISODataQualityPositionalAccuracy.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_PositionalAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_PositionalAccuracy} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOAbstractPositionalAccuracy <- R6Class("ISOAbstractPositionalAccuracy", inherit = ISODataQualityAbstractElement, private = list( xmlElement = "AbstractDQ_PositionalAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -56,7 +61,9 @@ ISOAbstractPositionalAccuracy <- R6Class("ISOAbstractPositionalAccuracy", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_AbsoluteExternalPositionalAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_AbsoluteExternalPositionalAccuracy} #' #' @author Emmanuel Blondel #' @@ -64,7 +71,10 @@ ISOAbsoluteExternalPositionalAccuracy <- R6Class("ISOAbsoluteExternalPositionalA inherit = ISOAbstractPositionalAccuracy, private = list( xmlElement = "DQ_AbsoluteExternalPositionalAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -104,7 +114,9 @@ ISOAbsoluteExternalPositionalAccuracy <- R6Class("ISOAbsoluteExternalPositionalA #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_RelativeInternalPositionalAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_RelativeInternalPositionalAccuracy} #' #' @author Emmanuel Blondel #' @@ -112,7 +124,10 @@ ISORelativeInternalPositionalAccuracy <- R6Class("ISORelativeInternalPositionalA inherit = ISOAbstractPositionalAccuracy, private = list( xmlElement = "DQ_RelativeInternalPositionalAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -152,7 +167,9 @@ ISORelativeInternalPositionalAccuracy <- R6Class("ISORelativeInternalPositionalA #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_GriddedDataPositionalAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_GriddedDataPositionalAccuracy} #' #' @author Emmanuel Blondel #' @@ -160,7 +177,10 @@ ISOGriddedDataPositionalAccuracy <- R6Class("ISOGriddedDataPositionalAccuracy", inherit = ISOAbstractPositionalAccuracy, private = list( xmlElement = "DQ_GriddedDataPositionalAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) \ No newline at end of file diff --git a/R/ISODataQualityScope.R b/R/ISODataQualityScope.R index 4502f783..42c875d8 100644 --- a/R/ISODataQualityScope.R +++ b/R/ISODataQualityScope.R @@ -13,7 +13,7 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_Scope} #' #' @author Emmanuel Blondel #' @@ -21,7 +21,9 @@ ISODataQualityScope <- R6Class("ISODataQualityScope", inherit = ISOAbstractObject, private = list( xmlElement = "DQ_Scope", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD" + ) ), public = list( #'@field level level diff --git a/R/ISODataQualityTemporalAccuracy.R b/R/ISODataQualityTemporalAccuracy.R index c3497a73..8fea2cf5 100644 --- a/R/ISODataQualityTemporalAccuracy.R +++ b/R/ISODataQualityTemporalAccuracy.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_TemporalAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_TemporalAccuracy} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOAbstractTemporalAccuracy <- R6Class("ISOAbstractTemporalAccuracy", inherit = ISODataQualityAbstractElement, private = list( xmlElement = "AbstractDQ_TemporalAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -56,7 +61,9 @@ ISOAbstractTemporalAccuracy <- R6Class("ISOAbstractTemporalAccuracy", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_TemporalValidity} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_TemporalValidity} #' #' @author Emmanuel Blondel #' @@ -64,7 +71,10 @@ ISOTemporalValidity <- R6Class("ISOTemporalValidity", inherit = ISOAbstractTemporalAccuracy, private = list( xmlElement = "DQ_TemporalValidity", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -104,7 +114,9 @@ ISOTemporalValidity <- R6Class("ISOTemporalValidity", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_TemporalConsistency} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_TemporalConsistency} #' #' @author Emmanuel Blondel #' @@ -112,7 +124,10 @@ ISOTemporalConsistency <- R6Class("ISOTemporalConsistency", inherit = ISOAbstractTemporalAccuracy, private = list( xmlElement = "DQ_TemporalConsistency", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -152,7 +167,9 @@ ISOTemporalConsistency <- R6Class("ISOTemporalConsistency", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_AccuracyOfATimeMeasurement} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_AccuracyOfATimeMeasurement} #' #' @author Emmanuel Blondel #' @@ -160,7 +177,10 @@ ISOAccuracyOfATimeMeasurement <- R6Class("ISOAccuracyOfATimeMeasurement", inherit = ISOAbstractTemporalAccuracy, private = list( xmlElement = "DQ_AccuracyOfATimeMeasurement", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) \ No newline at end of file diff --git a/R/ISODataQualityThematicAccuracy.R b/R/ISODataQualityThematicAccuracy.R index fa6882dd..a35882a5 100644 --- a/R/ISODataQualityThematicAccuracy.R +++ b/R/ISODataQualityThematicAccuracy.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_ThematicAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_ThematicAccuracy} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOAbstractThematicAccuracy <- R6Class("ISOAbstractThematicAccuracy", inherit = ISODataQualityAbstractElement, private = list( xmlElement = "AbstractDQ_ThematicAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -56,7 +61,9 @@ ISOAbstractThematicAccuracy <- R6Class("ISOAbstractThematicAccuracy", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_QuantitativeAttributeAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_QuantitativeAttributeAccuracy} #' #' @author Emmanuel Blondel #' @@ -64,7 +71,10 @@ ISOQuantitativeAttributeAccuracy <- R6Class("ISOQuantitativeAttributeAccuracy", inherit = ISOAbstractThematicAccuracy, private = list( xmlElement = "DQ_QuantitativeAttributeAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -104,7 +114,9 @@ ISOQuantitativeAttributeAccuracy <- R6Class("ISOQuantitativeAttributeAccuracy", #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_NonQuantitativeAttributeAccuracy} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_NonQuantitativeAttributeAccuracy} #' #' @author Emmanuel Blondel #' @@ -112,7 +124,10 @@ ISONonQuantitativeAttributeAccuracy <- R6Class("ISONonQuantitativeAttributeAccur inherit = ISOAbstractThematicAccuracy, private = list( xmlElement = "DQ_NonQuantitativeAttributeAccuracy", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) @@ -152,7 +167,9 @@ ISONonQuantitativeAttributeAccuracy <- R6Class("ISONonQuantitativeAttributeAccur #' xml <- dq$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_ThematicClassificationCorrectness} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_ThematicClassificationCorrectness} #' #' @author Emmanuel Blondel #' @@ -160,7 +177,10 @@ ISOThematicClassificationCorrectness <- R6Class("ISOThematicClassificationCorrec inherit = ISOAbstractTemporalAccuracy, private = list( xmlElement = "DQ_ThematicClassificationCorrectness", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list() ) \ No newline at end of file diff --git a/R/ISOEvaluationMethodType.R b/R/ISOEvaluationMethodType.R index c1305afd..e931ccb9 100644 --- a/R/ISOEvaluationMethodType.R +++ b/R/ISOEvaluationMethodType.R @@ -15,7 +15,9 @@ #' indirect <- ISOEvaluationMethodType$new(value = "indirect") #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_EvaluationMethodTypeCode} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_EvaluationMethodTypeCode} #' #' @author Emmanuel Blondel #' @@ -23,7 +25,10 @@ ISOEvaluationMethodType <- R6Class("ISOEvaluationMethodType", inherit = ISOCodeListValue, private = list( xmlElement = "DQ_EvaluationMethodTypeCode", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list( diff --git a/R/ISOImageryCoverageResult.R b/R/ISOImageryCoverageResult.R index a998d461..686cab04 100644 --- a/R/ISOImageryCoverageResult.R +++ b/R/ISOImageryCoverageResult.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +#' - 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_QE_CoverageResult} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_QE_CoverageResult} #' #' @author Emmanuel Blondel #' @@ -16,10 +18,17 @@ ISOImageryCoverageResult <- R6Class("ISOImageryCoverageResult", inherit = ISOAbstractResult, private = list( xmlElement = "QE_CoverageResult", - xmlNamespacePrefix = "GMI" + xmlNamespacePrefix = list( + "19139" = "GMI", + "19115-3" = "MDQ" + ) ), public = list( + #'@field resultScope resultScope [0..1]: ISOScope + resultScope = NULL, + #'@field dateTime dateTime [0..1]: POSIX/date + dateTime = NULL, #'@field spatialRepresentationType spatialRepresentationType [1..1] : ISOSpatialRepresentationType spatialRepresentationType = NULL, #'@field resultFile resultFile [1..1]: ISODataFile @@ -37,6 +46,26 @@ ISOImageryCoverageResult <- R6Class("ISOImageryCoverageResult", super$initialize(xml = xml) }, + #'@description Set result scope + #'@param scope object of class \link{ISOScope} + setResultScope = function(scope){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!is(scope, "ISOScope")){ + stop("The argument should be a 'ISOScope' object") + } + self$resultScope = scope + }, + + #'@description Set date time + #'@param dateTime date time, object of class \link{POSIXct} + setDateTime = function(dateTime){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!all(class(dateTime) == c("POSIXct","POSIXt"))){ + stop("The argument should be an 'POSIXct'/'POSIXt' object") + } + self$dateTime <- dateTime + }, + #'@description Set spatial representation type #'@param spatialRepresentationType object of class \link{ISOSpatialRepresentationType} or \link{character} #' among values returned by \code{ISOSpatialRepresentationType$values()} @@ -52,11 +81,21 @@ ISOImageryCoverageResult <- R6Class("ISOImageryCoverageResult", }, #'@description Set result file - #'@param resultFile object of class \link{ISODataFile} + #'@param resultFile object of class \link{ISODataFile} (in ISO 19139) + #'or \link{ISOQualityResultFile} (in ISO 19115-3) setResultFile = function(resultFile){ - if(!is(resultFile, "ISODataFile")){ - stop("The argument should be an object of class 'ISODataFile'") - } + switch(getMetadataStandard(), + "19139" = { + if(!is(resultFile, "ISODataFile")){ + stop("The argument should be an object of class 'ISODataFile'") + } + }, + "19115-3" = { + if(!is(resultFile, "ISOQualityResultFile")){ + stop("The argument should be an object of class 'ISOQualityResultFile'") + } + } + ) self$resultFile <- resultFile }, diff --git a/R/ISOQuantitativeResult.R b/R/ISOQuantitativeResult.R index 5ad2eeab..f554a7ec 100644 --- a/R/ISOQuantitativeResult.R +++ b/R/ISOQuantitativeResult.R @@ -12,7 +12,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_QuantitativeResult} +#' +#' - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_QuantitativeResult} #' #' @author Emmanuel Blondel #' @@ -20,10 +22,18 @@ ISOQuantitativeResult <- R6Class("ISOQuantitativeResult", inherit = ISOAbstractResult, private = list( xmlElement = "DQ_QuantitativeResult", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MDQ" + ) ), public = list( - #'@field valueType valueType [0..1]- ISORecord + + #'@field resultScope resultScope [0..1]: ISOScope (=> 19115-3) + resultScope = NULL, + #'@field dateTime dateTime [0..1]: POSIX/date (=> 19115-3) + dateTime = NULL, + #'@field valueType valueType [0..1]- ISORecordType valueType = NULL, #'@field valueUnit valueUnit [1..1]- GMLUnitDefinition valueUnit = NA, @@ -38,6 +48,26 @@ ISOQuantitativeResult <- R6Class("ISOQuantitativeResult", super$initialize(xml = xml) }, + #'@description Set result scope + #'@param scope object of class \link{ISOScope} + setResultScope = function(scope){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!is(scope, "ISOScope")){ + stop("The argument should be a 'ISOScope' object") + } + self$resultScope = scope + }, + + #'@description Set date time + #'@param dateTime date time, object of class \link{POSIXct} + setDateTime = function(dateTime){ + self$stopIfMetadataStandardIsNot("19115-3") + if(!all(class(dateTime) == c("POSIXct","POSIXt"))){ + stop("The argument should be an 'POSIXct'/'POSIXt' object") + } + self$dateTime <- dateTime + }, + #'@description Set value type #'@param valueType object of class \link{ISORecordType} or \link{character} setValueType = function(valueType){ diff --git a/README.md b/README.md index d7e114d5..f3cc0871 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,12 @@ We thank in advance people that use ``geometa`` for citing it in their work / pu |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for Spatial Representation (MSR) Version: 2.0 |MSR |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 17| 0| 17| 0| |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for SeRVices (SRV) Version: 2.0 |SRV |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - SRV](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 8| 0| 3| 5| |ISO/TS 19115-3:2023 🆕 |ISO 19157 |Data Quality abstract Classes (DQC) Version 1.0 |DQC |[![ISO/TS 19115-3:2023 - ISO 19157 - DQC](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 2| 0| 2| 0| -|ISO/TS 19115-3:2023 🆕 |ISO 19157 |Metadata for Data Quality (MDQ) Version: 1.0 |MDQ |[![ISO/TS 19115-3:2023 - ISO 19157 - MDQ](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa) | 0| 43| 0| 43| +|ISO/TS 19115-3:2023 🆕 |ISO 19157 |Metadata for Data Quality (MDQ) Version: 1.0 |MDQ |[![ISO/TS 19115-3:2023 - ISO 19157 - MDQ](https://img.shields.io/badge/-58%25-f9ae2c.svg)](https://github.com/eblondel/geometa)| 25| 18| 25| 18| |ISO/TS 19115-3:2023 🆕 |ISO/TS 19139:2007 |CATalogue Objects (CAT) Version: 1.0 |CAT |[![ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - CAT](https://img.shields.io/badge/-18%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 3| 14| 3| 14| |ISO/TS 19115-3:2023 🆕 |ISO/TS 19139:2007 |Feature Catalog Common (FCC) Version: 1.0 |FCC |[![ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - FCC](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 2| 0| 2| 0| |ISO/TS 19139:2007 |ISO 19110:2005 |Geographic Information - Methodology for feature cataloguing |GFC |[![ISO/TS 19139:2007 - ISO 19110:2005 - GFC](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 17| 0| 0| 17| -|ISO/TS 19139:2007 |ISO 19115-1:2003 |Geographic Information - Metadata |GMD |[![ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 134| 0| 85| 49| -|ISO/TS 19139:2007 |ISO 19115-2:2009 |Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data |GMI |[![ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 40| 0| 38| 2| +|ISO/TS 19139:2007 |ISO 19115-1:2003 |Geographic Information - Metadata |GMD |[![ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 134| 0| 112| 22| +|ISO/TS 19139:2007 |ISO 19115-2:2009 |Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data |GMI |[![ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 40| 0| 39| 1| |ISO/TS 19139:2007 |ISO 19119:2005 |Geographic Information - Service Metadata |SRV |[![ISO/TS 19139:2007 - ISO 19119:2005 - SRV](https://img.shields.io/badge/-42%25-f9ae2c.svg)](https://github.com/eblondel/geometa)| 8| 11| 3| 16| |ISO/TS 19139:2007 |ISO/TS 19103:2005 |Geographic Common extensible markup language |GCO |[![ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 22| 0| 22| 0| |ISO/TS 19139:2007 |ISO/TS 19139:2007 |Geographic Metadata XML Schema |GMX |[![ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX](https://img.shields.io/badge/-15%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 10| 56| 9| 57| diff --git a/inst/extdata/coverage/geometa_coverage_inventory.csv b/inst/extdata/coverage/geometa_coverage_inventory.csv index e69defce..656a91b2 100644 --- a/inst/extdata/coverage/geometa_coverage_inventory.csv +++ b/inst/extdata/coverage/geometa_coverage_inventory.csv @@ -16,18 +16,18 @@ "ISO/TS 19139:2007","ISO 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_InheritanceRelation","ISOInheritanceRelation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19110:2005 - GFC" "ISO/TS 19139:2007","ISO 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_ListedValue","ISOListedValue",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19110:2005 - GFC" "ISO/TS 19139:2007","ISO 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_RoleType","ISORoleType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19110:2005 - GFC" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Completeness","ISOAbstractCompleteness",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Element","ISODataQualityAbstractElement",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_LogicalConsistency","ISOAbstractLogicalConsistency",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_PositionalAccuracy","ISOAbstractPositionalAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Result","ISOAbstractResult",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_TemporalAccuracy","ISOAbstractTemporalAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_ThematicAccuracy","ISOAbstractThematicAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Completeness","ISOAbstractCompleteness",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Element","ISODataQualityAbstractElement",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_LogicalConsistency","ISOAbstractLogicalConsistency",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_PositionalAccuracy","ISOAbstractPositionalAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Result","ISOAbstractResult",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_TemporalAccuracy","ISOAbstractTemporalAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_ThematicAccuracy","ISOAbstractThematicAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDS_Aggregate","ISOAbstractAggregate",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractEX_GeographicExtent","ISOGeographicExtent",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_ContentInformation","ISOAbstractMDContentInformation",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_Identification","ISOIdentification",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_Identification","ISOIdentification19139",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_Identification","ISOIdentification",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_SpatialRepresentation","ISOSpatialRepresentation",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractRS_ReferenceSystem","ISOAbstractRSReferenceSystem",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Address","ISOAddress",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" @@ -43,26 +43,26 @@ "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Series","ISOCitationSeries",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Telephone","ISOTelephone",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","Country","ISOCountry",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_AbsoluteExternalPositionalAccuracy","ISOAbsoluteExternalPositionalAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_AccuracyOfATimeMeasurement","ISOAccuracyOfATimeMeasurement",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_CompletenessCommission","ISOCompletenessCommission",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_CompletenessOmission","ISOCompletenessOmission",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ConceptualConsistency","ISOConceptualConsistency",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ConformanceResult","ISOConformanceResult",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_DataQuality","ISODataQuality",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_DomainConsistency","ISODomainConsistency",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_EvaluationMethodTypeCode","ISOEvaluationMethodType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_FormatConsistency","ISOFormatConsistency",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_GriddedDataPositionalAccuracy","ISOGriddedDataPositionalAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_NonQuantitativeAttributeAccuracy","ISONonQuantitativeAttributeAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_QuantitativeAttributeAccuracy","ISOQuantitativeAttributeAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_QuantitativeResult","ISOQuantitativeResult",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_RelativeInternalPositionalAccuracy","ISORelativeInternalPositionalAccuracy",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_Scope","ISODataQualityScope",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TemporalConsistency","ISOTemporalConsistency",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TemporalValidity","ISOTemporalValidity",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ThematicClassificationCorrectness","ISOThematicClassificationCorrectness",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TopologicalConsistency","ISOTopologicalConsistency",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_AbsoluteExternalPositionalAccuracy","ISOAbsoluteExternalPositionalAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_AccuracyOfATimeMeasurement","ISOAccuracyOfATimeMeasurement",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_CompletenessCommission","ISOCompletenessCommission",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_CompletenessOmission","ISOCompletenessOmission",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ConceptualConsistency","ISOConceptualConsistency",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ConformanceResult","ISOConformanceResult",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_DataQuality","ISODataQuality",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_DomainConsistency","ISODomainConsistency",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_EvaluationMethodTypeCode","ISOEvaluationMethodType",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_FormatConsistency","ISOFormatConsistency",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_GriddedDataPositionalAccuracy","ISOGriddedDataPositionalAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_NonQuantitativeAttributeAccuracy","ISONonQuantitativeAttributeAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_QuantitativeAttributeAccuracy","ISOQuantitativeAttributeAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_QuantitativeResult","ISOQuantitativeResult",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_RelativeInternalPositionalAccuracy","ISORelativeInternalPositionalAccuracy",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_Scope","ISODataQualityScope",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TemporalConsistency","ISOTemporalConsistency",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TemporalValidity","ISOTemporalValidity",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ThematicClassificationCorrectness","ISOThematicClassificationCorrectness",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TopologicalConsistency","ISOTopologicalConsistency",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_Association","ISOAssociation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_AssociationTypeCode","ISOAssociationType",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_DataSet","ISODataSet",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" @@ -188,7 +188,7 @@ "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_SequenceCode","ISOImagerySequence",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_TransferFunctionTypeCode","ISOImageryTransferFunctionType",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_TriggerCode","ISOImageryTrigger",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" -"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","QE_CoverageResult","ISOImageryCoverageResult",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" +"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","QE_CoverageResult","ISOImageryCoverageResult",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","QE_Usability","ISOImageryUsability",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","DCPList","ISODCPList",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" "ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_CoupledResource","ISOCoupledResource",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" @@ -713,48 +713,48 @@ "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for SeRVices (SRV) Version: 2.0","SRV","SV_ServiceIdentification","ISOSRVServiceIdentification",TRUE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - SRV" "ISO/TS 19115-3:2023","ISO 19157","Data Quality abstract Classes (DQC) Version 1.0","DQC","Abstract_DataQuality","ISOAbstractDataQuality",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - DQC" "ISO/TS 19115-3:2023","ISO 19157","Data Quality abstract Classes (DQC) Version 1.0","DQC","Abstract_QualityElement","ISOAbstractQualityElement",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - DQC" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_Completeness","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_Completeness","ISOAbstractCompleteness",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_DataEvaluation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_Element","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_LogicalConsistency","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_Element","ISODataQualityAbstractElement",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_LogicalConsistency","ISOAbstractLogicalConsistency",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_Metaquality","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_PositionalAccuracy","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_Result","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_PositionalAccuracy","ISOAbstractPositionalAccuracy",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_Result","ISOAbstractResult",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_TemporalQuality","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_ThematicAccuracy","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_AbsoluteExternalPositionalAccuracy","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_AccuracyOfATimeMeasurement","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","AbstractDQ_ThematicAccuracy","ISOAbstractThematicAccuracy",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_AbsoluteExternalPositionalAccuracy","ISOAbsoluteExternalPositionalAccuracy",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_AccuracyOfATimeMeasurement","ISOAccuracyOfATimeMeasurement",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_AggregationDerivation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_CompletenessCommission","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_CompletenessOmission","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_ConceptualConsistency","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_CompletenessCommission","ISOCompletenessCommission",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_CompletenessOmission","ISOCompletenessOmission",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_ConceptualConsistency","ISOConceptualConsistency",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_Confidence","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_ConformanceResult","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_ConformanceResult","ISOConformanceResult",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_DataInspection","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_DataQuality","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_DataQuality","ISODataQuality",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_DescriptiveResult","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_DomainConsistency","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_DomainConsistency","ISODomainConsistency",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_EvaluationMethod","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_EvaluationMethodTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_FormatConsistency","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_EvaluationMethodTypeCode","ISOEvaluationMethodType",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_FormatConsistency","ISOFormatConsistency",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_FullInspection","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_GriddedDataPositionalAccuracy","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_GriddedDataPositionalAccuracy","ISOGriddedDataPositionalAccuracy",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_Homogeneity","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_IndirectEvaluation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_MeasureReference","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_NonQuantitativeAttributeCorrectness","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_QuantitativeAttributeAccuracy","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_QuantitativeResult","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_RelativeInternalPositionalAccuracy","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_QuantitativeAttributeAccuracy","ISOQuantitativeAttributeAccuracy",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_QuantitativeResult","ISOQuantitativeResult",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_RelativeInternalPositionalAccuracy","ISORelativeInternalPositionalAccuracy",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_Representativity","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_SampleBasedInspection","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_StandaloneQualityReportInformation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_TemporalConsistency","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_TemporalValidity","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_ThematicClassificationCorrectness","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_TopologicalConsistency","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_TemporalConsistency","ISOTemporalConsistency",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_TemporalValidity","ISOTemporalValidity",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_ThematicClassificationCorrectness","ISOThematicClassificationCorrectness",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_TopologicalConsistency","ISOTopologicalConsistency",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","DQ_UsabilityElement","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","QE_CoverageResult","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","QE_CoverageResult","ISOImageryCoverageResult",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ","QualityResultFile","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19157 - MDQ" "ISO/TS 19115-3:2023","ISO/TS 19139:2007","CATalogue Objects (CAT) Version: 1.0","CAT","AbstractCT_Catalogue","ISOAbstractCatalogue",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - CAT" "ISO/TS 19115-3:2023","ISO/TS 19139:2007","CATalogue Objects (CAT) Version: 1.0","CAT","AbstractCT_Item","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - CAT" diff --git a/inst/extdata/coverage/geometa_coverage_summary.csv b/inst/extdata/coverage/geometa_coverage_summary.csv index 75dfc7c7..c1b63b07 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.csv +++ b/inst/extdata/coverage/geometa_coverage_summary.csv @@ -19,12 +19,12 @@ "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR",17,0,17,0,100 "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for SeRVices (SRV) Version: 2.0","SRV",8,0,3,5,100 "ISO/TS 19115-3:2023","ISO 19157","Data Quality abstract Classes (DQC) Version 1.0","DQC",2,0,2,0,100 -"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ",0,43,0,43,0 +"ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ",25,18,25,18,58.14 "ISO/TS 19115-3:2023","ISO/TS 19139:2007","CATalogue Objects (CAT) Version: 1.0","CAT",3,14,3,14,17.65 "ISO/TS 19115-3:2023","ISO/TS 19139:2007","Feature Catalog Common (FCC) Version: 1.0","FCC",2,0,2,0,100 "ISO/TS 19139:2007","ISO 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC",17,0,0,17,100 -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD",134,0,85,49,100 -"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI",40,0,38,2,100 +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD",134,0,112,22,100 +"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI",40,0,39,1,100 "ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV",8,11,3,16,42.11 "ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO",22,0,22,0,100 "ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX",10,56,9,57,15.15 diff --git a/inst/extdata/coverage/geometa_coverage_summary.html b/inst/extdata/coverage/geometa_coverage_summary.html index baec5c55..89586f35 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.html +++ b/inst/extdata/coverage/geometa_coverage_summary.html @@ -611,11 +611,11 @@ ISO 19157 Metadata for Data Quality (MDQ) Version: 1.0 MDQ -ISO/TS 19115-3:2023 - ISO 19157 - MDQ -0 -43 -0 -43 +ISO/TS 19115-3:2023 - ISO 19157 - MDQ +25 +18 +25 +18 ISO/TS 19115-3:2023 🆕 @@ -659,8 +659,8 @@ ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD 134 0 -85 -49 +112 +22 ISO/TS 19139:2007 @@ -671,8 +671,8 @@ ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI 40 0 -38 -2 +39 +1 ISO/TS 19139:2007 diff --git a/inst/extdata/coverage/geometa_coverage_summary.md b/inst/extdata/coverage/geometa_coverage_summary.md index 2260bd04..7555a176 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.md +++ b/inst/extdata/coverage/geometa_coverage_summary.md @@ -20,12 +20,12 @@ |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for Spatial Representation (MSR) Version: 2.0 |MSR |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 17| 0| 17| 0| |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for SeRVices (SRV) Version: 2.0 |SRV |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - SRV](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 8| 0| 3| 5| |ISO/TS 19115-3:2023 🆕 |ISO 19157 |Data Quality abstract Classes (DQC) Version 1.0 |DQC |[![ISO/TS 19115-3:2023 - ISO 19157 - DQC](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 2| 0| 2| 0| -|ISO/TS 19115-3:2023 🆕 |ISO 19157 |Metadata for Data Quality (MDQ) Version: 1.0 |MDQ |[![ISO/TS 19115-3:2023 - ISO 19157 - MDQ](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa) | 0| 43| 0| 43| +|ISO/TS 19115-3:2023 🆕 |ISO 19157 |Metadata for Data Quality (MDQ) Version: 1.0 |MDQ |[![ISO/TS 19115-3:2023 - ISO 19157 - MDQ](https://img.shields.io/badge/-58%25-f9ae2c.svg)](https://github.com/eblondel/geometa)| 25| 18| 25| 18| |ISO/TS 19115-3:2023 🆕 |ISO/TS 19139:2007 |CATalogue Objects (CAT) Version: 1.0 |CAT |[![ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - CAT](https://img.shields.io/badge/-18%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 3| 14| 3| 14| |ISO/TS 19115-3:2023 🆕 |ISO/TS 19139:2007 |Feature Catalog Common (FCC) Version: 1.0 |FCC |[![ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - FCC](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 2| 0| 2| 0| |ISO/TS 19139:2007 |ISO 19110:2005 |Geographic Information - Methodology for feature cataloguing |GFC |[![ISO/TS 19139:2007 - ISO 19110:2005 - GFC](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 17| 0| 0| 17| -|ISO/TS 19139:2007 |ISO 19115-1:2003 |Geographic Information - Metadata |GMD |[![ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 134| 0| 85| 49| -|ISO/TS 19139:2007 |ISO 19115-2:2009 |Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data |GMI |[![ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 40| 0| 38| 2| +|ISO/TS 19139:2007 |ISO 19115-1:2003 |Geographic Information - Metadata |GMD |[![ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 134| 0| 112| 22| +|ISO/TS 19139:2007 |ISO 19115-2:2009 |Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data |GMI |[![ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 40| 0| 39| 1| |ISO/TS 19139:2007 |ISO 19119:2005 |Geographic Information - Service Metadata |SRV |[![ISO/TS 19139:2007 - ISO 19119:2005 - SRV](https://img.shields.io/badge/-42%25-f9ae2c.svg)](https://github.com/eblondel/geometa)| 8| 11| 3| 16| |ISO/TS 19139:2007 |ISO/TS 19103:2005 |Geographic Common extensible markup language |GCO |[![ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 22| 0| 22| 0| |ISO/TS 19139:2007 |ISO/TS 19139:2007 |Geographic Metadata XML Schema |GMX |[![ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX](https://img.shields.io/badge/-15%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 10| 56| 9| 57| diff --git a/man/ISOAbsoluteExternalPositionalAccuracy.Rd b/man/ISOAbsoluteExternalPositionalAccuracy.Rd index 1100127d..6dee2b15 100644 --- a/man/ISOAbsoluteExternalPositionalAccuracy.Rd +++ b/man/ISOAbsoluteExternalPositionalAccuracy.Rd @@ -42,7 +42,9 @@ ISOAbsoluteExternalPositionalAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_AbsoluteExternalPositionalAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_AbsoluteExternalPositionalAccuracy} } \author{ Emmanuel Blondel @@ -95,17 +97,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOAbstractCompleteness.Rd b/man/ISOAbstractCompleteness.Rd index f8e38ad2..4e44807f 100644 --- a/man/ISOAbstractCompleteness.Rd +++ b/man/ISOAbstractCompleteness.Rd @@ -16,7 +16,9 @@ ISOAbstractCompleteness ISOAbstractCompleteness } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_Completeness} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_Completeness} } \author{ Emmanuel Blondel @@ -67,17 +69,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOAbstractLogicalConsistency.Rd b/man/ISOAbstractLogicalConsistency.Rd index 242283e3..ebc4ea7b 100644 --- a/man/ISOAbstractLogicalConsistency.Rd +++ b/man/ISOAbstractLogicalConsistency.Rd @@ -16,7 +16,9 @@ ISOAbstractLogicalConsistency ISOAbstractLogicalConsistency } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_LogicalConsistency} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_LogicalConsistency} } \author{ Emmanuel Blondel @@ -68,17 +70,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOAbstractPositionalAccuracy.Rd b/man/ISOAbstractPositionalAccuracy.Rd index 943ff7fc..cbead1d3 100644 --- a/man/ISOAbstractPositionalAccuracy.Rd +++ b/man/ISOAbstractPositionalAccuracy.Rd @@ -16,7 +16,9 @@ ISOAbstractPositionalAccuracy ISOAbstractPositionalAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_PositionalAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_PositionalAccuracy} } \author{ Emmanuel Blondel @@ -68,17 +70,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOAbstractResult.Rd b/man/ISOAbstractResult.Rd index 3c96053f..07ee1f9a 100644 --- a/man/ISOAbstractResult.Rd +++ b/man/ISOAbstractResult.Rd @@ -19,7 +19,9 @@ ISOAbstractResult abstract class } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_Result} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_Result} } \author{ Emmanuel Blondel @@ -31,17 +33,6 @@ Emmanuel Blondel \section{Super classes}{ \code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOAbstractResult} } -\section{Public fields}{ -\if{html}{\out{
    }} -\describe{ -\item{\code{specification}}{specification} - -\item{\code{explanation}}{explanation} - -\item{\code{pass}}{pass} -} -\if{html}{\out{
    }} -} \section{Methods}{ \subsection{Public methods}{ \itemize{ diff --git a/man/ISOAbstractTemporalAccuracy.Rd b/man/ISOAbstractTemporalAccuracy.Rd index 287d2721..18a013a5 100644 --- a/man/ISOAbstractTemporalAccuracy.Rd +++ b/man/ISOAbstractTemporalAccuracy.Rd @@ -16,7 +16,9 @@ ISOAbstractTemporalAccuracy ISOAbstractTemporalAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_TemporalAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_TemporalAccuracy} } \author{ Emmanuel Blondel @@ -68,17 +70,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOAbstractThematicAccuracy.Rd b/man/ISOAbstractThematicAccuracy.Rd index d11ae51b..952f4855 100644 --- a/man/ISOAbstractThematicAccuracy.Rd +++ b/man/ISOAbstractThematicAccuracy.Rd @@ -16,7 +16,9 @@ ISOAbstractThematicAccuracy ISOAbstractThematicAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_ThematicAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_ThematicAccuracy} } \author{ Emmanuel Blondel @@ -68,17 +70,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOAccuracyOfATimeMeasurement.Rd b/man/ISOAccuracyOfATimeMeasurement.Rd index 74c1e939..b7f4a2d8 100644 --- a/man/ISOAccuracyOfATimeMeasurement.Rd +++ b/man/ISOAccuracyOfATimeMeasurement.Rd @@ -42,7 +42,9 @@ ISOAccuracyOfATimeMeasurement } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_AccuracyOfATimeMeasurement} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_AccuracyOfATimeMeasurement} } \author{ Emmanuel Blondel @@ -95,17 +97,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOCompletenessCommission.Rd b/man/ISOCompletenessCommission.Rd index 858c2779..a48312af 100644 --- a/man/ISOCompletenessCommission.Rd +++ b/man/ISOCompletenessCommission.Rd @@ -42,7 +42,9 @@ ISOCompletenessCommission } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_CompletenessCommission} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_CompletenessCommission} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOCompletenessOmission.Rd b/man/ISOCompletenessOmission.Rd index 157d6484..d929cafb 100644 --- a/man/ISOCompletenessOmission.Rd +++ b/man/ISOCompletenessOmission.Rd @@ -42,7 +42,9 @@ ISOCompletenessOmission } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_CompletenessOmission} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_CompletenessOmission} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOConceptualConsistency.Rd b/man/ISOConceptualConsistency.Rd index d8acde19..2bfc5bd7 100644 --- a/man/ISOConceptualConsistency.Rd +++ b/man/ISOConceptualConsistency.Rd @@ -42,7 +42,9 @@ ISOConceptualConsistency } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_ConceptualConsistency} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_ConceptualConsistency} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOConformanceResult.Rd b/man/ISOConformanceResult.Rd index 260a49ea..de1a3a2e 100644 --- a/man/ISOConformanceResult.Rd +++ b/man/ISOConformanceResult.Rd @@ -31,7 +31,9 @@ ISOConformanceResult } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_ConformanceResult} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_ConformanceResult} } \author{ Emmanuel Blondel @@ -45,6 +47,10 @@ Emmanuel Blondel \section{Public fields}{ \if{html}{\out{
    }} \describe{ +\item{\code{resultScope}}{resultScope [0..1]: ISOScope (=> 19115-3)} + +\item{\code{dateTime}}{dateTime [0..1] (=> 19115-3)} + \item{\code{specification}}{specification} \item{\code{explanation}}{explanation} @@ -57,6 +63,8 @@ Emmanuel Blondel \subsection{Public methods}{ \itemize{ \item \href{#method-ISOConformanceResult-new}{\code{ISOConformanceResult$new()}} +\item \href{#method-ISOConformanceResult-setResultScope}{\code{ISOConformanceResult$setResultScope()}} +\item \href{#method-ISOConformanceResult-setDateTime}{\code{ISOConformanceResult$setDateTime()}} \item \href{#method-ISOConformanceResult-setSpecification}{\code{ISOConformanceResult$setSpecification()}} \item \href{#method-ISOConformanceResult-setExplanation}{\code{ISOConformanceResult$setExplanation()}} \item \href{#method-ISOConformanceResult-setPass}{\code{ISOConformanceResult$setPass()}} @@ -116,6 +124,40 @@ Initializes object } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOConformanceResult-setResultScope}{}}} +\subsection{Method \code{setResultScope()}}{ +Set result scope +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOConformanceResult$setResultScope(scope)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{scope}}{object of class \link{ISOScope}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOConformanceResult-setDateTime}{}}} +\subsection{Method \code{setDateTime()}}{ +Set date time +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOConformanceResult$setDateTime(dateTime)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{dateTime}}{date time, object of class \link{POSIXct}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISOConformanceResult-setSpecification}{}}} \subsection{Method \code{setSpecification()}}{ diff --git a/man/ISODataQuality.Rd b/man/ISODataQuality.Rd index c231e175..ff864cf9 100644 --- a/man/ISODataQuality.Rd +++ b/man/ISODataQuality.Rd @@ -105,7 +105,9 @@ Emmanuel Blondel \describe{ \item{\code{scope}}{scope} -\item{\code{report}}{list of reports} +\item{\code{standaloneQualityReport}}{standalone quality report (=> 19115-3)} + +\item{\code{report}}{list of reports (=> 19139)} \item{\code{lineage}}{lineage} } @@ -116,6 +118,7 @@ Emmanuel Blondel \itemize{ \item \href{#method-ISODataQuality-new}{\code{ISODataQuality$new()}} \item \href{#method-ISODataQuality-setScope}{\code{ISODataQuality$setScope()}} +\item \href{#method-ISODataQuality-setStandaloneQualityReport}{\code{ISODataQuality$setStandaloneQualityReport()}} \item \href{#method-ISODataQuality-addReport}{\code{ISODataQuality$addReport()}} \item \href{#method-ISODataQuality-setLineage}{\code{ISODataQuality$setLineage()}} \item \href{#method-ISODataQuality-clone}{\code{ISODataQuality$clone()}} @@ -191,6 +194,23 @@ Set scope } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISODataQuality-setStandaloneQualityReport}{}}} +\subsection{Method \code{setStandaloneQualityReport()}}{ +Set standalone quality report +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISODataQuality$setStandaloneQualityReport(report)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{report}}{object of class \link{ISOStandaloneQualityReportInformation}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISODataQuality-addReport}{}}} \subsection{Method \code{addReport()}}{ @@ -202,7 +222,7 @@ Adds report \subsection{Arguments}{ \if{html}{\out{
    }} \describe{ -\item{\code{report}}{report, object of class \link{ISODomainConsistency}} +\item{\code{report}}{report, object of class \link{ISODataQualityAbstractElement}} } \if{html}{\out{
    }} } diff --git a/man/ISODataQualityAbstractElement.Rd b/man/ISODataQualityAbstractElement.Rd index 12a5bfe9..d5f4ceca 100644 --- a/man/ISODataQualityAbstractElement.Rd +++ b/man/ISODataQualityAbstractElement.Rd @@ -16,7 +16,9 @@ ISODataQualityAbstractElement ISODataQualityAbstractElement } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractDQ_Element} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_AbstractDQ_Element} } \author{ Emmanuel Blondel @@ -32,21 +34,29 @@ Emmanuel Blondel \section{Public fields}{ \if{html}{\out{
    }} \describe{ -\item{\code{nameOfMeasure}}{nameOfMeasure [0..*]: character} +\item{\code{standaloneQualityReportDetails}}{standaloneQualityReportDetails [0..1]: character (=> 19115-3)} -\item{\code{measureIdentification}}{measureIdentification [0..1]: ISOMetaIdentifier} +\item{\code{nameOfMeasure}}{nameOfMeasure [0..*]: character (=> 19139)} -\item{\code{measureDescription}}{measureDescription [0..1]: character} +\item{\code{measureIdentification}}{measureIdentification [0..1]: ISOMetaIdentifier (=> 19139)} -\item{\code{evaluationMethodType}}{evaluationMethodType [0..1]: ISOEvaluationMethodType} +\item{\code{measureDescription}}{measureDescription [0..1]: character (=> 19139)} -\item{\code{evaluationMethodDescription}}{evaluationMethodDescription [0..1]: character} +\item{\code{measure}}{measure [0..1]: ISOMeasureReference (=> 19115-3)} -\item{\code{evaluationProcedure}}{evaluationProcedure [0..1]: ISOCitation} +\item{\code{evaluationMethodType}}{evaluationMethodType [0..1]: ISOEvaluationMethodType (=> 19139)} -\item{\code{dateTime}}{dateTime [0..1]: ISODateTime} +\item{\code{evaluationMethodDescription}}{evaluationMethodDescription [0..1]: character (=> 19139)} -\item{\code{result}}{result [1..2]: ISOConformanceResult} +\item{\code{evaluationProcedure}}{evaluationProcedure [0..1]: ISOCitation (=> 19139)} + +\item{\code{evaluationMethod}}{evaluationMethod [0..1]: ISOEvaluationMethod (=> 19115-3)} + +\item{\code{dateTime}}{dateTime [0..1]: ISODateTime (=> 19139)} + +\item{\code{result}}{result [1..2]: ISOAbstractResult} + +\item{\code{derivedElement}}{derivedElement [0..*]: ISODataQualityAbstractElement (=> 19115-3)} } \if{html}{\out{
    }} } @@ -54,16 +64,21 @@ Emmanuel Blondel \subsection{Public methods}{ \itemize{ \item \href{#method-ISODataQualityAbstractElement-new}{\code{ISODataQualityAbstractElement$new()}} +\item \href{#method-ISODataQualityAbstractElement-setStandaloneQualityReportDetails}{\code{ISODataQualityAbstractElement$setStandaloneQualityReportDetails()}} \item \href{#method-ISODataQualityAbstractElement-addNameOfMeasure}{\code{ISODataQualityAbstractElement$addNameOfMeasure()}} \item \href{#method-ISODataQualityAbstractElement-delNameOfMeasure}{\code{ISODataQualityAbstractElement$delNameOfMeasure()}} \item \href{#method-ISODataQualityAbstractElement-setMeasureIdentification}{\code{ISODataQualityAbstractElement$setMeasureIdentification()}} +\item \href{#method-ISODataQualityAbstractElement-setMeasure}{\code{ISODataQualityAbstractElement$setMeasure()}} \item \href{#method-ISODataQualityAbstractElement-setMeasureDescription}{\code{ISODataQualityAbstractElement$setMeasureDescription()}} \item \href{#method-ISODataQualityAbstractElement-setEvaluationMethodType}{\code{ISODataQualityAbstractElement$setEvaluationMethodType()}} \item \href{#method-ISODataQualityAbstractElement-setEvaluationMethodDescription}{\code{ISODataQualityAbstractElement$setEvaluationMethodDescription()}} \item \href{#method-ISODataQualityAbstractElement-setEvaluationProcedure}{\code{ISODataQualityAbstractElement$setEvaluationProcedure()}} +\item \href{#method-ISODataQualityAbstractElement-setEvaluationMethod}{\code{ISODataQualityAbstractElement$setEvaluationMethod()}} \item \href{#method-ISODataQualityAbstractElement-setDateTime}{\code{ISODataQualityAbstractElement$setDateTime()}} \item \href{#method-ISODataQualityAbstractElement-addResult}{\code{ISODataQualityAbstractElement$addResult()}} \item \href{#method-ISODataQualityAbstractElement-delResult}{\code{ISODataQualityAbstractElement$delResult()}} +\item \href{#method-ISODataQualityAbstractElement-addElement}{\code{ISODataQualityAbstractElement$addElement()}} +\item \href{#method-ISODataQualityAbstractElement-delElement}{\code{ISODataQualityAbstractElement$delElement()}} \item \href{#method-ISODataQualityAbstractElement-clone}{\code{ISODataQualityAbstractElement$clone()}} } } @@ -120,6 +135,23 @@ Initializes object } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-setStandaloneQualityReportDetails}{}}} +\subsection{Method \code{setStandaloneQualityReportDetails()}}{ +Set Standalone quality report details +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISODataQualityAbstractElement$setStandaloneQualityReportDetails(details)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{details}}{object of class \link{character}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-addNameOfMeasure}{}}} \subsection{Method \code{addNameOfMeasure()}}{ @@ -181,6 +213,23 @@ Set measure identification } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-setMeasure}{}}} +\subsection{Method \code{setMeasure()}}{ +Set measure +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISODataQualityAbstractElement$setMeasure(measure)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{measure}}{object of class \link{ISOMeasureReference}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-setMeasureDescription}{}}} \subsection{Method \code{setMeasureDescription()}}{ @@ -260,6 +309,23 @@ Set evaluation procedure } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-setEvaluationMethod}{}}} +\subsection{Method \code{setEvaluationMethod()}}{ +Set evaluation method +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISODataQualityAbstractElement$setEvaluationMethod(evaluationMethod)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{evaluationMethod}}{object of class \link{ISOEvaluationMethod}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-setDateTime}{}}} \subsection{Method \code{setDateTime()}}{ @@ -288,7 +354,7 @@ Adds result \subsection{Arguments}{ \if{html}{\out{
    }} \describe{ -\item{\code{result}}{object of class \link{ISOConformanceResult}} +\item{\code{result}}{object of class \link{ISOAbstractResult}} } \if{html}{\out{
    }} } @@ -308,7 +374,47 @@ Deletes result \subsection{Arguments}{ \if{html}{\out{
    }} \describe{ -\item{\code{result}}{object of class \link{ISOConformanceResult}} +\item{\code{result}}{object of class \link{ISOAbstractResult}} +} +\if{html}{\out{
    }} +} +\subsection{Returns}{ +\code{TRUE} if deleted, \code{FALSE} otherwise +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-addElement}{}}} +\subsection{Method \code{addElement()}}{ +Adds element +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISODataQualityAbstractElement$addElement(element)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{element}}{object of class \link{ISODataQualityAbstractElement}} +} +\if{html}{\out{
    }} +} +\subsection{Returns}{ +\code{TRUE} if added, \code{FALSE} otherwise +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISODataQualityAbstractElement-delElement}{}}} +\subsection{Method \code{delElement()}}{ +Deletes element +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISODataQualityAbstractElement$delElement(element)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{element}}{object of class \link{ISODataQualityAbstractElement}} } \if{html}{\out{
    }} } diff --git a/man/ISODataQualityScope.Rd b/man/ISODataQualityScope.Rd index fe397adb..16baf960 100644 --- a/man/ISODataQualityScope.Rd +++ b/man/ISODataQualityScope.Rd @@ -22,7 +22,7 @@ ISODataQualityScope } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_Scope} } \author{ Emmanuel Blondel diff --git a/man/ISODomainConsistency.Rd b/man/ISODomainConsistency.Rd index 509ced73..5529e636 100644 --- a/man/ISODomainConsistency.Rd +++ b/man/ISODomainConsistency.Rd @@ -42,7 +42,9 @@ ISODomainConsistency } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_DomainConsistency} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_DomainConsistency} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOEvaluationMethodType.Rd b/man/ISOEvaluationMethodType.Rd index 989d75bc..ad16c810 100644 --- a/man/ISOEvaluationMethodType.Rd +++ b/man/ISOEvaluationMethodType.Rd @@ -24,7 +24,9 @@ ISOEvaluationMethodType } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_EvaluationMethodTypeCode} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_EvaluationMethodTypeCode} } \author{ Emmanuel Blondel diff --git a/man/ISOFormatConsistency.Rd b/man/ISOFormatConsistency.Rd index fb071a0a..cb36f235 100644 --- a/man/ISOFormatConsistency.Rd +++ b/man/ISOFormatConsistency.Rd @@ -42,7 +42,9 @@ ISOFormatConsistency } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_FormatConsistency} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_FormatConsistency} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOGriddedDataPositionalAccuracy.Rd b/man/ISOGriddedDataPositionalAccuracy.Rd index fd05d0d1..14c3cc1e 100644 --- a/man/ISOGriddedDataPositionalAccuracy.Rd +++ b/man/ISOGriddedDataPositionalAccuracy.Rd @@ -42,7 +42,9 @@ ISOGriddedDataPositionalAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_GriddedDataPositionalAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_GriddedDataPositionalAccuracy} } \author{ Emmanuel Blondel @@ -94,17 +96,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOImageryCoverageResult.Rd b/man/ISOImageryCoverageResult.Rd index e5e73606..9d73bce3 100644 --- a/man/ISOImageryCoverageResult.Rd +++ b/man/ISOImageryCoverageResult.Rd @@ -16,7 +16,9 @@ ISOImageryCoverageResult ISOImageryCoverageResult } \references{ -ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +- 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_QE_CoverageResult} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_QE_CoverageResult} } \author{ Emmanuel Blondel @@ -31,6 +33,10 @@ Emmanuel Blondel \section{Public fields}{ \if{html}{\out{
    }} \describe{ +\item{\code{resultScope}}{resultScope [0..1]: ISOScope} + +\item{\code{dateTime}}{dateTime [0..1]: POSIX/date} + \item{\code{spatialRepresentationType}}{spatialRepresentationType [1..1] : ISOSpatialRepresentationType} \item{\code{resultFile}}{resultFile [1..1]: ISODataFile} @@ -47,6 +53,8 @@ Emmanuel Blondel \subsection{Public methods}{ \itemize{ \item \href{#method-ISOImageryCoverageResult-new}{\code{ISOImageryCoverageResult$new()}} +\item \href{#method-ISOImageryCoverageResult-setResultScope}{\code{ISOImageryCoverageResult$setResultScope()}} +\item \href{#method-ISOImageryCoverageResult-setDateTime}{\code{ISOImageryCoverageResult$setDateTime()}} \item \href{#method-ISOImageryCoverageResult-setSpatialRepresentationType}{\code{ISOImageryCoverageResult$setSpatialRepresentationType()}} \item \href{#method-ISOImageryCoverageResult-setResultFile}{\code{ISOImageryCoverageResult$setResultFile()}} \item \href{#method-ISOImageryCoverageResult-setResultSpatialRepresentation}{\code{ISOImageryCoverageResult$setResultSpatialRepresentation()}} @@ -108,6 +116,40 @@ Initializes object } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOImageryCoverageResult-setResultScope}{}}} +\subsection{Method \code{setResultScope()}}{ +Set result scope +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOImageryCoverageResult$setResultScope(scope)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{scope}}{object of class \link{ISOScope}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOImageryCoverageResult-setDateTime}{}}} +\subsection{Method \code{setDateTime()}}{ +Set date time +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOImageryCoverageResult$setDateTime(dateTime)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{dateTime}}{date time, object of class \link{POSIXct}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISOImageryCoverageResult-setSpatialRepresentationType}{}}} \subsection{Method \code{setSpatialRepresentationType()}}{ @@ -139,7 +181,8 @@ Set result file \subsection{Arguments}{ \if{html}{\out{
    }} \describe{ -\item{\code{resultFile}}{object of class \link{ISODataFile}} +\item{\code{resultFile}}{object of class \link{ISODataFile} (in ISO 19139) +or \link{ISOQualityResultFile} (in ISO 19115-3)} } \if{html}{\out{
    }} } diff --git a/man/ISOImageryNominalResolution.Rd b/man/ISOImageryNominalResolution.Rd index 9c299309..6b096124 100644 --- a/man/ISOImageryNominalResolution.Rd +++ b/man/ISOImageryNominalResolution.Rd @@ -91,16 +91,21 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOImageryUsability.Rd b/man/ISOImageryUsability.Rd index 0f31e559..d17280d2 100644 --- a/man/ISOImageryUsability.Rd +++ b/man/ISOImageryUsability.Rd @@ -71,16 +71,21 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISONonQuantitativeAttributeAccuracy.Rd b/man/ISONonQuantitativeAttributeAccuracy.Rd index 27692911..3c585d4e 100644 --- a/man/ISONonQuantitativeAttributeAccuracy.Rd +++ b/man/ISONonQuantitativeAttributeAccuracy.Rd @@ -42,7 +42,9 @@ ISONonQuantitativeAttributeAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_NonQuantitativeAttributeAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_NonQuantitativeAttributeAccuracy} } \author{ Emmanuel Blondel @@ -94,17 +96,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOQuantitativeAttributeAccuracy.Rd b/man/ISOQuantitativeAttributeAccuracy.Rd index 4e16cd0e..1fa714c3 100644 --- a/man/ISOQuantitativeAttributeAccuracy.Rd +++ b/man/ISOQuantitativeAttributeAccuracy.Rd @@ -42,7 +42,9 @@ ISOQuantitativeAttributeAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_QuantitativeAttributeAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_QuantitativeAttributeAccuracy} } \author{ Emmanuel Blondel @@ -94,17 +96,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOQuantitativeResult.Rd b/man/ISOQuantitativeResult.Rd index a5fd5ee7..839bfdd1 100644 --- a/man/ISOQuantitativeResult.Rd +++ b/man/ISOQuantitativeResult.Rd @@ -21,7 +21,9 @@ ISOQuantitativeResult } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_QuantitativeResult} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_QuantitativeResult} } \author{ Emmanuel Blondel @@ -35,7 +37,11 @@ Emmanuel Blondel \section{Public fields}{ \if{html}{\out{
    }} \describe{ -\item{\code{valueType}}{valueType [0..1]- ISORecord} +\item{\code{resultScope}}{resultScope [0..1]: ISOScope (=> 19115-3)} + +\item{\code{dateTime}}{dateTime [0..1]: POSIX/date (=> 19115-3)} + +\item{\code{valueType}}{valueType [0..1]- ISORecordType} \item{\code{valueUnit}}{valueUnit [1..1]- GMLUnitDefinition} @@ -49,6 +55,8 @@ Emmanuel Blondel \subsection{Public methods}{ \itemize{ \item \href{#method-ISOQuantitativeResult-new}{\code{ISOQuantitativeResult$new()}} +\item \href{#method-ISOQuantitativeResult-setResultScope}{\code{ISOQuantitativeResult$setResultScope()}} +\item \href{#method-ISOQuantitativeResult-setDateTime}{\code{ISOQuantitativeResult$setDateTime()}} \item \href{#method-ISOQuantitativeResult-setValueType}{\code{ISOQuantitativeResult$setValueType()}} \item \href{#method-ISOQuantitativeResult-setValueUnit}{\code{ISOQuantitativeResult$setValueUnit()}} \item \href{#method-ISOQuantitativeResult-setErrorStatistic}{\code{ISOQuantitativeResult$setErrorStatistic()}} @@ -110,6 +118,40 @@ Initializes object } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOQuantitativeResult-setResultScope}{}}} +\subsection{Method \code{setResultScope()}}{ +Set result scope +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOQuantitativeResult$setResultScope(scope)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{scope}}{object of class \link{ISOScope}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOQuantitativeResult-setDateTime}{}}} +\subsection{Method \code{setDateTime()}}{ +Set date time +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOQuantitativeResult$setDateTime(dateTime)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{dateTime}}{date time, object of class \link{POSIXct}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISOQuantitativeResult-setValueType}{}}} \subsection{Method \code{setValueType()}}{ diff --git a/man/ISORelativeInternalPositionalAccuracy.Rd b/man/ISORelativeInternalPositionalAccuracy.Rd index 96683bea..fe8965b6 100644 --- a/man/ISORelativeInternalPositionalAccuracy.Rd +++ b/man/ISORelativeInternalPositionalAccuracy.Rd @@ -42,7 +42,9 @@ ISORelativeInternalPositionalAccuracy } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_RelativeInternalPositionalAccuracy} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_RelativeInternalPositionalAccuracy} } \author{ Emmanuel Blondel @@ -95,17 +97,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOTemporalConsistency.Rd b/man/ISOTemporalConsistency.Rd index f95ae277..81e93168 100644 --- a/man/ISOTemporalConsistency.Rd +++ b/man/ISOTemporalConsistency.Rd @@ -42,7 +42,9 @@ ISOTemporalConsistency } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_TemporalConsistency} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_TemporalConsistency} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOTemporalValidity.Rd b/man/ISOTemporalValidity.Rd index 9966b3f9..26ee1c7d 100644 --- a/man/ISOTemporalValidity.Rd +++ b/man/ISOTemporalValidity.Rd @@ -42,7 +42,9 @@ ISOTemporalValidity } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_TemporalValidity} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_TemporalValidity} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOThematicClassificationCorrectness.Rd b/man/ISOThematicClassificationCorrectness.Rd index 3a37d71b..bd2ed795 100644 --- a/man/ISOThematicClassificationCorrectness.Rd +++ b/man/ISOThematicClassificationCorrectness.Rd @@ -42,7 +42,9 @@ ISOThematicClassificationCorrectness } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_ThematicClassificationCorrectness} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_ThematicClassificationCorrectness} } \author{ Emmanuel Blondel @@ -95,17 +97,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }} diff --git a/man/ISOTopologicalConsistency.Rd b/man/ISOTopologicalConsistency.Rd index 1eeb4262..3d962761 100644 --- a/man/ISOTopologicalConsistency.Rd +++ b/man/ISOTopologicalConsistency.Rd @@ -42,7 +42,9 @@ ISOTopologicalConsistency } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \link{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_DQ_TopologicalConsistency} + + - ISO 19115-3 \link{https://schemas.isotc211.org/19157/-/mdq/1.2/mdq/#element_DQ_TopologicalConsistency} } \author{ Emmanuel Blondel @@ -93,17 +95,22 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • +
  • geometa::ISODataQualityAbstractElement$addElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$addResult()
  • +
  • geometa::ISODataQualityAbstractElement$delElement()
  • geometa::ISODataQualityAbstractElement$delNameOfMeasure()
  • geometa::ISODataQualityAbstractElement$delResult()
  • geometa::ISODataQualityAbstractElement$initialize()
  • geometa::ISODataQualityAbstractElement$setDateTime()
  • +
  • geometa::ISODataQualityAbstractElement$setEvaluationMethod()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodDescription()
  • geometa::ISODataQualityAbstractElement$setEvaluationMethodType()
  • geometa::ISODataQualityAbstractElement$setEvaluationProcedure()
  • +
  • geometa::ISODataQualityAbstractElement$setMeasure()
  • geometa::ISODataQualityAbstractElement$setMeasureDescription()
  • geometa::ISODataQualityAbstractElement$setMeasureIdentification()
  • +
  • geometa::ISODataQualityAbstractElement$setStandaloneQualityReportDetails()
  • }}