diff --git a/DESCRIPTION b/DESCRIPTION index ad256476..a19380e1 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-04-18 +Date: 2024-09-03 Authors@R: c(person("Emmanuel", "Blondel", role = c("aut", "cre"), email = "emmanuel.blondel1@gmail.com", comment = c(ORCID = "0000-0002-5870-5762"))) Maintainer: Emmanuel Blondel Description: Provides facilities to read, write and validate geographic metadata diff --git a/NAMESPACE b/NAMESPACE index 07f4b11a..3cfb9f00 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -129,8 +129,12 @@ export(ISOCharacterSet) export(ISOCitation) export(ISOCitationSeries) export(ISOClassification) +export(ISOCodeDefinition) +export(ISOCodeListDictionary) export(ISOCodeListValue) export(ISOCodelist) +export(ISOCodelistCatalogue) +export(ISOCodelistValue) export(ISOCompletenessCommission) export(ISOCompletenessOmission) export(ISOConceptualConsistency) @@ -245,6 +249,8 @@ export(ISOLocalName) export(ISOLocale) export(ISOLocaleContainer) export(ISOLocalisedCharacterString) +export(ISOMLCodeDefinition) +export(ISOMLCodeListDictionary) export(ISOMaintenanceFrequency) export(ISOMaintenanceInformation) export(ISOMeasure) @@ -352,9 +358,11 @@ export(getISOCodelists) export(getISOInternalCodelists) export(getISOMetadataNamespace) export(getISOMetadataNamespaces) +export(getISOMetadataSchemaFile) export(getISOMetadataSchemas) export(getMappingFormats) export(getMappings) +export(getMetadataStandard) export(pivot_converter) export(pivot_format) export(readISO19139) @@ -369,6 +377,7 @@ export(setISOCodelists) export(setISOMetadataNamespaces) export(setISOMetadataSchemas) export(setMappingFormats) +export(setMetadataStandard) import(XML) import(crayon) import(httr) diff --git a/R/ISOAbstractObject.R b/R/ISOAbstractObject.R index 4938c2cf..c302bc7d 100644 --- a/R/ISOAbstractObject.R +++ b/R/ISOAbstractObject.R @@ -24,7 +24,7 @@ #' The object returned is a \code{data.frame} containing the specification reference #' and title. #' } -#' \item{\code{getISOStandard(clazz)}}{ +#' \item{\code{getISOStandard(clazz, version)}}{ #' Inherit the ISO (and/or OGC) standard reference for a given \pkg{geometa} class. #' The object returned is a \code{data.frame} containing the specification reference #' and title. @@ -55,6 +55,7 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", inherit = geometaLogger, cloneable = FALSE, private = list( + metadataStandardCompliance = TRUE, xmlElement = "AbstractObject", xmlNamespacePrefix = "GCO", encoding = options("encoding"), @@ -236,6 +237,7 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", initialize = function(xml = NULL, element = NULL, namespace = NULL, attrs = list(), defaults = list(), wrap = TRUE, value_as_field = FALSE){ + self$checkMetadataStandardCompliance() if(!is.null(element)){ private$xmlElement <- element } if(!is.null(namespace)){ private$xmlNamespacePrefix <- toupper(namespace)} self$element = private$xmlElement @@ -249,9 +251,32 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", } }, + #Metadata standard compliance methods + #--------------------------------------------------------------------------- + + #'@description Check if object can be instantiated vs. the current metadata standard + checkMetadataStandardCompliance = function(){ + if(private$metadataStandardCompliance){ + xmlnsp = private$xmlNamespacePrefix + if(is.list(xmlnsp)) if(!getMetadataStandard() %in% names(xmlnsp)) { + stop(sprintf("Class '%s' can't be loaded with current metadata standard '%s'", self$getClassName(), getMetadataStandard())) + } + } + }, + + #'@description Utility to stop in case a the current metadata standard does not match the one required for the code. This utility + #' can be used to check applicability of a certain method, depending on on the current metadata standard. + #'@param version version + stopIfMetadataStandardIsNot = function(version){ + if(getMetadataStandard() != version){ + stop(sprintf("The method can't be used with current metadata standard '%s'", getMetadataStandard())) + } + }, + #Main methods #--------------------------------------------------------------------------- + #'@description Provides a custom print output (as tree) of the current class #'@param ... args #'@param depth class nesting depth @@ -460,12 +485,13 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", }, fieldValue ) - if(length(fieldValue)==0) fieldValue = NA + if(length(fieldValue)==0) fieldValue = NA }else{ fieldValue <- fieldClass$new(xml = child) fieldValue$parentAttrs <- parentAttrs attrs <- as.list(xmlAttrs(child, TRUE, FALSE)) if(length(attrs)>0) attrs <- attrs[attrs != "gmd:PT_FreeText_PropertyType"] + if(length(attrs)>0) attrs <- attrs[attrs != "lan:PT_FreeText_PropertyType"] fieldValue$attrs <- attrs } if(is(self[[fieldName]], "list")){ @@ -613,6 +639,7 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", attrs <- as.list(xmlattrs) if(length(attrs)>0) attrs <- attrs[attrs != "gmd:PT_FreeText_PropertyType"] + if(length(attrs)>0) attrs <- attrs[attrs != "lan:PT_FreeText_PropertyType"] self$attrs <- attrs if("gco:nilReason" %in% names(xmlattrs)) self$isNull <- TRUE }, @@ -670,7 +697,10 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", rootXMLAttrs <- self[["attrs"]] rootXMLAttrs <- rootXMLAttrs[!is.na(rootXMLAttrs)] } - freeTextAttr <- list("xsi:type" = "gmd:PT_FreeText_PropertyType") + freeTextAttr <- list("xsi:type" = switch(getMetadataStandard(), + "19115-1/2" = "gmd:PT_FreeText_PropertyType", + "19115-3" = "lan:PT_FreeText_PropertyType", + )) #fields fields <- fields[!sapply(fields, function(x){ @@ -726,7 +756,9 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", if(field != "value"){ klass <- self$isFieldInheritedFrom(field) if(!is.null(klass)){ - ns <- ISOMetadataNamespace[[klass$private_fields$xmlNamespacePrefix]]$getDefinition() + xmlnsp <- klass$private_fields$xmlNamespacePrefix + if(is.list(xmlnsp)) if(getMetadataStandard() %in% names(xmlnsp)) xmlnsp <- xmlnsp[[getMetadataStandard()]] + ns <- ISOMetadataNamespace[[xmlnsp]]$getDefinition() } } namespaceId <- names(ns) @@ -1131,7 +1163,9 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", if(x != "value"){ klass <- self$isFieldInheritedFrom(x) if(!is.null(klass)){ - ns <- ISOMetadataNamespace[[klass$private_fields$xmlNamespacePrefix]]$getDefinition() + xmlnsp <- klass$private_fields$xmlNamespacePrefix + if(is.list(xmlnsp)) if(getMetadataStandard() %in% names(xmlnsp)) xmlnsp <- xmlnsp[[getMetadataStandard()]] + ns <- ISOMetadataNamespace[[xmlnsp]]$getDefinition() if(!(ns %in% nsdefs)){ nsdefs <<- c(nsdefs, ns) } @@ -1336,7 +1370,9 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", #'@param addNS add namespace definition? Default is \code{FALSE} setId = function(id, addNS = FALSE){ attrKey <- "id" - prefix <- tolower(private$xmlNamespacePrefix) + xmlnsp <- private$xmlNamespacePrefix + if(is.list(xmlnsp)) if(getMetadataStandard() %in% names(xmlnsp)) xmlnsp <- xmlnsp[[getMetadataStandard()]] + prefix <- tolower(xmlnsp) if(startsWith(prefix, "gml")) prefix <- "gml" if(addNS) attrKey <- paste(prefix, attrKey, sep=":") self$attrs[[attrKey]] <- id @@ -1424,27 +1460,22 @@ ISOAbstractObject <- R6Class("ISOAbstractObject", ) ISOAbstractObject$getStandardByPrefix = function(prefix){ - std <- switch(prefix, - "GCO" = data.frame(specification = "ISO/TS 19103:2005", title = "Geographic Common extensible markup language", stringsAsFactors = FALSE), - "GFC" = data.frame(specification = "ISO/TC211 19110:2005", title = "Geographic Information - Methodology for feature cataloguing", stringsAsFactors = FALSE), - "GMD" = data.frame(specification = "ISO/TC211 19115-1:2003", title = "Geographic Information - Metadata", stringsAsFactors = FALSE), - "GMI" = data.frame(specification = "ISO/TC211 19115-2:2009", title = "Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data", stringsAsFactors = FALSE), - "GTS" = data.frame(specification = "ISO/TC211 19139:2007", title = "Geographic Metadata XML Schema - Geographic Temporal Schema (GTS)", stringsAsFactors = FALSE), - "SRV" = data.frame(specification = "ISO/TC211 19119:2005", title = "Geographic Information - Service Metadata", stringsAsFactors = FALSE), - "GMX" = data.frame(specification = "ISO/TC211 19139:2007", title = "Geographic Metadata XML Schema", stringsAsFactors = FALSE), - "GML" = data.frame(specification = "GML 3.2.1 (ISO 19136)", title = "Geographic Markup Language", stringsAsFactors = FALSE), - "GMLCOV" = data.frame(specification = "GML 3.2.1 Coverage (OGC GMLCOV)", title = "OGC GML Coverage Implementation Schema", stringsAsFactors = FALSE), - "GMLRGRID" = data.frame(specification = "GML 3.3 Referenceable Grid (OGC GML)", title = "OGC GML Referenceable Grid", stringsAsFactors = FALSE), - "SWE" = data.frame(specification = "SWE 2.0", title = "Sensor Web Enablement (SWE) Common Data Model", stringsAsFactors = FALSE) - ) + ns <- getISOMetadataNamespace(prefix) + std <- ns$getStandard() return(std) } -ISOAbstractObject$getISOStandard = function(clazz){ +ISOAbstractObject$getISOStandard = function(clazz, version = "19115-1/2"){ std <- NA if(is.null(clazz$private_fields)) return(std) if(is.null(clazz$private_fields$xmlNamespacePrefix)) return(std) - std <- ISOAbstractObject$getStandardByPrefix(clazz$private_fields$xmlNamespacePrefix) + xmlnsp <- clazz$private_fields$xmlNamespacePrefix + if(is.list(xmlnsp)) if(version %in% names(xmlnsp)){ + xmlnsp <- xmlnsp[[version]] + }else{ + xmlnsp <- xmlnsp[[1]] + } + std <- ISOAbstractObject$getStandardByPrefix(xmlnsp) return(std) } @@ -1474,15 +1505,26 @@ ISOAbstractObject$getISOClasses = function(extended = FALSE, pretty = FALSE){ if(pretty){ std_info <- do.call("rbind",lapply(list_of_classes, function(x){ clazz <- invisible(try(eval(parse(text=x)),silent=TRUE)) - std <- ISOAbstractObject$getISOStandard(clazz) - std_info <- cbind( + std <- ISOAbstractObject$getISOStandard(clazz, version = getMetadataStandard()) + xmlnsp <- clazz$private_fields$xmlNamespacePrefix + refactored = FALSE + if(is.list(xmlnsp)){ + refactored = TRUE + if(getMetadataStandard() %in% names(xmlnsp)){ + xmlnsp <- xmlnsp[[getMetadataStandard()]] + }else{ + xmlnsp <- xmlnsp[[1]] + } + } + stdinfo <- cbind( std, - ns_prefix = clazz$private_fields$xmlNamespacePrefix, - ns_uri = ISOMetadataNamespace[[clazz$private_fields$xmlNamespacePrefix]]$uri, + ns_prefix = if(!is.null(xmlnsp)) xmlnsp else NA, + ns_uri = if(!is.null(xmlnsp)) ISOMetadataNamespace[[xmlnsp]]$uri else NA, element = clazz$private_fields$xmlElement, + refactored = refactored, stringsAsFactors = FALSE ) - return(std_info) + return(stdinfo) })) list_of_classes <- data.frame( @@ -1496,7 +1538,7 @@ ISOAbstractObject$getISOClasses = function(extended = FALSE, pretty = FALSE){ ISOAbstractObject$getISOClassByNode = function(node){ outClass <- NULL - if(!is(node, "XMLInternalDocument")) node <- xmlDoc(node) + if(!is(node, "XMLInternalDocument") & !is(node, "XMLInternalCommentNode")) node <- xmlDoc(node) nodeElement <- xmlRoot(node) nodeElementName <- xmlName(nodeElement) nodeElementNames <- unlist(strsplit(nodeElementName, ":")) @@ -1648,10 +1690,14 @@ getClassesInheriting <- function(classname, extended = FALSE, pretty = FALSE){ std_infos <- do.call("rbind",lapply(list_of_classes, function(x){ clazz <- try(eval(parse(text=x)),silent=TRUE) if(is(clazz,"try-error")) clazz <- try(eval(parse(text=paste0("geometa::",x))),silent=TRUE) + + xmlnsp <- clazz$private_fields$xmlNamespacePrefix + if(is.list(xmlnsp)) if(getMetadataStandard() %in% names(xmlnsp)) xmlnsp <- xmlnsp[[getMetadataStandard()]] + std_info <- data.frame( environment = environmentName(clazz$parent_env), - ns_prefix = if(!is.null(clazz$private_fields$xmlNamespacePrefix))clazz$private_fields$xmlNamespacePrefix else NA, - ns_uri = if(!is.null(clazz$private_fields$xmlNamespacePrefix)) ISOMetadataNamespace[[clazz$private_fields$xmlNamespacePrefix]]$uri else NA, + ns_prefix = if(!is.null(xmlnsp)) xmlnsp else NA, + ns_uri = if(!is.null(xmlnsp)) ISOMetadataNamespace[[xmlnsp]]$uri else NA, element = if(!is.null(clazz$private_fields$xmlElement)) clazz$private_fields$xmlElement else NA, stringsAsFactors = FALSE ) diff --git a/R/ISOCodeDefinition.R b/R/ISOCodeDefinition.R new file mode 100644 index 00000000..d9cb76b1 --- /dev/null +++ b/R/ISOCodeDefinition.R @@ -0,0 +1,46 @@ +#' ISOCodeDefinition +#' +#' @docType class +#' @importFrom R6 R6Class +#' @export +#' @keywords ISO code definition +#' @return Object of \code{\link{R6Class}} for modelling an ISO Metadata code definition +#' @format \code{\link{R6Class}} object. +#' +#' @note Abstract ISO codelist class used internally by geometa +#' +#' @references +#' ISO/TS 19139:2007 Geographic information -- XML +#' +#' @author Emmanuel Blondel +#' +ISOCodeDefinition <- R6Class("ISOCodeDefinition", + inherit = ISOAbstractObject, + private = list( + xmlElement = "CodeDefinition", + xmlNamespacePrefix = list( + "19115-1/2" = "GMX" + ) + ), + public = list( + #'@field identifier identifier + identifier = NA, + #'@field description description + description = NA, + + #'@description Initializes object + #'@param xml object of class \link{XMLInternalNode-class} + initialize = function(xml = NULL){ + super$initialize(xml = xml) + }, + + #'@description Converts to \link{ISOCodelistValue} + #'@return object of class \link{ISOCodelistValue} + toISOCodelistValue = function(){ + clv = ISOCodelistValue$new() + clv$identifier = self$identifier$value + clv$description = self$description$value + return(clv) + } + ) +) diff --git a/R/ISOCodeListDictionary.R b/R/ISOCodeListDictionary.R new file mode 100644 index 00000000..aea17845 --- /dev/null +++ b/R/ISOCodeListDictionary.R @@ -0,0 +1,53 @@ +#' ISOCodeListDictionary +#' +#' @docType class +#' @importFrom R6 R6Class +#' @export +#' @keywords ISO code element +#' @return Object of \code{\link{R6Class}} for modelling an ISO Metadata codelist dictionary +#' @format \code{\link{R6Class}} object. +#' +#' @note Abstract ISO codelist class used internally by geometa +#' +#' @references +#' ISO/TS 19139:2007 Geographic information -- XML +#' +#' @author Emmanuel Blondel +#' +ISOCodeListDictionary <- R6Class("ISOCodeListDictionary", + inherit = ISOAbstractObject, + private = list( + xmlElement = "CodeListDictionary", + xmlNamespacePrefix = list( + "19115-1/2" = "GMX" + ) + ), + public = list( + #'@field identifier identifier + identifier = NA, + #'@field description description + description = NA, + #'@field codeEntry code entries + codeEntry = list(), + + #'@description Initializes object + #'@param xml object of class \link{XMLInternalNode-class} + initialize = function(xml = NULL){ + super$initialize(xml = xml) + }, + + #'@description Converts to \link{ISOCodelist} + #'@return an object of class \link{ISOCodelist} + toISOCodelist = function(){ + cl = ISOCodelist$new() + identifier = ISOScopedName$new(value = self$identifier$value) + identifier$setCodeSpace(self$identifier$attrs$codeSpace) + cl$identifier = identifier + cl$description = self$description$value + cl$codeEntry = lapply(self$codeEntry, function(codeEntry){ + codeEntry$toISOCodelistValue() + }) + return(cl) + } + ) +) diff --git a/R/ISOCodeListValue.R b/R/ISOCodeListValue.R index 26e678a1..54e9be68 100644 --- a/R/ISOCodeListValue.R +++ b/R/ISOCodeListValue.R @@ -17,7 +17,9 @@ ISOCodeListValue <- R6Class("ISOCodeListValue", inherit = ISOAbstractObject, private = list( - printAttrs = list() + printAttrs = list(), + xmlElement = "CodeListValue", + xmlNamespacePrefix = "GCO" ), public = list( #'@field codelistId codelist ID @@ -67,13 +69,12 @@ ISOCodeListValue <- R6Class("ISOCodeListValue", clName <- NA clDescription <- "" - if(length(cl$entries)>0){ + if(length(cl$codeEntry)>0){ if(!is.null(value)){ - clEntry <- cl$entries[cl$entries$value == value,] + clEntry <- cl$codeEntry[cl$codeEntry$value == value,] if(nrow(clEntry)==0){ warning(sprintf("No ISO '%s' codelist entry for value '%s'", id, value)) clValue <- value - clCodeSpace <- cl$codeSpace if(!is.null(description)){ setValue <- TRUE clName <- description @@ -82,7 +83,7 @@ ISOCodeListValue <- R6Class("ISOCodeListValue", } } }else{ - clEntry <- cl$entries[1,] + clEntry <- cl$codeEntry[1,] } if(!is.null(value) & nrow(clEntry)>0){ @@ -95,7 +96,6 @@ ISOCodeListValue <- R6Class("ISOCodeListValue", } }else{ clValue <- value - clCodeSpace <- cl$codeSpace if(!is.null(description)){ setValue <- TRUE clName <- description @@ -141,7 +141,7 @@ ISOCodeListValue <- R6Class("ISOCodeListValue", #'@description Get accepted values #'@return a vector of class \link{character} getAcceptedValues = function(){ - return(self$codelistId$entries$value) + return(self$codelistId$codeEntry$value) } ) ) @@ -151,5 +151,5 @@ ISOCodeListValue$values = function(class, labels = FALSE){ if(labels) fields <- c(fields, "name", "description") element <- class$private_fields$xmlElement if(element == "MD_ScopeCode") element <- "MX_ScopeCode" - return(getISOCodelist(element)$entries[,fields]) + return(getISOCodelist(element)$codeEntry[,fields]) } \ No newline at end of file diff --git a/R/ISOCodelist.R b/R/ISOCodelist.R index d657e343..1ec1621f 100644 --- a/R/ISOCodelist.R +++ b/R/ISOCodelist.R @@ -12,6 +12,15 @@ #' @author Emmanuel Blondel #' ISOCodelist <- R6Class("ISOCodelist", + inherit = ISOAbstractObject, + private = list( + metadataStandardCompliance = FALSE, + xmlElement = "CT_Codelist", + xmlNamespacePrefix = list( + "19115-1/2" = "GMX", + "19115-3" = "CAT" + ) + ), public = list( #'@field id id id =NA, @@ -23,17 +32,40 @@ ISOCodelist <- R6Class("ISOCodelist", identifier = NA, #'@field description description description = NA, - #'@field entries entries - entries = NULL, + #'@field codeEntry code entries + codeEntry = list(), #'@description Initializes object + #'@param xml object of class \link{XMLInternalNode-class} #'@param refFile ref file #'@param id id - initialize = function(refFile, id){ - self$refFile <- refFile - self$parse(refFile, id) + initialize = function(xml = NULL, refFile = NULL, id = NULL){ + super$initialize(xml = xml) + + #legacy + if(!is.null(refFile) && !is.null(id)){ + self$refFile <- refFile + self$parse(refFile, id) + } }, + #'@description get code entries + #'@param pretty prettify output as \code{data.frame}. Default is\code{FALSE} + #'@return an object of class \link{list} or \link{data.frame} + getCodeEntries = function(pretty = FALSE){ + entries = self$codeEntry + if(pretty){ + entries <- do.call("rbind", lapply(entries, function(entry){ + data.frame( + identifier = entry$identifier, + description = entry$description, + stringsAsFactors = FALSE + ) + })) + } + return(entries) + }, + #'@description Parse codelist #'@param refFile ref file #'@param id id @@ -57,9 +89,9 @@ ISOCodelist <- R6Class("ISOCodelist", self$identifier <- id self$codeSpace <- "ISO 639-2" self$description <- "Language : ISO 639-2 (3 characters)" - self$entries <- utils::read.csv(clFile, sep="|", stringsAsFactors = FALSE) - self$entries <- self$entries[,c("alpha3", "english", "english")] - colnames(self$entries) <- c("value","name", "description") + self$codeEntry <- utils::read.csv(clFile, sep="|", stringsAsFactors = FALSE) + self$codeEntry <- self$codeEntry[,c("alpha3", "english", "english")] + colnames(self$codeEntry) <- c("value","name", "description") }else{ isML <- regexpr("ML", refFile) > 0 @@ -105,10 +137,10 @@ ISOCodelist <- R6Class("ISOCodelist", self$description <- XML::xmlValue(desXML[[1]]) } - #codelist entries + #codelist codeEntry entriesXML <- XML::getNodeSet(clDictXML, "//gmx:codeEntry", c(gmx = nsdf[nsdf$id=="","uri"])) - self$entries <- do.call("rbind",lapply(entriesXML, function(x){ + self$codeEntry <- do.call("rbind",lapply(entriesXML, function(x){ entry.df <- data.frame(identifier = NA, name = NA, description = NA) identifier <- getNodeSet(xmlDoc(x), "//gml:identifier", namespaces = c(gml = nsdf[nsdf$id == "gml","uri"])) if(length(identifier)>0) entry.df$identifier <- xmlValue(identifier[[1]]) @@ -118,7 +150,7 @@ ISOCodelist <- R6Class("ISOCodelist", if(length(description)>0) entry.df$description <- xmlValue(description[[1]]) return(entry.df) })) - colnames(self$entries) <- c("value", "name", "description") + colnames(self$codeEntry) <- c("value", "name", "description") } } ) @@ -135,54 +167,55 @@ setISOCodelists <- function(){ gmxCL <- "gmxCodelists.xml" codelists <- list( #ISO 19110:2005 codelists - ISOCodelist$new(gmxCL, "FC_RoleType"), + ISOCodelist$new(refFile = gmxCL, id = "FC_RoleType"), #ISO 19115-1:2003 Codelists - ISOCodelist$new(gmxCL, "CI_DateTypeCode"), - ISOCodelist$new(gmxCL, "CI_PresentationFormCode"), - ISOCodelist$new(gmxCL, "CI_RoleCode"), - ISOCodelist$new(gmxCL, "CI_OnLineFunctionCode"), - ISOCodelist$new(ML_gmxCL, "Country"), - ISOCodelist$new(gmxCL, "DCPList"), - ISOCodelist$new(gmxCL, "DQ_EvaluationMethodTypeCode"), - ISOCodelist$new(gmxCL, "DS_AssociationTypeCode"), - ISOCodelist$new(gmxCL, "DS_InitiativeTypeCode"), - ISOCodelist$new(langCL, "LanguageCode"), - ISOCodelist$new(gmxCL, "MD_CellGeometryCode"), - ISOCodelist$new(ML_gmxCL, "MD_CharacterSetCode"), - ISOCodelist$new(gmxCL, "MD_ClassificationCode"), - ISOCodelist$new(gmxCL, "MD_CoverageContentTypeCode"), - ISOCodelist$new(gmxCL, "MD_DatatypeCode"), - ISOCodelist$new(gmxCL, "MD_DimensionNameTypeCode"), - ISOCodelist$new(gmxCL, "MD_DistributionUnits"), - ISOCodelist$new(gmxCL, "MD_GeometricObjectTypeCode"), - ISOCodelist$new(gmxCL, "MD_KeywordTypeCode"), - ISOCodelist$new(gmxCL, "MD_ImagingConditionCode"), - ISOCodelist$new(gmxCL, "MD_MaintenanceFrequencyCode"), - ISOCodelist$new(gmxCL, "MD_MediumFormatCode"), - ISOCodelist$new(gmxCL, "MD_MediumNameCode"), - ISOCodelist$new(gmxCL, "MD_ObligationCode"), - ISOCodelist$new(gmxCL, "MD_PixelOrientationCode"), - ISOCodelist$new(gmxCL, "MD_ProgressCode"), - ISOCodelist$new(gmxCL, "MD_RestrictionCode"), - ISOCodelist$new(gmxCL, "MD_SpatialRepresentationTypeCode"), - ISOCodelist$new(gmxCL, "MD_TopicCategoryCode"), - ISOCodelist$new(gmxCL, "MD_TopologyLevelCode"), + ISOCodelist$new(refFile = gmxCL, id = "CI_DateTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "CI_PresentationFormCode"), + ISOCodelist$new(refFile = gmxCL, id = "CI_RoleCode"), + ISOCodelist$new(refFile = gmxCL, id = "CI_OnLineFunctionCode"), + ISOCodelist$new(refFile = ML_gmxCL, id = "Country"), + ISOCodelist$new(refFile = gmxCL, id = "DCPList"), + ISOCodelist$new(refFile = gmxCL, id = "DQ_EvaluationMethodTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "DS_AssociationTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "DS_InitiativeTypeCode"), + ISOCodelist$new(refFile = langCL, id = "LanguageCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_CellGeometryCode"), + ISOCodelist$new(refFile = ML_gmxCL, id = "MD_CharacterSetCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_ClassificationCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_CoverageContentTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_DatatypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_DimensionNameTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_DistributionUnits"), + ISOCodelist$new(refFile = gmxCL, id = "MD_GeometricObjectTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_KeywordTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_ImagingConditionCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_MaintenanceFrequencyCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_MediumFormatCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_MediumNameCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_ObligationCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_PixelOrientationCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_ProgressCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_RestrictionCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_SpatialRepresentationTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_TopicCategoryCode"), + ISOCodelist$new(refFile = gmxCL, id = "MD_TopologyLevelCode"), #ISO 19115-2:2009 codelists - ISOCodelist$new(gmxCL, "MI_BandDefinition"), - ISOCodelist$new(gmxCL, "MI_ContextCode"), - ISOCodelist$new(gmxCL, "MI_GeometryTypeCode"), - ISOCodelist$new(gmxCL, "MI_ObjectiveTypeCode"), - ISOCodelist$new(gmxCL, "MI_OperationTypeCode"), - ISOCodelist$new(gmxCL, "MI_PolarisationOrientationCode"), - ISOCodelist$new(gmxCL, "MI_PriorityCode"), - ISOCodelist$new(gmxCL, "MI_SequenceCode"), - ISOCodelist$new(gmxCL, "MI_TransferFunctionTypeCode"), - ISOCodelist$new(gmxCL, "MI_TriggerCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_BandDefinition"), + ISOCodelist$new(refFile = gmxCL, id = "MI_ContextCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_GeometryTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_ObjectiveTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_OperationTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_PolarisationOrientationCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_PriorityCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_SequenceCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_TransferFunctionTypeCode"), + ISOCodelist$new(refFile = gmxCL, id = "MI_TriggerCode"), #ISO 19119:2005 codelists - ISOCodelist$new(gmxCL, "SV_CouplingType"), - ISOCodelist$new(gmxCL, "SV_ParameterDirection"), + ISOCodelist$new(refFile = gmxCL, id = "SV_CouplingType"), + ISOCodelist$new(refFile = gmxCL, id = "SV_ParameterDirection"), #ISO 19139:2007 codelists - ISOCodelist$new(gmxCL, "MX_ScopeCode") + ISOCodelist$new(refFile = gmxCL, id = "MX_ScopeCode") + #ISO/TS 19115-3:2016 ) names(codelists) <- sapply(codelists, function(cl){cl$id}) .geometa.iso$codelists <- codelists diff --git a/R/ISOCodelistCatalogue.R b/R/ISOCodelistCatalogue.R new file mode 100644 index 00000000..73258369 --- /dev/null +++ b/R/ISOCodelistCatalogue.R @@ -0,0 +1,69 @@ +#' ISOCodelistCatalogue +#' +#' @docType class +#' @importFrom R6 R6Class +#' @export +#' @keywords ISO citation series +#' @return Object of \code{\link{R6Class}} for modelling an ISOCodelistCatalogue +#' @format \code{\link{R6Class}} object. +#' +#' @references +#' ISO/TS 19139:2007 Geographic information -- XML +#' +#' @author Emmanuel Blondel +#' +ISOCodelistCatalogue <- R6Class("ISOCodelistCatalogue", + inherit = ISOAbstractObject, + private = list( + xmlElement = "CT_CodelistCatalogue", + xmlNamespacePrefix = list( + "19115-1/2" = "GMX", + "19115-3" = "CAT" + ) + ), + public = list( + #'@field name name + name = NULL, + #'@field scope scope + scope = NULL, + #'@field fieldOfApplication field of application + fieldOfApplication = NULL, + #'@field versionNumber version number + versionNumber = NULL, + #'@field versionDate version date + versionDate = NULL, + #'@field codelistItem codelist items + codelistItem = list(), + + #'@description Initializes object + #'@param xml object of class \link{XMLInternalNode-class} + initialize = function(xml = NULL){ + super$initialize(xml = xml) + }, + + #'@description Get codelists. The method ensure an harmonized output made of objects of + #' class \link{ISOCodelist}. In the catalogue is built of objects of class \link{ISOCodeListDictionary}, these + #' will be mapped as \link{ISOCodelist}, to facilitate the consumption of codelists by \pkg{geometa} + getCodelists = function(){ + items <- lapply(self$codelistItem, function(item){ + the_item <- item + if(is(item, "ISOCodeListDictionary")){ + the_item = item$toISOCodelist() + } + return(the_item) + }) + return(items) + }, + + #'@description Get codelist by id. + #'@param id id + #'@return object of class \link{ISOCodelist} + getCodelist = function(id){ + cls <- self$getCodelists() + cls <- cls[sapply(cls, function(x){if(x$identifier$value == id) return(TRUE) else return(FALSE)})] + cl <- NULL + if(length(cls)>0) cl <- cls[[1]] + return(cl) + } + ) +) \ No newline at end of file diff --git a/R/ISOCodelistValueNew.R b/R/ISOCodelistValueNew.R new file mode 100644 index 00000000..8232b9b0 --- /dev/null +++ b/R/ISOCodelistValueNew.R @@ -0,0 +1,39 @@ +#' ISOCodelistValue +#' +#' @docType class +#' @importFrom R6 R6Class +#' @export +#' @keywords ISO code definition +#' @return Object of \code{\link{R6Class}} for modelling an ISO Metadata codelistvalue +#' @format \code{\link{R6Class}} object. +#' +#' @note Abstract ISO codelist class used internally by geometa +#' +#' @references +#' ISO/TS 19139:2007 Geographic information -- XML +#' +#' @author Emmanuel Blondel +#' +ISOCodelistValue <- R6Class("ISOCodelistValue", + inherit = ISOAbstractObject, + private = list( + metadataStandardCompliance = FALSE, + xmlElement = "CT_CodelistValue", + xmlNamespacePrefix = list( + "19115-1/2" = "GCO", #fake to allow codelist value harmonization + "19115-3" = "CAT" + ) + ), + public = list( + #'@field identifier identifier + identifier = NA, + #'@field description description + description = NA, + + #'@description Initializes object + #'@param xml object of class \link{XMLInternalNode-class} + initialize = function(xml = NULL){ + super$initialize(xml = xml) + } + ) +) diff --git a/R/ISODate.R b/R/ISODate.R index 350474b7..7f46c5a1 100644 --- a/R/ISODate.R +++ b/R/ISODate.R @@ -22,7 +22,10 @@ ISODate <- R6Class("ISODate", inherit = ISOAbstractObject, private = list( xmlElement = "CI_Date", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19115-1/2" = "GMD", + "19115-3" = "CIT" + ) ), public = list( #'@field date date diff --git a/R/ISODateType.R b/R/ISODateType.R index 2035786b..f5dd076a 100644 --- a/R/ISODateType.R +++ b/R/ISODateType.R @@ -23,7 +23,10 @@ ISODateType <- R6Class("ISODateType", inherit = ISOCodeListValue, private = list( xmlElement = "CI_DateTypeCode", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19115-1/2" = "GMD", + "19115-3" = "CIT" + ) ), public = list( diff --git a/R/ISOMLCodeDefinition.R b/R/ISOMLCodeDefinition.R new file mode 100644 index 00000000..52e25c12 --- /dev/null +++ b/R/ISOMLCodeDefinition.R @@ -0,0 +1,32 @@ +#' ISOMLCodeDefinition +#' +#' @docType class +#' @importFrom R6 R6Class +#' @export +#' @keywords ISO code definition +#' @return Object of \code{\link{R6Class}} for modelling an ISO Metadata code definition +#' @format \code{\link{R6Class}} object. +#' +#' @note Abstract ISO codelist class used internally by geometa +#' +#' @references +#' ISO/TS 19139:2007 Geographic information -- XML +#' +#' @author Emmanuel Blondel +#' +ISOMLCodeDefinition <- R6Class("ISOMLCodeDefinition", + inherit = ISOCodeDefinition, + private = list( + xmlElement = "ML_CodeDefinition", + xmlNamespacePrefix = list( + "19115-1/2" = "GMX" + ) + ), + public = list( + #'@description Initializes object + #'@param xml object of class \link{XMLInternalNode-class} + initialize = function(xml = NULL){ + super$initialize(xml = xml) + } + ) +) diff --git a/R/ISOMLCodeListDictionary.R b/R/ISOMLCodeListDictionary.R new file mode 100644 index 00000000..bd3652bc --- /dev/null +++ b/R/ISOMLCodeListDictionary.R @@ -0,0 +1,32 @@ +#' ISOMLCodeListDictionary +#' +#' @docType class +#' @importFrom R6 R6Class +#' @export +#' @keywords ISO code element +#' @return Object of \code{\link{R6Class}} for modelling an ISO Metadata codelist dictionary +#' @format \code{\link{R6Class}} object. +#' +#' @note Abstract ISO codelist class used internally by geometa +#' +#' @references +#' ISO/TS 19139:2007 Geographic information -- XML +#' +#' @author Emmanuel Blondel +#' +ISOMLCodeListDictionary <- R6Class("ISOMLCodeListDictionary", + inherit = ISOCodeListDictionary, + private = list( + xmlElement = "ML_CodeListDictionary", + xmlNamespacePrefix = list( + "19115-1/2" = "GMX" + ) + ), + public = list( + #'@description Initializes object + #'@param xml object of class \link{XMLInternalNode-class} + initialize = function(xml = NULL){ + super$initialize(xml = xml) + } + ) +) diff --git a/R/ISOMetadataNamespace.R b/R/ISOMetadataNamespace.R index e1791785..eea0b647 100644 --- a/R/ISOMetadataNamespace.R +++ b/R/ISOMetadataNamespace.R @@ -17,13 +17,17 @@ ISOMetadataNamespace <- R6Class("ISOMetadataNamespace", id = NA, #'@field uri uri uri = NA, + #'@field standard standard + standard = data.frame(specification = NA, schema = NA, title = NA), #'@description Initializes namespace object #'@param id id #'@param uri uri - initialize = function(id, uri){ + #'@param standard standard + initialize = function(id, uri, standard){ self$id = id self$uri = uri + self$standard = standard }, #'@description Get definition @@ -32,41 +36,260 @@ ISOMetadataNamespace <- R6Class("ISOMetadataNamespace", ns <- list(self$uri) names(ns) <- self$id return(ns) + }, + + #'@description Get standard + #'@return object of class \link{data.frame} + getStandard = function(){ + return(self$standard) } + ) ) -ISOMetadataNamespace$GCO = ISOMetadataNamespace$new("gco", "http://www.isotc211.org/2005/gco") -ISOMetadataNamespace$GFC = ISOMetadataNamespace$new("gfc", "http://www.isotc211.org/2005/gfc") -ISOMetadataNamespace$GMD = ISOMetadataNamespace$new("gmd", "http://www.isotc211.org/2005/gmd") -ISOMetadataNamespace$GMI = ISOMetadataNamespace$new("gmi", "http://www.isotc211.org/2005/gmi") #http://standards.iso.org/iso/19115/-2/gmi/1.0 -ISOMetadataNamespace$GMX = ISOMetadataNamespace$new("gmx", "http://www.isotc211.org/2005/gmx") -ISOMetadataNamespace$GTS = ISOMetadataNamespace$new("gts", "http://www.isotc211.org/2005/gts") -ISOMetadataNamespace$SRV = ISOMetadataNamespace$new("srv", "http://www.isotc211.org/2005/srv") -ISOMetadataNamespace$GML = ISOMetadataNamespace$new("gml", "http://www.opengis.net/gml/3.2") -ISOMetadataNamespace$GMLCOV = ISOMetadataNamespace$new("gmlcov", "http://www.opengis.net/gmlcov/1.0") -ISOMetadataNamespace$GMLRGRID = ISOMetadataNamespace$new("gmlrgrid", "http://www.opengis.net/gml/3.3/rgrid") -ISOMetadataNamespace$SWE = ISOMetadataNamespace$new("swe", "http://www.opengis.net/swe/2.0") -ISOMetadataNamespace$XLINK = ISOMetadataNamespace$new("xlink", "http://www.w3.org/1999/xlink") -ISOMetadataNamespace$XSI = ISOMetadataNamespace$new("xsi", "http://www.w3.org/2001/XMLSchema-instance") #' setMetadataNamespaces #' @export -setISOMetadataNamespaces <- function(){ - .geometa.iso$namespaces <- list( - ISOMetadataNamespace$GCO, - ISOMetadataNamespace$GFC, - ISOMetadataNamespace$GMD, - ISOMetadataNamespace$GMI, - ISOMetadataNamespace$GMX, - ISOMetadataNamespace$GTS, - ISOMetadataNamespace$SRV, - ISOMetadataNamespace$GML, - ISOMetadataNamespace$GMLCOV, - ISOMetadataNamespace$GMLRGRID, - ISOMetadataNamespace$SWE, - ISOMetadataNamespace$XLINK, - ISOMetadataNamespace$XSI +setISOMetadataNamespaces <- function(version = "19115-1/2"){ + + #XML 1.0 + #---------------------------------------------------- + xml_namespaces <- list( + #XLINK + ISOMetadataNamespace$new( + id = "xlink", uri = "http://www.w3.org/1999/xlink", + standard = data.frame(specification = "XML 1.0", schema = "XML 1.0", title = "Extensible Markup Language (XML) 1.0 (Fifth Edition)", stringsAsFactors = FALSE) + ), + #XSI + ISOMetadataNamespace$new( + id = "xsi", uri = "http://www.w3.org/2001/XMLSchema-instance", + standard = data.frame(specification = "XML 1.0", schema = "XML 1.0", title = "Extensible Markup Language (XML) 1.0 (Fifth Edition)", stringsAsFactors = FALSE) + ) + ) + #GML and related + #---------------------------------------------------- + gml_namespaces <- list( + #GML + ISOMetadataNamespace$new( + id = "gml", uri = "http://www.opengis.net/gml/3.2", + standard = data.frame(specification = "GML 3.2.1 (ISO 19136)", schema = "GML 3.2.1 (ISO 19136)", title = "Geographic Markup Language", stringsAsFactors = FALSE) + ), + #GMLCOV + ISOMetadataNamespace$new( + id = "gmlcov", uri = "http://www.opengis.net/gmlcov/1.0", + standard = data.frame(specification = "GML 3.2.1 Coverage (OGC GMLCOV)", schema = "GML 3.2.1 Coverage (OGC GMLCOV)", title = "OGC GML Coverage Implementation Schema", stringsAsFactors = FALSE) + ), + #GMLRGRID + ISOMetadataNamespace$new( + id = "gmlrgrid", uri = "http://www.opengis.net/gml/3.3/rgrid", + standard = data.frame(specification = "GML 3.3 Referenceable Grid (OGC GML)", schema = "GML 3.3 Referenceable Grid (OGC GML)", title = "OGC GML Referenceable Grid", stringsAsFactors = FALSE) + ) ) + + #SWE + #---------------------------------------------------- + swe_namespaces <- list( + #SWE + ISOMetadataNamespace$new( + id = "swe", uri = "http://www.opengis.net/swe/2.0", + standard = data.frame(specification = "SWE 2.0", schema = "SWE 2.0", title = "Sensor Web Enablement (SWE) Common Data Model", stringsAsFactors = FALSE) + ) + ) + + #ISO 19115 and related + #---------------------------------------------------- + iso_namespaces <- switch(version, + "19115-1/2" = list( + #ISO 19110 + #---------------------------------------------------- + #GFC + ISOMetadataNamespace$new( + id = "gfc", uri = "http://www.isotc211.org/2005/gfc", + standard = data.frame(specification = "ISO/TS 19139:2007", schema = "ISO 19110:2005", title = "Geographic Information - Methodology for feature cataloguing", stringsAsFactors = FALSE) + ), + #ISO 19115-1 / 19115-2 / 19139 + #---------------------------------------------------- + #GCO + ISOMetadataNamespace$new( + id = "gco", uri = "http://www.isotc211.org/2005/gco", + standard = data.frame(specification = "ISO/TS 19139:2007", schema = "ISO/TS 19103:2005", title = "Geographic Common extensible markup language", stringsAsFactors = FALSE) + ), + #GMD + ISOMetadataNamespace$new( + id = "gmd", uri = "http://www.isotc211.org/2005/gmd", + standard = data.frame(specification = "ISO/TS 19139:2007", schema = "ISO 19115-1:2003", title = "Geographic Information - Metadata", stringsAsFactors = FALSE) + ), + #GMI + ISOMetadataNamespace$new( + id = "gmi", uri = "http://www.isotc211.org/2005/gmi", + standard = data.frame(specification = "ISO/TS 19139:2007", schema = "ISO 19115-2:2009", title = "Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data", stringsAsFactors = FALSE) + ), + #GMX + ISOMetadataNamespace$new( + id = "gmx", uri = "http://www.isotc211.org/2005/gmx", + standard = data.frame(specification = "ISO/TS 19139:2007", schema = "ISO/TS 19139:2007", title = "Geographic Metadata XML Schema", stringsAsFactors = FALSE) + ), + #GTS + ISOMetadataNamespace$new( + id = "gts", uri = "http://www.isotc211.org/2005/gts", + standard = data.frame(specification = "ISO/TS 19139:2007", schema = "ISO/TS 19139:2007", title = "Geographic Metadata XML Schema - Geographic Temporal Schema (GTS)", stringsAsFactors = FALSE) + ), + #ISO 19119 + #---------------------------------------------------- + #SRV + ISOMetadataNamespace$new( + id = "srv", uri = "http://www.isotc211.org/2005/srv", + standard = data.frame(specification = "ISO/TS 19139:2007", schema = "ISO 19119:2005", title = "Geographic Information - Service Metadata", stringsAsFactors = FALSE) + ) + ), + "19115-3" = list( + #ISO 19115-3 + #---------------------------------------------------- + #CAT + ISOMetadataNamespace$new( + id = "cat", uri = "http://standards.iso.org/iso/19115/-3/cat/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO/TS 19139:2007", title = "CATalogue Objects (CAT) Version: 1.0", stringsAsFactors = FALSE) + ), + #CIT + ISOMetadataNamespace$new( + id = "cit", uri = "http://standards.iso.org/iso/19115/-3/cit/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Citation and responsible party information (CIT) Version: 2.0", stringsAsFactors = FALSE) + ), + #GCO + ISOMetadataNamespace$new( + id = "gco", uri = "http://standards.iso.org/iso/19115/-3/gco/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Geospatial COmmon Objects (GCO) Version: 1.0", stringsAsFactors = FALSE) + ), + #GCX + ISOMetadataNamespace$new( + id = "gcx", uri = "http://standards.iso.org/iso/19115/-3/gcx/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Geospatial Common eXtension (GCX) Version: 1.0", stringsAsFactors = FALSE) + ), + #GEX + ISOMetadataNamespace$new( + id = "gex", uri = "http://standards.iso.org/iso/19115/-3/gex/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Geospatial EXtent (GEX) Version: 1.0", stringsAsFactors = FALSE) + ), + #GMW + ISOMetadataNamespace$new( + id = "gmw", uri = "http://standards.iso.org/iso/19115/-3/gmw/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Geographic Markup Wrappers (GMW) Version: 1.0", stringsAsFactors = FALSE) + ), + #LAN + ISOMetadataNamespace$new( + id = "lan", uri = "http://standards.iso.org/iso/19115/-3/lan/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "metadata for LANguage and localization (LAN) Version: 1.0", stringsAsFactors = FALSE) + ), + #MAC + ISOMetadataNamespace$new( + id = "mac", uri = "http://standards.iso.org/iso/19115/-3/mac/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for ACquisition (MAC) Version: 2.0", stringsAsFactors = FALSE) + ), + #MAS + ISOMetadataNamespace$new( + id = "mas", uri = "http://standards.iso.org/iso/19115/-3/mas/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Application Schemas (MAS) Version: 2.0", stringsAsFactors = FALSE) + ), + #MCC + ISOMetadataNamespace$new( + id = "mcc", uri = "http://standards.iso.org/iso/19115/-3/mcc/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata Common Classes (MCC) Version: 1.0", stringsAsFactors = FALSE) + ), + #MCO + ISOMetadataNamespace$new( + id = "mco", uri = "http://standards.iso.org/iso/19115/-3/mco/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for COnstraints (MCO) Version: 1.0", stringsAsFactors = FALSE) + ), + #MDA + ISOMetadataNamespace$new( + id = "mda", uri = "http://standards.iso.org/iso/19115/-3/mda/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "MetaData for Applications (MDA) Version: 2.0", stringsAsFactors = FALSE) + ), + #MDB + ISOMetadataNamespace$new( + id = "mdb", uri = "http://standards.iso.org/iso/19115/-3/mdb/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "MetaData Base (MDB) Version: 2.0", stringsAsFactors = FALSE) + ), + #MDs + ISOMetadataNamespace$new( + id = "mds", uri = "http://standards.iso.org/iso/19115/-3/mds/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "MetaData for Service identification (MDS) Version: 2.0", stringsAsFactors = FALSE) + ), + #MDT + ISOMetadataNamespace$new( + id = "mdt", uri = "http://standards.iso.org/iso/19115/-3/mdt/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Data Transfer (MDT) Version: 2.0", stringsAsFactors = FALSE) + ), + #MEX + ISOMetadataNamespace$new( + id = "mex", uri = "http://standards.iso.org/iso/19115/-3/mex/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata EXtensions (MEX) Version: 1.0", stringsAsFactors = FALSE) + ), + #MMI + ISOMetadataNamespace$new( + id = "mmi", uri = "http://standards.iso.org/iso/19115/-3/mmi/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Maintennce Information (MMI) Version: 1.0", stringsAsFactors = FALSE) + ), + #MPC + ISOMetadataNamespace$new( + id = "mpc", uri = "http://standards.iso.org/iso/19115/-3/mpc/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Portrayal Catalogues (MPC) Version: 1.0", stringsAsFactors = FALSE) + ), + #MRC + ISOMetadataNamespace$new( + id = "mrc", uri = "http://standards.iso.org/iso/19115/-3/mrc/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Resource Content (MRC) Version: 1.0", stringsAsFactors = FALSE) + ), + #MRD + ISOMetadataNamespace$new( + id = "mrd", uri = "http://standards.iso.org/iso/19115/-3/mrd/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Resource Distribution (MRD) Version: 1.0", stringsAsFactors = FALSE) + ), + #MRI + ISOMetadataNamespace$new( + id = "mri", uri = "http://standards.iso.org/iso/19115/-3/mri/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Resource Identification (MRI) Version: 1.0", stringsAsFactors = FALSE) + ), + #MRL + ISOMetadataNamespace$new( + id = "mrl", uri = "http://standards.iso.org/iso/19115/-3/mrl/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Resource Lineage (MRL) Version: 2.0", stringsAsFactors = FALSE) + ), + #MRS + ISOMetadataNamespace$new( + id = "mrs", uri = "http://standards.iso.org/iso/19115/-3/mrs/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Reference Systems (MRS) Version: 1.0", stringsAsFactors = FALSE) + ), + #MSR + ISOMetadataNamespace$new( + id = "msr", uri = "http://standards.iso.org/iso/19115/-3/msr/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for Spatial Representation (MSR) Version: 2.0", stringsAsFactors = FALSE) + ), + #SRV + ISOMetadataNamespace$new( + id = "srv", uri = "http://standards.iso.org/iso/19115/-3/srv/2.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19115-1:2014", title = "Metadata for SeRVices (SRV) Version: 2.0", stringsAsFactors = FALSE) + ), + #DQC + ISOMetadataNamespace$new( + id = "dqc", uri = "http://standards.iso.org/iso/19157/-2/dqc/1.0", + standard = data.frame(specification = "ISO/TS 19115-3:2016", schema = "ISO 19157", title = "Data Quality abstract Classes (DQC) Version 1.0", stringsAsFactors = FALSE) + ) + ) + ) + all_namespaces <- c( + #XML 1.0 + xml_namespaces, + #GML + gml_namespaces, + #SWE + swe_namespaces, + #iso19115 + iso_namespaces + ) + for(ns in all_namespaces){ + ISOMetadataNamespace[[toupper(ns$id)]] <- ns + } + .geometa.iso$namespaces <- all_namespaces } #' @name getISOMetadataNamespaces @@ -102,6 +325,7 @@ getISOMetadataNamespaces = function(){ #' @author Emmanuel Blondel, \email{emmanuel.blondel1@@gmail.com} # getISOMetadataNamespace = function(id){ + if(is.list(id)) if(getMetadataStandard() %in% names(id)) id = id[[getMetadataStandard()]] return(ISOMetadataNamespace[[id]]) } @@ -125,6 +349,7 @@ getISOMetadataNamespace = function(id){ #' @author Emmanuel Blondel, \email{emmanuel.blondel1@@gmail.com} # registerISOMetadataNamespace <- function(id, uri, force = FALSE){ + if(is.list(id)) if(getMetadataStandard() %in% names(id)) id = id[[getMetadataStandard()]] ns <- getISOMetadataNamespace(toupper(id)) if(!is.null(ns)){ if(!force) stop(sprintf("ISOMetadataNamespace with id '%s' already exists. Use force = TRUE to force registration", id)) diff --git a/R/ISOMetadataSchemas.R b/R/ISOMetadataSchemas.R index 23c67143..75ae0b97 100644 --- a/R/ISOMetadataSchemas.R +++ b/R/ISOMetadataSchemas.R @@ -24,15 +24,33 @@ registerISOMetadataSchema <- function(xsdFile){ .geometa.iso$schemas <- schemas } +#'getISOMetadataSchemaFile +#'@export +getISOMetadataSchemaFile <- function(version = "19115-1/2"){ + available_versions <- c("19115-1/2","19115-3") + if(!version %in% available_versions){ + errMsg <- sprintf("Version '%s' not among available schema versions (%s)", + version, paste0(available_versions, collapse = ",")) + stop(errMsg) + } + schemaPath <- "extdata/schemas" + namespace <- switch(version, + "19115-1/2" = "19115/-1/gmd", + "19115-3" = "19115/-3/mdb/2.0" + ) + xsdFilename <- switch(version, + "19115-1/2" = "gmd.xsd", + "19115-3" = "mdb.xsd" + ) + defaultXsdFile <- system.file(paste(schemaPath, namespace, sep="/"), xsdFilename, package = "geometa", mustWork = TRUE) + return(defaultXsdFile) +} + #'setISOMetadataSchemas #'@export -setISOMetadataSchemas <- function(){ +setISOMetadataSchemas <- function(version = "19115-1/2"){ packageStartupMessage("Loading ISO 19139 XML schemas...") - schemaPath <- "extdata/schemas" - namespace <- "gmd" - defaultXsdFile <- system.file(paste(schemaPath, namespace, sep="/"), paste0(namespace,".xsd"), - package = "geometa", mustWork = TRUE) - registerISOMetadataSchema(defaultXsdFile) + registerISOMetadataSchema(getISOMetadataSchemaFile(version = version)) } #' @name getISOMetadataSchemas @@ -50,4 +68,50 @@ setISOMetadataSchemas <- function(){ # getISOMetadataSchemas <- function(){ return(.geometa.iso$schemas) -} \ No newline at end of file +} + + +#' @name setMetadataStandard +#' @aliases setMetadataStandard +#' @title setMetadataStandard +#' @export +#' @description \code{setMetadataStandard} allows to set the standard to use for encoding/decoding in \pkg{geometa}. +#' By default the standard "19115-1/2" will be used. Possible alternative value "19115-3" +#' +#' @usage setMetadataStandard(version) +#' +#' @param version the standard version +#' +#' @examples +#' setMetadataStandard(version = "19115-3") +#' +#' @author Emmanuel Blondel, \email{emmanuel.blondel1@@gmail.com} +# +setMetadataStandard <- function(version = "19115-1/2"){ + available_versions <- c("19115-1/2","19115-3") + if(!version %in% available_versions){ + errMsg <- sprintf("Version '%s' not among available schema versions (%s)", + version, paste0(available_versions, collapse = ",")) + stop(errMsg) + } + .geometa.iso$version <- version + setISOMetadataNamespaces(version = version) +} + +#' @name getMetadataStandard +#' @aliases getMetadataStandard +#' @title getMetadataStandard +#' @export +#' @description \code{getMetadataStandard} allows to set the standard to use for encoding/decoding in \pkg{geometa}. +#' +#' @usage getMetadataStandard() +#' +#' @examples +#' getMetadataStandard() +#' +#' @author Emmanuel Blondel, \email{emmanuel.blondel1@@gmail.com} +# +getMetadataStandard <- function(){ + return(.geometa.iso$version) +} + diff --git a/R/geometa_coverage.R b/R/geometa_coverage.R index 43f6dffa..e8b39e93 100644 --- a/R/geometa_coverage.R +++ b/R/geometa_coverage.R @@ -228,31 +228,38 @@ get_schema_elements <- function(url, verbose = FALSE, schemaCollector = new.env( #' #' @usage geometa_coverage() #' +#' @param version main metadata standard version #' @return an object of class \code{data.frame} #' #' @examples #' \donttest{ -#' cov <- geometa_coverage() +#' cov <- geometa_coverage(version = "19115-3") #' } #' #' @author Emmanuel Blondel, \email{emmanuel.blondel1@@gmail.com} #' -geometa_coverage <- function(){ - url = system.file("extdata/schemas/gmd/gmd.xsd",package = "geometa") - elements <- get_schema_elements(url) +geometa_coverage <- function(version = "19115-1/2"){ + setMetadataStandard(version = version) + xsd_filepath = getISOMetadataSchemaFile(version = version) + elements <- get_schema_elements(xsd_filepath) + elements$namespace <- toupper(elements$namespace) + if(version == "19115-3") elements <- elements[elements$namespace != "GMD",] + classes <- ISOAbstractObject$getISOClasses(pretty = TRUE) + colnames(classes)[colnames(classes)=="ns_prefix"] <- "namespace" elements <- merge( - x = elements, y = ISOAbstractObject$getISOClasses(pretty = TRUE), - by = "element", all.x = TRUE, all.y = FALSE + x = elements, y = classes, + by = c("element", "namespace"), all.x = TRUE, all.y = FALSE ) elements$in_geometa <- !sapply(elements$geometa_class, is.na) - elements[is.na(elements$ns_prefix),]$ns_prefix <- toupper(elements[is.na(elements$ns_prefix),"namespace"]) - elements <- elements[!(elements$ns_prefix %in% c("XS","XLINK")),] - std <- do.call("rbind",lapply(elements$ns_prefix, ISOAbstractObject$getStandardByPrefix)) + elements[is.na(elements$refactored),]$refactored = FALSE + elements[is.na(elements$namespace),]$namespace <- toupper(elements[is.na(elements$namespace),"namespace"]) + elements <- elements[!(elements$namespace %in% c("XS","XLINK")),] + std <- do.call("rbind",lapply(elements$namespace, ISOAbstractObject$getStandardByPrefix)) elements$specification <- std$specification + elements$schema <- std$schema elements$title <- std$title - elements$namespace <- NULL elements$ns_uri <- NULL - elements <- elements[with(elements,order(specification, ns_prefix, element)),c("specification", "title", "ns_prefix", "element", "geometa_class", "in_geometa")] + elements <- elements[with(elements,order(specification, schema, namespace, element)),c("specification", "schema", "title", "namespace", "element", "geometa_class", "in_geometa", "refactored")] elements <- rbind( elements[startsWith(elements$specification, "ISO"),], elements[startsWith(elements$specification, "GML"),], diff --git a/R/profile.R b/R/profile.R index a76559e3..71044a9e 100644 --- a/R/profile.R +++ b/R/profile.R @@ -11,11 +11,15 @@ assign(".geometa.iso", new.env(), envir= asNamespace(pkgname)) assign(".geometa.iana", new.env(), envir= asNamespace(pkgname)) + #set default metadata standard + setMetadataStandard(version = "19115-1/2") + #set ISO metadata namespaces setISOMetadataNamespaces() #set ISO schemas - setISOMetadataSchemas() + setISOMetadataSchemas(version = "19115-1/2") + setISOMetadataSchemas(version = "19115-3") #set ISO codelists setISOCodelists() diff --git a/inst/extdata/coverage/coverage.R b/inst/extdata/coverage/coverage.R index aa522111..c024e127 100644 --- a/inst/extdata/coverage/coverage.R +++ b/inst/extdata/coverage/coverage.R @@ -1,33 +1,44 @@ #compute coverage require(geometa, quietly = TRUE) -cov <- geometa_coverage() +cov_1 <- geometa_coverage(version = "19115-1/2") +cov_2 <- geometa_coverage(version = "19115-3") +cov <- unique(rbind(cov_1, cov_2)) #coverage summary -stds <- unique(cov$specification) +cov$id = paste(cov$specification, " - ", cov$schema, " - ", cov$namespace) +stds <- unique(cov$id) stds <- stds[order(stds)] cov_summary <- do.call("rbind", lapply(stds, function(std){ - cov_std <- cov[cov$specification == std,] + cov_std <- cov[cov$id == std,] cov_std_per <- round(nrow(cov_std[cov_std$in_geometa,]) / nrow(cov_std) * 100,2) cov_std_in <- nrow(cov_std[cov_std$in_geometa,]) cov_std_out <- nrow(cov_std[!cov_std$in_geometa,]) + cov_std_refactored <- nrow(cov_std[cov_std$refactored,]) + cov_std_torefactor <- nrow(cov_std[!cov_std$refactored,]) cov_out <- data.frame( - Standard = std, + id = std, + Specification = cov_std$specification[1], + Schema = cov_std$schema[1], Title = cov_std$title[1], - Namespace = cov_std$ns_prefix[1], + Namespace = cov_std$namespace[1], Supported = cov_std_in, Missing = cov_std_out, + Refactored = cov_std_refactored, + Torefactor = cov_std_torefactor, Coverage = cov_std_per, stringsAsFactors = FALSE ) + print(cov_out) return(cov_out) })) cov_summary$coverage_class <- floor(cov_summary$Coverage/20) -row.names(cov_summary) <- cov_summary$Standard +row.names(cov_summary) <- cov_summary$id +cov_summary$id = NULL cov_summary <- rbind( - cov_summary[startsWith(cov_summary$Standard, "ISO"),], - cov_summary[startsWith(cov_summary$Standard, "GML"),], - cov_summary[startsWith(cov_summary$Standard, "SWE"),] + cov_summary[startsWith(cov_summary$Specification, "ISO"),], + cov_summary[startsWith(cov_summary$Specification, "GML"),], + cov_summary[startsWith(cov_summary$Specification, "SWE"),] ) #cov_summary_md (for README) @@ -51,8 +62,7 @@ cov_summary_md$Coverage <- sapply(1:nrow(cov_summary_md), function(i){ ) }) cov_summary_md$coverage_class <- NULL -cov_summary_md$Standard <- row.names(cov_summary_md) -cov_summary_md <- cov_summary_md[,c("Standard","Title","Namespace","Coverage","Supported","Missing")] +cov_summary_md <- cov_summary_md[,c("Specification", "Schema", "Title","Namespace","Coverage","Supported","Missing", "Refactored", "Torefactor")] row.names(cov_summary_md) <- NULL cov_kable <- kableExtra::kable(cov_summary_md, format = "markdown") kableExtra::save_kable(cov_kable, file = file.path(getwd(), "inst/extdata/coverage/geometa_coverage_summary.md")) diff --git a/inst/extdata/coverage/geometa_coverage_inventory.csv b/inst/extdata/coverage/geometa_coverage_inventory.csv index 6b2d1022..3274b251 100644 --- a/inst/extdata/coverage/geometa_coverage_inventory.csv +++ b/inst/extdata/coverage/geometa_coverage_inventory.csv @@ -1,509 +1,609 @@ -"specification","title","ns_prefix","element","geometa_class","in_geometa" -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","AbstractFC_CarrierOfCharacteristics","ISOAbstractCarrierOfCharacteristics",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","AbstractFC_PropertyType","ISOAbstractPropertyType",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_AssociationRole","ISOAssociationRole",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_Binding","ISOBinding",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_BoundAssociationRole","ISOBoundAssociationRole",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_BoundFeatureAttribute","ISOBoundFeatureAttribute",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_Constraint","ISOConstraint",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_DefinitionReference","ISODefinitionReference",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_DefinitionSource","ISODefinitionSource",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_FeatureAssociation","ISOFeatureAssociation",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_FeatureAttribute","ISOFeatureAttribute",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_FeatureCatalogue","ISOFeatureCatalogue",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_FeatureOperation","ISOFeatureOperation",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_FeatureType","ISOFeatureType",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_InheritanceRelation","ISOInheritanceRelation",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_ListedValue","ISOListedValue",TRUE -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","FC_RoleType","ISORoleType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Completeness","ISOAbstractCompleteness",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Element","ISODataQualityAbstractElement",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_LogicalConsistency","ISOAbstractLogicalConsistency",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_PositionalAccuracy","ISOAbstractPositionalAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_Result","ISOAbstractResult",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_TemporalAccuracy","ISOAbstractTemporalAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDQ_ThematicAccuracy","ISOAbstractThematicAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractDS_Aggregate","ISOAbstractAggregate",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractEX_GeographicExtent","ISOGeographicExtent",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_ContentInformation","ISOContentInformation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_Identification","ISOIdentification",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_SpatialRepresentation","ISOSpatialRepresentation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","AbstractRS_ReferenceSystem","ISOAbstractReferenceSystem",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_Address","ISOAddress",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_Citation","ISOCitation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_Contact","ISOContact",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_Date","ISODate",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_DateTypeCode","ISODateType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_OnLineFunctionCode","ISOOnLineFunction",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_OnlineResource","ISOOnlineResource",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_PresentationFormCode","ISOPresentationForm",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_ResponsibleParty","ISOResponsibleParty",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_RoleCode","ISORole",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_Series","ISOCitationSeries",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","CI_Telephone","ISOTelephone",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","Country","ISOCountry",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_AbsoluteExternalPositionalAccuracy","ISOAbsoluteExternalPositionalAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_AccuracyOfATimeMeasurement","ISOAccuracyOfATimeMeasurement",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_CompletenessCommission","ISOCompletenessCommission",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_CompletenessOmission","ISOCompletenessOmission",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ConceptualConsistency","ISOConceptualConsistency",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ConformanceResult","ISOConformanceResult",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_DataQuality","ISODataQuality",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_DomainConsistency","ISODomainConsistency",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_EvaluationMethodTypeCode","ISOEvaluationMethodType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_FormatConsistency","ISOFormatConsistency",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_GriddedDataPositionalAccuracy","ISOGriddedDataPositionalAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_NonQuantitativeAttributeAccuracy","ISONonQuantitativeAttributeAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_QuantitativeAttributeAccuracy","ISOQuantitativeAttributeAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_QuantitativeResult","ISOQuantitativeResult",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_RelativeInternalPositionalAccuracy","ISORelativeInternalPositionalAccuracy",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_Scope","ISOScope",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TemporalConsistency","ISOTemporalConsistency",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TemporalValidity","ISOTemporalValidity",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_ThematicClassificationCorrectness","ISOThematicClassificationCorrectness",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DQ_TopologicalConsistency","ISOTopologicalConsistency",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_Association","ISOAssociation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_AssociationTypeCode","ISOAssociationType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_DataSet","ISODataSet",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_Initiative","ISOInitiative",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_InitiativeTypeCode","ISOInitiativeType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_OtherAggregate","ISOOtherAggregate",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_Platform","ISOPlatform",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_ProductionSeries","ISOProductionSeries",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_Sensor","ISOSensor",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_Series","ISOSeries",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","DS_StereoMate","ISOStereoMate",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","EX_BoundingPolygon","ISOBoundingPolygon",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","EX_Extent","ISOExtent",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","EX_GeographicBoundingBox","ISOGeographicBoundingBox",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","EX_GeographicDescription","ISOGeographicDescription",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","EX_SpatialTemporalExtent","ISOSpatialTemporalExtent",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","EX_TemporalExtent","ISOTemporalExtent",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","EX_VerticalExtent","ISOVerticalExtent",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","LanguageCode","ISOLanguage",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","LI_Lineage","ISOLineage",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","LI_ProcessStep","ISOProcessStep",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","LI_Source","ISOSource",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","LocalisedCharacterString","ISOLocalisedCharacterString",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_AggregateInformation","ISOAggregateInformation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ApplicationSchemaInformation","ISOApplicationSchemaInformation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Band","ISOBand",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_BrowseGraphic","ISOBrowseGraphic",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_CellGeometryCode","ISOCellGeometry",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_CharacterSetCode","ISOCharacterSet",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ClassificationCode","ISOClassification",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Constraints","ISOConstraints",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_CoverageContentTypeCode","ISOCoverageContentType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_CoverageDescription","ISOCoverageDescription",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_DataIdentification","ISODataIdentification",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_DatatypeCode","ISODatatype",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_DigitalTransferOptions","ISODigitalTransferOptions",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Dimension","ISODimension",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_DimensionNameTypeCode","ISODimensionNameType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Distribution","ISODistribution",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_DistributionUnits","ISODistributionUnits",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Distributor","ISODistributor",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ExtendedElementInformation","ISOExtendedElementInformation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_FeatureCatalogueDescription","ISOFeatureCatalogueDescription",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Format","ISOFormat",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_GeometricObjects","ISOGeometricObjects",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_GeometricObjectTypeCode","ISOGeometricObjectType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Georectified","ISOGeorectified",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Georeferenceable","ISOGeoreferenceable",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_GridSpatialRepresentation","ISOGridSpatialRepresentation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Identifier","ISOMetaIdentifier",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ImageDescription","ISOImageDescription",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ImagingConditionCode","ISOImagingCondition",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Keywords","ISOKeywords",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_KeywordTypeCode","ISOKeywordType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_LegalConstraints","ISOLegalConstraints",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_MaintenanceFrequencyCode","ISOMaintenanceFrequency",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_MaintenanceInformation","ISOMaintenanceInformation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Medium","ISOMedium",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_MediumFormatCode","ISOMediumFormat",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_MediumNameCode","ISOMediumName",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Metadata","ISOMetadata",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_MetadataExtensionInformation","ISOMetadataExtensionInformation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ObligationCode","ISOObligation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_PixelOrientationCode","ISOPixelOrientation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_PortrayalCatalogueReference","ISOPortrayalCatalogueReference",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ProgressCode","ISOStatus",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_RangeDimension","ISORangeDimension",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ReferenceSystem","ISOReferenceSystem",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_RepresentativeFraction","ISORepresentativeFraction",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Resolution","ISOResolution",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_RestrictionCode","ISORestriction",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ScopeCode","ISOHierarchyLevel",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ScopeDescription","ISOScopeDescription",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_SecurityConstraints","ISOSecurityConstraints",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_ServiceIdentification","ISOServiceIdentification",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_SpatialRepresentationTypeCode","ISOSpatialRepresentationType",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_StandardOrderProcess","ISOStandardOrderProcess",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_TopicCategoryCode","ISOTopicCategory",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_TopologyLevelCode","ISOTopologyLevel",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_Usage","ISOUsage",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","MD_VectorSpatialRepresentation","ISOVectorSpatialRepresentation",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","PT_FreeText","ISOFreeText",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","PT_Locale","ISOLocale",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","PT_LocaleContainer","ISOLocaleContainer",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","RS_Identifier","ISOReferenceIdentifier",TRUE -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD","URL","ISOURL",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","AbstractMI_GeolocationInformation","ISOImageryAbstractGeolocationInformation",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","LE_Algorithm","ISOImageryAlgorithm",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","LE_NominalResolution","ISOImageryNominalResolution",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","LE_Processing","ISOImageryProcessing",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","LE_ProcessStep","ISOImageryProcessStep",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","LE_ProcessStepReport","ISOImageryProcessStepReport",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","LE_Source","ISOImagerySource",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_AcquisitionInformation","ISOImageryAcquisitionInformation",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Band","ISOImageryBand",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_BandDefinition","ISOImageryBandDefinition",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_ContextCode","ISOImageryContext",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_CoverageDescription","ISOImageryCoverageDescription",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_EnvironmentalRecord","ISOImageryEnvironmentalRecord",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Event","ISOImageryEvent",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_GCP","ISOImageryGCP",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_GCPCollection","ISOImageryGCPCollection",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_GeometryTypeCode","ISOImageryGeometryType",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Georectified","ISOImageryGeorectified",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Georeferenceable","ISOImageryGeoreferenceable",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_ImageDescription","ISOImageryImageDescription",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Instrument","ISOImageryInstrument",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Metadata","ISOImageryMetadata",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Objective","ISOImageryObjective",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_ObjectiveTypeCode","ISOImageryObjectiveType",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Operation","ISOImageryOperation",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_OperationTypeCode","ISOImageryOperationType",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Plan","ISOImageryPlan",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Platform","ISOImageryPlatform",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_PlatformPass","ISOImageryPlatformPass",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_PolarisationOrientationCode","ISOImageryPolarisationOrientation",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_PriorityCode","ISOImageryPriority",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_RangeElementDescription","ISOImageryRangeElementDescription",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_RequestedDate","ISOImageryRequestedDate",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Requirement","ISOImageryRequirement",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_SensorTypeCode","ISOImagerySensorType",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_SequenceCode","ISOImagerySequence",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_TransferFunctionTypeCode","ISOImageryTransferFunctionType",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_TriggerCode","ISOImageryTrigger",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","QE_CoverageResult","ISOImageryCoverageResult",TRUE -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","QE_Usability","ISOImageryUsability",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","DCPList","ISODCPList",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_CoupledResource","ISOCoupledResource",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_CouplingType","ISOCouplingType",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_Interface","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_Operation","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationChain","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationChainMetadata","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationMetadata","ISOOperationMetadata",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationModel","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_Parameter","ISOParameter",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_ParameterDirection","ISOParameterDirection",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_PlatformNeutralServiceSpecification","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_PlatformSpecificServiceSpecification","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_Port","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_PortSpecification","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_Service","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_ServiceIdentification","ISOSRVServiceIdentification",TRUE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_ServiceSpecification","",FALSE -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV","SV_ServiceType","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","AbstractCT_Catalogue","ISOAbstractCatalogue",TRUE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","AbstractMX_File","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","Anchor","ISOAnchor",TRUE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ClAlternativeExpression","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CodeAlternativeExpression","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CodeDefinition","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CodeListDictionary","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CoordinateSystemAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CoordinateSystemAxisAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CrsAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CT_CodelistCatalogue","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CT_CrsCatalogue","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","CT_UomCatalogue","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","DatumAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","EllipsoidAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","FileName","ISOFileName",TRUE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","MimeFileType","ISOMimeFileType",TRUE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_AffineCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_BaseUnit","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_CartesianCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_CodeDefinition","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_CodeListDictionary","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_CompoundCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_ConcatenatedOperation","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_ConventionalUnit","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_Conversion","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_CoordinateSystemAxis","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_CylindricalCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_DerivedCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_DerivedUnit","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_Ellipsoid","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_EllipsoidalCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_EngineeringCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_EngineeringDatum","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_GeodeticCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_GeodeticDatum","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_ImageCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_ImageDatum","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_LinearCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_OperationMethod","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_OperationParameter","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_OperationParameterGroup","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_PassThroughOperation","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_PolarCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_PrimeMeridian","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_ProjectedCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_SphericalCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_TemporalCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_TemporalDatum","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_TimeCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_Transformation","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_UnitDefinition","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_UserDefinedCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_VerticalCRS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_VerticalCS","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","ML_VerticalDatum","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","MX_Aggregate","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","MX_DataFile","ISODataFile",TRUE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","MX_DataSet","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","MX_ScopeCode","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","MX_SupportFile","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","OperationAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","OperationMethodAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","OperationParameterAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","PrimeMeridianAlt","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX","UomAlternativeExpression","",FALSE -"ISO/TC211 19139:2007","Geographic Metadata XML Schema - Geographic Temporal Schema (GTS)","GTS","TM_PeriodDuration","",FALSE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","AbstractObject","ISOAbstractObject",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Angle","ISOAngle",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Binary","ISOBinary",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Boolean","ISOBaseBoolean",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Boolean","ISOBaseBoolean",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","CharacterString","ISOBaseCharacterString",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Date","ISOBaseDate",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","DateTime","ISOBaseDateTime",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Decimal","ISOBaseDecimal",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Distance","ISODistance",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Integer","ISOBaseInteger",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Length","ISOLength",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","LocalName","ISOLocalName",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Measure","ISOMeasure",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","MemberName","ISOMemberName",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Multiplicity","ISOMultiplicity",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","MultiplicityRange","ISOMultiplicityRange",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Real","ISOBaseReal",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","RecordType","ISORecordType",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Scale","ISOScale",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","ScopedName","ISOScopedName",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","TypeName","ISOTypeName",TRUE -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","UnlimitedInteger","ISOUnlimitedInteger",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractContinuousCoverage","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCoordinateOperation","GMLAbstractCoordinateOperation",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCoordinateSystem","GMLAbstractCoordinateSystem",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCRS","GMLAbstractCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCurve","GMLAbstractCurve",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCurveSegment","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractDatum","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractFeature","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractFeatureCollection","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralConversion","GMLAbstractGeneralConversion",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralDerivedCRS","GMLAbstractGeneralDerivedCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralOperationParameter","GMLAbstractGeneralOperationParameter",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralParameterValue","GMLAbstractGeneralParameterValue",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralTransformation","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeometricAggregate","GMLAbstractGeometricAggregate",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeometricPrimitive","GMLAbstractGeometricPrimitive",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeometry","GMLAbstractGeometry",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGML","GMLAbstractGML",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGriddedSurface","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractMetaData","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractObject","GMLAbstractObject",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractParametricCurveSurface","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractRing","GMLAbstractRing",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractSolid","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractSurface","GMLAbstractSurface",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractSurfacePatch","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeComplex","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeGeometricPrimitive","GMLAbstractTimeGeometricPrimitive",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeObject","GMLAbstractTimeObject",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimePrimitive","GMLAbstractTimePrimitive",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeSlice","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeTopologyPrimitive","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTopology","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTopoPrimitive","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AffineCS","GMLAffineCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AffinePlacement","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Arc","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcByBulge","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcByCenterPoint","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcString","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcStringByBulge","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Array","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Bag","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","BaseUnit","GMLBaseUnit",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Bezier","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","BSpline","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CartesianCS","GMLCartesianCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CategoryExtent","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Circle","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CircleByCenterPoint","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Clothoid","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeCurve","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeSolid","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeSurface","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeValue","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompoundCRS","GMLCompoundCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ConcatenatedOperation","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Cone","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ConventionalUnit","GMLConventionalUnit",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Conversion","GMLConversion",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CoordinateSystemAxis","GMLCoordinateSystemAxis",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CubicSpline","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Curve","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Cylinder","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CylindricalCS","GMLCylindricalCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DataBlock","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Definition","GMLDefinition",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DefinitionProxy","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DerivedCRS","GMLDerivedCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DerivedUnit","GMLDerivedUnit",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Dictionary","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectedObservation","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectedObservationAtDistance","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectionDescription","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectionVector","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DynamicFeature","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DynamicFeatureCollection","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Edge","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Ellipsoid","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EllipsoidalCS","GMLEllipsoidalCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EngineeringCRS","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EngineeringDatum","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Envelope","GMLEnvelope",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EnvelopeWithTimePeriod","GMLEnvelopeWithTimePeriod",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Face","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","FeatureCollection","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","File","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GenericMetaData","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeocentricCRS","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Geodesic","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeodesicString","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeodeticCRS","GMLGeodeticCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeodeticDatum","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeographicCRS","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeometricComplex","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Grid","GMLGrid",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GridEnvelope","GMLGridEnvelope",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GridFunction","GMLGridFunction",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ImageCRS","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ImageDatum","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Knot","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LinearCS","GMLLinearCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LinearRing","GMLLinearRing",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LineString","GMLLineString",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LineStringSegment","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MovingObjectStatus","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiCurve","GMLMultiCurve",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiGeometry","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiPoint","GMLMultiPoint",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiSolid","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiSurface","GMLMultiSurface",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Node","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ObliqueCartesianCS","GMLObliqueCartesianCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Observation","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OffsetCurve","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OperationMethod","GMLOperationMethod",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OperationParameter","GMLOperationParameter",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OperationParameterGroup","GMLOperationParameterGroup",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OrientableCurve","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OrientableSurface","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ParameterValue","GMLParameterValue",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ParameterValueGroup","GMLParameterValueGroup",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PassThroughOperation","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Point","GMLPoint",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PolarCS","GMLPolarCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Polygon","GMLPolygon",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PolygonPatch","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PrimeMeridian","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ProjectedCRS","GMLProjectedCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","QuantityExtent","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Rectangle","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","RectifiedGrid","GMLRectifiedGrid",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Ring","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Shell","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Solid","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Sphere","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","SphericalCS","GMLSphericalCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Surface","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TemporalCRS","GMLTemporalCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TemporalCS","GMLTemporalCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TemporalDatum","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCalendar","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCalendarEra","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeClock","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCoordinateSystem","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCS","GMLTimeCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeEdge","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeInstant","GMLTimeInstant",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeNode","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeOrdinalEra","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeOrdinalReferenceSystem","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimePeriod","GMLTimePeriod",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeReferenceSystem","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeTopologyComplex","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Tin","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoComplex","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoCurve","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoPoint","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoSolid","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoSurface","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoVolume","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Transformation","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Triangle","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","UnitDefinition","GMLUnitDefinition",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","UserDefinedCS","GMLUserDefinedCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ValueArray","",FALSE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","VerticalCRS","GMLVerticalCRS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","VerticalCS","GMLVerticalCS",TRUE -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","VerticalDatum","",FALSE -"GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","AbstractContinuousCoverage","",FALSE -"GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","AbstractCoverage","GMLCOVAbstractCoverage",TRUE -"GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","AbstractDiscreteCoverage","",FALSE -"GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","Extension","GMLCOVExtension",TRUE -"GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","SimpleMultiPoint","",FALSE -"GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","AbstractReferenceableGrid","GMLAbstractReferenceableGrid",TRUE -"GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","AbstractReferenceableGrid","GMLAbstractReferenceableGrid",TRUE -"GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","GeneralGridAxis","GMLGeneralGridAxis",TRUE -"GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","ReferenceableGridByArray","GMLReferenceableGridByArray",TRUE -"GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","ReferenceableGridByTransformation","GMLReferenceableGridByTransformation",TRUE -"GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","ReferenceableGridByVectors","GMLReferenceableGridByVectors",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractDataComponent","SWEAbstractDataComponent",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractEncoding","SWEAbstractEncoding",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractObject","SWEAbstractObject",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractSimpleComponent","SWEAbstractSimpleComponent",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractSWE","SWEAbstractSWE",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractSWEIdentifiable","SWEAbstractSWEIdentifiable",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AllowedTimes","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AllowedTokens","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AllowedValues","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","BinaryEncoding","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Block","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Category","SWECategory",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","CategoryRange","SWECategoryRange",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Component","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Count","SWECount",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","CountRange","SWECountRange",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataArray","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataChoice","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataRecord","SWEDataRecord",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataStream","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Matrix","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","NilValues","SWENilValues",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Quantity","SWEQuantity",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","QuantityRange","SWEQuantityRange",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Text","SWEText",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","TextEncoding","SWETextEncoding",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Time","SWETime",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","TimeRange","SWETimeRange",TRUE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Vector","",FALSE -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","XMLEncoding","SWEXMLEncoding",TRUE +"specification","schema","title","namespace","element","geometa_class","in_geometa","refactored","id" +"ISO/TS 19139:2007","ISO 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","AbstractFC_CarrierOfCharacteristics","ISOAbstractCarrierOfCharacteristics",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19110:2005 - GFC" +"ISO/TS 19139:2007","ISO 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC","AbstractFC_PropertyType","ISOAbstractPropertyType",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_AssociationRole","ISOAssociationRole",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_Binding","ISOBinding",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_BoundAssociationRole","ISOBoundAssociationRole",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_BoundFeatureAttribute","ISOBoundFeatureAttribute",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_Constraint","ISOConstraint",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_DefinitionReference","ISODefinitionReference",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_DefinitionSource","ISODefinitionSource",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_FeatureAssociation","ISOFeatureAssociation",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_FeatureAttribute","ISOFeatureAttribute",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_FeatureCatalogue","ISOFeatureCatalogue",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_FeatureOperation","ISOFeatureOperation",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_FeatureType","ISOFeatureType",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_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","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,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_ContentInformation","ISOContentInformation",TRUE,FALSE,"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,FALSE,"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,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractRS_ReferenceSystem","ISOAbstractReferenceSystem",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,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Citation","ISOCitation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Contact","ISOContact",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Date","ISODate",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_DateTypeCode","ISODateType",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_OnLineFunctionCode","ISOOnLineFunction",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_OnlineResource","ISOOnlineResource",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_PresentationFormCode","ISOPresentationForm",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_ResponsibleParty","ISOResponsibleParty",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_RoleCode","ISORole",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Series","ISOCitationSeries",TRUE,FALSE,"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,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","Country","ISOCountry",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,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","ISOScope",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","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,FALSE,"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" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_Initiative","ISOInitiative",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_InitiativeTypeCode","ISOInitiativeType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_OtherAggregate","ISOOtherAggregate",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_Platform","ISOPlatform",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_ProductionSeries","ISOProductionSeries",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_Sensor","ISOSensor",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_Series","ISOSeries",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","DS_StereoMate","ISOStereoMate",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","EX_BoundingPolygon","ISOBoundingPolygon",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","EX_Extent","ISOExtent",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","EX_GeographicBoundingBox","ISOGeographicBoundingBox",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","EX_GeographicDescription","ISOGeographicDescription",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","EX_SpatialTemporalExtent","ISOSpatialTemporalExtent",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","EX_TemporalExtent","ISOTemporalExtent",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","EX_VerticalExtent","ISOVerticalExtent",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","LanguageCode","ISOLanguage",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","LI_Lineage","ISOLineage",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","LI_ProcessStep","ISOProcessStep",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","LI_Source","ISOSource",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","LocalisedCharacterString","ISOLocalisedCharacterString",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_AggregateInformation","ISOAggregateInformation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ApplicationSchemaInformation","ISOApplicationSchemaInformation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Band","ISOBand",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_BrowseGraphic","ISOBrowseGraphic",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_CellGeometryCode","ISOCellGeometry",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_CharacterSetCode","ISOCharacterSet",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ClassificationCode","ISOClassification",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Constraints","ISOConstraints",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_CoverageContentTypeCode","ISOCoverageContentType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_CoverageDescription","ISOCoverageDescription",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_DataIdentification","ISODataIdentification",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_DatatypeCode","ISODatatype",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_DigitalTransferOptions","ISODigitalTransferOptions",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Dimension","ISODimension",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_DimensionNameTypeCode","ISODimensionNameType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Distribution","ISODistribution",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_DistributionUnits","ISODistributionUnits",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Distributor","ISODistributor",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ExtendedElementInformation","ISOExtendedElementInformation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_FeatureCatalogueDescription","ISOFeatureCatalogueDescription",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Format","ISOFormat",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_GeometricObjects","ISOGeometricObjects",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_GeometricObjectTypeCode","ISOGeometricObjectType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Georectified","ISOGeorectified",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Georeferenceable","ISOGeoreferenceable",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_GridSpatialRepresentation","ISOGridSpatialRepresentation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Identifier","ISOMetaIdentifier",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ImageDescription","ISOImageDescription",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ImagingConditionCode","ISOImagingCondition",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Keywords","ISOKeywords",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_KeywordTypeCode","ISOKeywordType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_LegalConstraints","ISOLegalConstraints",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_MaintenanceFrequencyCode","ISOMaintenanceFrequency",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_MaintenanceInformation","ISOMaintenanceInformation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Medium","ISOMedium",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_MediumFormatCode","ISOMediumFormat",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_MediumNameCode","ISOMediumName",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Metadata","ISOMetadata",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_MetadataExtensionInformation","ISOMetadataExtensionInformation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ObligationCode","ISOObligation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_PixelOrientationCode","ISOPixelOrientation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_PortrayalCatalogueReference","ISOPortrayalCatalogueReference",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ProgressCode","ISOStatus",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_RangeDimension","ISORangeDimension",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ReferenceSystem","ISOReferenceSystem",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_RepresentativeFraction","ISORepresentativeFraction",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Resolution","ISOResolution",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_RestrictionCode","ISORestriction",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ScopeCode","ISOHierarchyLevel",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ScopeDescription","ISOScopeDescription",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_SecurityConstraints","ISOSecurityConstraints",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ServiceIdentification","ISOServiceIdentification",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_SpatialRepresentationTypeCode","ISOSpatialRepresentationType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_StandardOrderProcess","ISOStandardOrderProcess",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_TopicCategoryCode","ISOTopicCategory",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_TopologyLevelCode","ISOTopologyLevel",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Usage","ISOUsage",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_VectorSpatialRepresentation","ISOVectorSpatialRepresentation",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","PT_FreeText","ISOFreeText",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","PT_Locale","ISOLocale",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","PT_LocaleContainer","ISOLocaleContainer",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","RS_Identifier","ISOReferenceIdentifier",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","URL","ISOURL",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" +"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","AbstractMI_GeolocationInformation","ISOImageryAbstractGeolocationInformation",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","LE_Algorithm","ISOImageryAlgorithm",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","LE_NominalResolution","ISOImageryNominalResolution",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","LE_Processing","ISOImageryProcessing",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","LE_ProcessStep","ISOImageryProcessStep",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","LE_ProcessStepReport","ISOImageryProcessStepReport",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","LE_Source","ISOImagerySource",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","MI_AcquisitionInformation","ISOImageryAcquisitionInformation",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","MI_Band","ISOImageryBand",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","MI_BandDefinition","ISOImageryBandDefinition",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","MI_ContextCode","ISOImageryContext",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","MI_CoverageDescription","ISOImageryCoverageDescription",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","MI_EnvironmentalRecord","ISOImageryEnvironmentalRecord",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","MI_Event","ISOImageryEvent",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","MI_GCP","ISOImageryGCP",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","MI_GCPCollection","ISOImageryGCPCollection",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","MI_GeometryTypeCode","ISOImageryGeometryType",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","MI_Georectified","ISOImageryGeorectified",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","MI_Georeferenceable","ISOImageryGeoreferenceable",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","MI_ImageDescription","ISOImageryImageDescription",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","MI_Instrument","ISOImageryInstrument",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","MI_Metadata","ISOImageryMetadata",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","MI_Objective","ISOImageryObjective",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","MI_ObjectiveTypeCode","ISOImageryObjectiveType",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","MI_Operation","ISOImageryOperation",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","MI_OperationTypeCode","ISOImageryOperationType",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","MI_Plan","ISOImageryPlan",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","MI_Platform","ISOImageryPlatform",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","MI_PlatformPass","ISOImageryPlatformPass",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","MI_PolarisationOrientationCode","ISOImageryPolarisationOrientation",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","MI_PriorityCode","ISOImageryPriority",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","MI_RangeElementDescription","ISOImageryRangeElementDescription",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","MI_RequestedDate","ISOImageryRequestedDate",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","MI_Requirement","ISOImageryRequirement",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","MI_SensorTypeCode","ISOImagerySensorType",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","MI_SequenceCode","ISOImagerySequence",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","MI_TransferFunctionTypeCode","ISOImageryTransferFunctionType",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","MI_TriggerCode","ISOImageryTrigger",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,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_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" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_CouplingType","ISOCouplingType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_Interface","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_Operation","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationChain","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationChainMetadata","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationMetadata","ISOOperationMetadata",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_OperationModel","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_Parameter","ISOParameter",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_ParameterDirection","ISOParameterDirection",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_PlatformNeutralServiceSpecification","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_PlatformSpecificServiceSpecification","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_Port","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_PortSpecification","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_Service","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_ServiceIdentification","ISOSRVServiceIdentification",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_ServiceSpecification","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV","SV_ServiceType","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO 19119:2005 - SRV" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","AbstractObject","ISOAbstractObject",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Angle","ISOAngle",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Binary","ISOBinary",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Boolean","ISOBaseBoolean",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","CharacterString","ISOBaseCharacterString",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Date","ISOBaseDate",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","DateTime","ISOBaseDateTime",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Decimal","ISOBaseDecimal",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Distance","ISODistance",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Integer","ISOBaseInteger",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Length","ISOLength",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","LocalName","ISOLocalName",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Measure","ISOMeasure",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","MemberName","ISOMemberName",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Multiplicity","ISOMultiplicity",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","MultiplicityRange","ISOMultiplicityRange",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Real","ISOBaseReal",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","RecordType","ISORecordType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","Scale","ISOScale",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","ScopedName","ISOScopedName",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","TypeName","ISOTypeName",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO","UnlimitedInteger","ISOUnlimitedInteger",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","AbstractCT_Catalogue","ISOAbstractCatalogue",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","AbstractMX_File","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","Anchor","ISOAnchor",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ClAlternativeExpression","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CodeAlternativeExpression","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CodeDefinition","ISOCodeDefinition",TRUE,TRUE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CodeListDictionary","ISOCodeListDictionary",TRUE,TRUE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CoordinateSystemAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CoordinateSystemAxisAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CrsAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CT_CodelistCatalogue","ISOCodelistCatalogue",TRUE,TRUE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CT_CrsCatalogue","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","CT_UomCatalogue","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","DatumAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","EllipsoidAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","FileName","ISOFileName",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","MimeFileType","ISOMimeFileType",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_AffineCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_BaseUnit","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_CartesianCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_CodeDefinition","ISOMLCodeDefinition",TRUE,TRUE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_CodeListDictionary","ISOMLCodeListDictionary",TRUE,TRUE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_CompoundCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_ConcatenatedOperation","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_ConventionalUnit","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_Conversion","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_CoordinateSystemAxis","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_CylindricalCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_DerivedCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_DerivedUnit","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_Ellipsoid","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_EllipsoidalCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_EngineeringCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_EngineeringDatum","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_GeodeticCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_GeodeticDatum","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_ImageCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_ImageDatum","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_LinearCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_OperationMethod","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_OperationParameter","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_OperationParameterGroup","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_PassThroughOperation","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_PolarCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_PrimeMeridian","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_ProjectedCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_SphericalCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_TemporalCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_TemporalDatum","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_TimeCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_Transformation","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_UnitDefinition","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_UserDefinedCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_VerticalCRS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_VerticalCS","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","ML_VerticalDatum","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","MX_Aggregate","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","MX_DataFile","ISODataFile",TRUE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","MX_DataSet","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","MX_ScopeCode","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","MX_SupportFile","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","OperationAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","OperationMethodAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","OperationParameterAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","PrimeMeridianAlt","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX","UomAlternativeExpression","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX" +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema - Geographic Temporal Schema (GTS)","GTS","TM_PeriodDuration","",FALSE,FALSE,"ISO/TS 19139:2007 - ISO/TS 19139:2007 - GTS" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractContinuousCoverage","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCoordinateOperation","GMLAbstractCoordinateOperation",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCoordinateSystem","GMLAbstractCoordinateSystem",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCoverage","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCRS","GMLAbstractCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCurve","GMLAbstractCurve",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractCurveSegment","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractDatum","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractFeature","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractFeatureCollection","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralConversion","GMLAbstractGeneralConversion",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralDerivedCRS","GMLAbstractGeneralDerivedCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralOperationParameter","GMLAbstractGeneralOperationParameter",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralParameterValue","GMLAbstractGeneralParameterValue",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeneralTransformation","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeometricAggregate","GMLAbstractGeometricAggregate",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeometricPrimitive","GMLAbstractGeometricPrimitive",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGeometry","GMLAbstractGeometry",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGML","GMLAbstractGML",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractGriddedSurface","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractMetaData","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractParametricCurveSurface","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractRing","GMLAbstractRing",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractSolid","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractSurface","GMLAbstractSurface",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractSurfacePatch","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeComplex","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeGeometricPrimitive","GMLAbstractTimeGeometricPrimitive",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeObject","GMLAbstractTimeObject",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimePrimitive","GMLAbstractTimePrimitive",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeSlice","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTimeTopologyPrimitive","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTopology","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AbstractTopoPrimitive","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AffineCS","GMLAffineCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","AffinePlacement","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Arc","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcByBulge","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcByCenterPoint","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcString","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ArcStringByBulge","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Array","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Bag","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","BaseUnit","GMLBaseUnit",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Bezier","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","BSpline","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CartesianCS","GMLCartesianCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CategoryExtent","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Circle","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CircleByCenterPoint","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Clothoid","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeCurve","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeSolid","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeSurface","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompositeValue","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CompoundCRS","GMLCompoundCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ConcatenatedOperation","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Cone","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ConventionalUnit","GMLConventionalUnit",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Conversion","GMLConversion",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CoordinateSystemAxis","GMLCoordinateSystemAxis",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CubicSpline","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Curve","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Cylinder","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","CylindricalCS","GMLCylindricalCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DataBlock","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Definition","GMLDefinition",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DefinitionProxy","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DerivedCRS","GMLDerivedCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DerivedUnit","GMLDerivedUnit",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Dictionary","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectedObservation","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectedObservationAtDistance","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectionDescription","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DirectionVector","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DynamicFeature","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","DynamicFeatureCollection","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Edge","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Ellipsoid","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EllipsoidalCS","GMLEllipsoidalCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EngineeringCRS","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EngineeringDatum","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Envelope","GMLEnvelope",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","EnvelopeWithTimePeriod","GMLEnvelopeWithTimePeriod",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Face","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","FeatureCollection","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","File","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GenericMetaData","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeocentricCRS","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Geodesic","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeodesicString","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeodeticCRS","GMLGeodeticCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeodeticDatum","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeographicCRS","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GeometricComplex","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Grid","GMLGrid",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GridEnvelope","GMLGridEnvelope",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","GridFunction","GMLGridFunction",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ImageCRS","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ImageDatum","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Knot","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LinearCS","GMLLinearCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LinearRing","GMLLinearRing",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LineString","GMLLineString",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","LineStringSegment","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MovingObjectStatus","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiCurve","GMLMultiCurve",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiGeometry","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiPoint","GMLMultiPoint",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiSolid","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","MultiSurface","GMLMultiSurface",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Node","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ObliqueCartesianCS","GMLObliqueCartesianCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Observation","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OffsetCurve","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OperationMethod","GMLOperationMethod",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OperationParameter","GMLOperationParameter",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OperationParameterGroup","GMLOperationParameterGroup",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OrientableCurve","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","OrientableSurface","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ParameterValue","GMLParameterValue",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ParameterValueGroup","GMLParameterValueGroup",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PassThroughOperation","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Point","GMLPoint",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PolarCS","GMLPolarCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Polygon","GMLPolygon",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PolygonPatch","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","PrimeMeridian","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ProjectedCRS","GMLProjectedCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","QuantityExtent","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Rectangle","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","RectifiedGrid","GMLRectifiedGrid",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Ring","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Shell","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Solid","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Sphere","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","SphericalCS","GMLSphericalCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Surface","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TemporalCRS","GMLTemporalCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TemporalCS","GMLTemporalCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TemporalDatum","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCalendar","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCalendarEra","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeClock","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCoordinateSystem","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeCS","GMLTimeCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeEdge","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeInstant","GMLTimeInstant",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeNode","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeOrdinalEra","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeOrdinalReferenceSystem","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimePeriod","GMLTimePeriod",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeReferenceSystem","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TimeTopologyComplex","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Tin","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoComplex","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoCurve","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoPoint","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoSolid","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoSurface","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","TopoVolume","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Transformation","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","Triangle","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","UnitDefinition","GMLUnitDefinition",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","UserDefinedCS","GMLUserDefinedCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","ValueArray","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","VerticalCRS","GMLVerticalCRS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","VerticalCS","GMLVerticalCS",TRUE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML","VerticalDatum","",FALSE,FALSE,"GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML" +"GML 3.2.1 Coverage (OGC GMLCOV)","GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","AbstractContinuousCoverage","",FALSE,FALSE,"GML 3.2.1 Coverage (OGC GMLCOV) - GML 3.2.1 Coverage (OGC GMLCOV) - GMLCOV" +"GML 3.2.1 Coverage (OGC GMLCOV)","GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","AbstractDiscreteCoverage","",FALSE,FALSE,"GML 3.2.1 Coverage (OGC GMLCOV) - GML 3.2.1 Coverage (OGC GMLCOV) - GMLCOV" +"GML 3.2.1 Coverage (OGC GMLCOV)","GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","AbstractReferenceableGrid","",FALSE,FALSE,"GML 3.2.1 Coverage (OGC GMLCOV) - GML 3.2.1 Coverage (OGC GMLCOV) - GMLCOV" +"GML 3.2.1 Coverage (OGC GMLCOV)","GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","Extension","GMLCOVExtension",TRUE,FALSE,"GML 3.2.1 Coverage (OGC GMLCOV) - GML 3.2.1 Coverage (OGC GMLCOV) - GMLCOV" +"GML 3.2.1 Coverage (OGC GMLCOV)","GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV","SimpleMultiPoint","",FALSE,FALSE,"GML 3.2.1 Coverage (OGC GMLCOV) - GML 3.2.1 Coverage (OGC GMLCOV) - GMLCOV" +"GML 3.3 Referenceable Grid (OGC GML)","GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","AbstractReferenceableGrid","GMLAbstractReferenceableGrid",TRUE,FALSE,"GML 3.3 Referenceable Grid (OGC GML) - GML 3.3 Referenceable Grid (OGC GML) - GMLRGRID" +"GML 3.3 Referenceable Grid (OGC GML)","GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","GeneralGridAxis","GMLGeneralGridAxis",TRUE,FALSE,"GML 3.3 Referenceable Grid (OGC GML) - GML 3.3 Referenceable Grid (OGC GML) - GMLRGRID" +"GML 3.3 Referenceable Grid (OGC GML)","GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","ReferenceableGridByArray","GMLReferenceableGridByArray",TRUE,FALSE,"GML 3.3 Referenceable Grid (OGC GML) - GML 3.3 Referenceable Grid (OGC GML) - GMLRGRID" +"GML 3.3 Referenceable Grid (OGC GML)","GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","ReferenceableGridByTransformation","GMLReferenceableGridByTransformation",TRUE,FALSE,"GML 3.3 Referenceable Grid (OGC GML) - GML 3.3 Referenceable Grid (OGC GML) - GMLRGRID" +"GML 3.3 Referenceable Grid (OGC GML)","GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID","ReferenceableGridByVectors","GMLReferenceableGridByVectors",TRUE,FALSE,"GML 3.3 Referenceable Grid (OGC GML) - GML 3.3 Referenceable Grid (OGC GML) - GMLRGRID" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractDataComponent","SWEAbstractDataComponent",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractEncoding","SWEAbstractEncoding",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractSimpleComponent","SWEAbstractSimpleComponent",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractSWE","SWEAbstractSWE",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AbstractSWEIdentifiable","SWEAbstractSWEIdentifiable",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AllowedTimes","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AllowedTokens","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","AllowedValues","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","BinaryEncoding","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Block","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Boolean","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Category","SWECategory",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","CategoryRange","SWECategoryRange",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Component","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Count","SWECount",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","CountRange","SWECountRange",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataArray","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataChoice","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataRecord","SWEDataRecord",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","DataStream","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Matrix","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","NilValues","SWENilValues",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Quantity","SWEQuantity",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","QuantityRange","SWEQuantityRange",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Text","SWEText",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","TextEncoding","SWETextEncoding",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Time","SWETime",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","TimeRange","SWETimeRange",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","Vector","",FALSE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE","XMLEncoding","SWEXMLEncoding",TRUE,FALSE,"SWE 2.0 - SWE 2.0 - SWE" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","AbstractCI_Party","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Address","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Citation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Contact","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Date","ISODate",TRUE,TRUE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_DateTypeCode","ISODateType",TRUE,TRUE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Individual","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_OnLineFunctionCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_OnlineResource","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Organisation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_PresentationFormCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Responsibility","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_RoleCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Series","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_Telephone","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT","CI_TelephoneTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","AbstractObject","ISOAbstractObject",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Angle","ISOAngle",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Binary","ISOBinary",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Boolean","ISOBaseBoolean",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","CharacterString","ISOBaseCharacterString",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Date","ISOBaseDate",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","DateTime","ISOBaseDateTime",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Decimal","ISOBaseDecimal",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Distance","ISODistance",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Integer","ISOBaseInteger",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Length","ISOLength",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","LocalName","ISOLocalName",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Measure","ISOMeasure",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","MemberName","ISOMemberName",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Multiplicity","ISOMultiplicity",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","MultiplicityRange","ISOMultiplicityRange",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Real","ISOBaseReal",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","RecordType","ISORecordType",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","Scale","ISOScale",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","ScopedName","ISOScopedName",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","TM_PeriodDuration","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","TypeName","ISOTypeName",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","UnlimitedInteger","ISOUnlimitedInteger",TRUE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO","UomIdentifier","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","AbstractEX_GeographicExtent","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","EX_BoundingPolygon","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","EX_Extent","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","EX_GeographicBoundingBox","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","EX_GeographicDescription","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","EX_SpatialTemporalExtent","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","EX_TemporalExtent","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX","EX_VerticalExtent","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN","CountryCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN","LanguageCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN","LocalisedCharacterString","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN","MD_CharacterSetCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN","PT_FreeText","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN","PT_Locale","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN","PT_LocaleContainer","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_AcquisitionInformation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_ApplicationSchemaInformation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Citation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Constraints","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_ContentInformation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Distribution","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Extent","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Format","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_LineageInformation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_MaintenanceInformation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Metadata","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_MetadataExtension","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_OnlineResource","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Parameter","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Platform","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_PortrayalCatalogueInformation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_ReferenceSystem","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_ResourceDescription","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_Responsibility","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_SpatialRepresentation","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_SpatialResolution","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_StandardOrderProcess","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","Abstract_TypedDate","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","MD_BrowseGraphic","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","MD_Identifier","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","MD_ProgressCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","MD_Scope","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","MD_ScopeCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","MD_ScopeDescription","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","MD_SpatialRepresentationTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC","URI","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","MetaData Base (MDB) Version: 2.0","MDB","MD_Metadata","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MDB" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","MetaData Base (MDB) Version: 2.0","MDB","MD_MetadataScope","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MDB" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","AbstractMD_Identification","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","DS_AssociationTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","DS_InitiativeTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_AssociatedResource","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_DataIdentification","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_KeywordClass","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_Keywords","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_KeywordTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_RepresentativeFraction","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_Resolution","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_TopicCategoryCode","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI","MD_Usage","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI" +"ISO/TS 19115-3:2016","ISO 19157","Data Quality abstract Classes (DQC) Version 1.0","DQC","Abstract_DataQuality","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19157 - DQC" +"ISO/TS 19115-3:2016","ISO 19157","Data Quality abstract Classes (DQC) Version 1.0","DQC","Abstract_QualityElement","",FALSE,FALSE,"ISO/TS 19115-3:2016 - ISO 19157 - DQC" diff --git a/inst/extdata/coverage/geometa_coverage_summary.csv b/inst/extdata/coverage/geometa_coverage_summary.csv index f7ccc4a2..ab6901ec 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.csv +++ b/inst/extdata/coverage/geometa_coverage_summary.csv @@ -1,11 +1,20 @@ -"Standard","Title","Namespace","Supported","Missing","Coverage" -"ISO/TC211 19110:2005","Geographic Information - Methodology for feature cataloguing","GFC",17,0,100 -"ISO/TC211 19115-1:2003","Geographic Information - Metadata","GMD",132,0,100 -"ISO/TC211 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI",40,0,100 -"ISO/TC211 19119:2005","Geographic Information - Service Metadata","SRV",7,12,36.84 -"ISO/TC211 19139:2007","Geographic Metadata XML Schema","GMX",5,62,7.46 -"ISO/TS 19103:2005","Geographic Common extensible markup language","GCO",23,0,100 -"GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML",63,106,37.28 -"GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV",2,3,40 -"GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID",6,0,100 -"SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE",19,11,63.33 +"Specification","Schema","Title","Namespace","Supported","Missing","Refactored","Torefactor","Coverage" +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Citation and responsible party information (CIT) Version: 2.0","CIT",2,14,2,14,12.5 +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial COmmon Objects (GCO) Version: 1.0","GCO",22,2,0,24,91.67 +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Geospatial EXtent (GEX) Version: 1.0","GEX",0,8,0,8,0 +"ISO/TS 19115-3:2016","ISO 19115-1:2014","metadata for LANguage and localization (LAN) Version: 1.0","LAN",0,7,0,7,0 +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata Common Classes (MCC) Version: 1.0","MCC",0,31,0,31,0 +"ISO/TS 19115-3:2016","ISO 19115-1:2014","MetaData Base (MDB) Version: 2.0","MDB",0,2,0,2,0 +"ISO/TS 19115-3:2016","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI",0,12,0,12,0 +"ISO/TS 19115-3:2016","ISO 19157","Data Quality abstract Classes (DQC) Version 1.0","DQC",0,2,0,2,0 +"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",132,0,2,130,100 +"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI",40,0,0,40,100 +"ISO/TS 19139:2007","ISO 19119:2005","Geographic Information - Service Metadata","SRV",7,12,0,19,36.84 +"ISO/TS 19139:2007","ISO/TS 19103:2005","Geographic Common extensible markup language","GCO",22,0,0,22,100 +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX",10,56,5,61,15.15 +"ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema - Geographic Temporal Schema (GTS)","GTS",0,1,0,1,0 +"GML 3.2.1 (ISO 19136)","GML 3.2.1 (ISO 19136)","Geographic Markup Language","GML",62,107,0,169,36.69 +"GML 3.2.1 Coverage (OGC GMLCOV)","GML 3.2.1 Coverage (OGC GMLCOV)","OGC GML Coverage Implementation Schema","GMLCOV",1,4,0,5,20 +"GML 3.3 Referenceable Grid (OGC GML)","GML 3.3 Referenceable Grid (OGC GML)","OGC GML Referenceable Grid","GMLRGRID",5,0,0,5,100 +"SWE 2.0","SWE 2.0","Sensor Web Enablement (SWE) Common Data Model","SWE",18,12,0,30,60 diff --git a/inst/extdata/coverage/geometa_coverage_summary.html b/inst/extdata/coverage/geometa_coverage_summary.html new file mode 100644 index 00000000..953dde0b --- /dev/null +++ b/inst/extdata/coverage/geometa_coverage_summary.html @@ -0,0 +1,645 @@ + + + + + + + + + + + + + +geometa_coverage_summary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificationSchemaTitleNamespaceCoverageSupportedMissingRefactoredTorefactor
ISO/TS 19115-3:2016ISO 19115-1:2014Citation and responsible party information (CIT) +Version: 2.0CITISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT214214
ISO/TS 19115-3:2016ISO 19115-1:2014Geospatial COmmon Objects (GCO) Version: 1.0GCOISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO222024
ISO/TS 19115-3:2016ISO 19115-1:2014Geospatial EXtent (GEX) Version: 1.0GEXISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX0808
ISO/TS 19115-3:2016ISO 19115-1:2014metadata for LANguage and localization (LAN) Version: +1.0LANISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN0707
ISO/TS 19115-3:2016ISO 19115-1:2014Metadata Common Classes (MCC) Version: 1.0MCCISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC031031
ISO/TS 19115-3:2016ISO 19115-1:2014MetaData Base (MDB) Version: 2.0MDBISO/TS 19115-3:2016 - ISO 19115-1:2014 - MDB0202
ISO/TS 19115-3:2016ISO 19115-1:2014Metadata for Resource Identification (MRI) Version: +1.0MRIISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI012012
ISO/TS 19115-3:2016ISO 19157Data Quality abstract Classes (DQC) Version 1.0DQCISO/TS 19115-3:2016 - ISO 19157 - DQC0202
ISO/TS 19139:2007ISO 19110:2005Geographic Information - Methodology for feature +cataloguingGFCISO/TS 19139:2007 - ISO 19110:2005 - GFC170017
ISO/TS 19139:2007ISO 19115-1:2003Geographic Information - MetadataGMDISO/TS 19139:2007 - ISO 19115-1:2003 - GMD13202130
ISO/TS 19139:2007ISO 19115-2:2009Geographic Information - Metadata - Part 2: Extensions +for imagery and gridded dataGMIISO/TS 19139:2007 - ISO 19115-2:2009 - GMI400040
ISO/TS 19139:2007ISO 19119:2005Geographic Information - Service MetadataSRVISO/TS 19139:2007 - ISO 19119:2005 - SRV712019
ISO/TS 19139:2007ISO/TS 19103:2005Geographic Common extensible markup languageGCOISO/TS 19139:2007 - ISO/TS 19103:2005 - GCO220022
ISO/TS 19139:2007ISO/TS 19139:2007Geographic Metadata XML SchemaGMXISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX1056561
ISO/TS 19139:2007ISO/TS 19139:2007Geographic Metadata XML Schema - Geographic Temporal +Schema (GTS)GTSISO/TS 19139:2007 - ISO/TS 19139:2007 - GTS0101
GML 3.2.1 (ISO 19136)GML 3.2.1 (ISO 19136)Geographic Markup LanguageGMLGML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML621070169
GML 3.2.1 Coverage (OGC GMLCOV)GML 3.2.1 Coverage (OGC GMLCOV)OGC GML Coverage Implementation SchemaGMLCOVGML 3.2.1 Coverage (OGC GMLCOV) - GML 3.2.1 Coverage (OGC GMLCOV) - GMLCOV1405
GML 3.3 Referenceable Grid (OGC GML)GML 3.3 Referenceable Grid (OGC GML)OGC GML Referenceable GridGMLRGRIDGML 3.3 Referenceable Grid (OGC GML) - GML 3.3 Referenceable Grid (OGC GML) - GMLRGRID5005
SWE 2.0SWE 2.0Sensor Web Enablement (SWE) Common Data ModelSWESWE 2.0 - SWE 2.0 - SWE1812030
+ + + + +
+ + + + + + + + + + + + + + + diff --git a/inst/extdata/coverage/geometa_coverage_summary.md b/inst/extdata/coverage/geometa_coverage_summary.md index b9c345ae..5800c384 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.md +++ b/inst/extdata/coverage/geometa_coverage_summary.md @@ -1,12 +1,21 @@ -|Standard |Title |Namespace |Coverage | Supported| Missing| -|:------------------------------------|:-----------------------------------------------------------------------------------|:---------|:-------------------------------------------------------------------------------------------------------------------------------|---------:|-------:| -|ISO/TC211 19110:2005 |Geographic Information - Methodology for feature cataloguing |GFC |[![ISO/TC211 19110:2005](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa) | 17| 0| -|ISO/TC211 19115-1:2003 |Geographic Information - Metadata |GMD |[![ISO/TC211 19115-1:2003](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa) | 132| 0| -|ISO/TC211 19115-2:2009 |Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data |GMI |[![ISO/TC211 19115-2:2009](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa) | 40| 0| -|ISO/TC211 19119:2005 |Geographic Information - Service Metadata |SRV |[![ISO/TC211 19119:2005](https://img.shields.io/badge/-37%25-ff0c0c.svg)](https://github.com/eblondel/geometa) | 7| 12| -|ISO/TC211 19139:2007 |Geographic Metadata XML Schema |GMX |[![ISO/TC211 19139:2007](https://img.shields.io/badge/-7%25-ad0f0f.svg)](https://github.com/eblondel/geometa) | 5| 62| -|ISO/TS 19103:2005 |Geographic Common extensible markup language |GCO |[![ISO/TS 19103:2005](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa) | 23| 0| -|GML 3.2.1 (ISO 19136) |Geographic Markup Language |GML |[![GML 3.2.1 (ISO 19136)](https://img.shields.io/badge/-37%25-ff0c0c.svg)](https://github.com/eblondel/geometa) | 63| 106| -|GML 3.2.1 Coverage (OGC GMLCOV) |OGC GML Coverage Implementation Schema |GMLCOV |[![GML 3.2.1 Coverage (OGC GMLCOV)](https://img.shields.io/badge/-40%25-f9ae2c.svg)](https://github.com/eblondel/geometa) | 2| 3| -|GML 3.3 Referenceable Grid (OGC GML) |OGC GML Referenceable Grid |GMLRGRID |[![GML 3.3 Referenceable Grid (OGC GML)](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa) | 6| 0| -|SWE 2.0 |Sensor Web Enablement (SWE) Common Data Model |SWE |[![SWE 2.0](https://img.shields.io/badge/-63%25-f2eb24.svg)](https://github.com/eblondel/geometa) | 19| 11| +|Specification |Schema |Title |Namespace |Coverage | Supported| Missing| Refactored| Torefactor| +|:------------------------------------|:------------------------------------|:-----------------------------------------------------------------------------------|:---------|:----------------------------------------------------------------------------------------------------------------------------------|---------:|-------:|----------:|----------:| +|ISO/TS 19115-3:2016 |ISO 19115-1:2014 |Citation and responsible party information (CIT) Version: 2.0 |CIT |[![ISO/TS 19115-3:2016 - ISO 19115-1:2014 - CIT](https://img.shields.io/badge/-12%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 2| 14| 2| 14| +|ISO/TS 19115-3:2016 |ISO 19115-1:2014 |Geospatial COmmon Objects (GCO) Version: 1.0 |GCO |[![ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GCO](https://img.shields.io/badge/-92%25-33cc7a.svg)](https://github.com/eblondel/geometa)| 22| 2| 0| 24| +|ISO/TS 19115-3:2016 |ISO 19115-1:2014 |Geospatial EXtent (GEX) Version: 1.0 |GEX |[![ISO/TS 19115-3:2016 - ISO 19115-1:2014 - GEX](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 0| 8| 0| 8| +|ISO/TS 19115-3:2016 |ISO 19115-1:2014 |metadata for LANguage and localization (LAN) Version: 1.0 |LAN |[![ISO/TS 19115-3:2016 - ISO 19115-1:2014 - LAN](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 0| 7| 0| 7| +|ISO/TS 19115-3:2016 |ISO 19115-1:2014 |Metadata Common Classes (MCC) Version: 1.0 |MCC |[![ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MCC](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 0| 31| 0| 31| +|ISO/TS 19115-3:2016 |ISO 19115-1:2014 |MetaData Base (MDB) Version: 2.0 |MDB |[![ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MDB](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 0| 2| 0| 2| +|ISO/TS 19115-3:2016 |ISO 19115-1:2014 |Metadata for Resource Identification (MRI) Version: 1.0 |MRI |[![ISO/TS 19115-3:2016 - ISO 19115-1:2014 - MRI](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 0| 12| 0| 12| +|ISO/TS 19115-3:2016 |ISO 19157 |Data Quality abstract Classes (DQC) Version 1.0 |DQC |[![ISO/TS 19115-3:2016 - ISO 19157 - DQC](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa) | 0| 2| 0| 2| +|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)| 132| 0| 2| 130| +|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| 0| 40| +|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/-37%25-ff0c0c.svg)](https://github.com/eblondel/geometa)| 7| 12| 0| 19| +|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| 0| 22| +|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| 5| 61| +|ISO/TS 19139:2007 |ISO/TS 19139:2007 |Geographic Metadata XML Schema - Geographic Temporal Schema (GTS) |GTS |[![ISO/TS 19139:2007 - ISO/TS 19139:2007 - GTS](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 0| 1| 0| 1| +|GML 3.2.1 (ISO 19136) |GML 3.2.1 (ISO 19136) |Geographic Markup Language |GML |[![GML 3.2.1 (ISO 19136) - GML 3.2.1 (ISO 19136) - GML](https://img.shields.io/badge/-37%25-ff0c0c.svg)](https://github.com/eblondel/geometa)| 62| 107| 0| 169| +|GML 3.2.1 Coverage (OGC GMLCOV) |GML 3.2.1 Coverage (OGC GMLCOV) |OGC GML Coverage Implementation Schema |GMLCOV |[![GML 3.2.1 Coverage (OGC GMLCOV) - GML 3.2.1 Coverage (OGC GMLCOV) - GMLCOV](https://img.shields.io/badge/-20%25-ff0c0c.svg)](https://github.com/eblondel/geometa)| 1| 4| 0| 5| +|GML 3.3 Referenceable Grid (OGC GML) |GML 3.3 Referenceable Grid (OGC GML) |OGC GML Referenceable Grid |GMLRGRID |[![GML 3.3 Referenceable Grid (OGC GML) - GML 3.3 Referenceable Grid (OGC GML) - GMLRGRID](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 5| 0| 0| 5| +|SWE 2.0 |SWE 2.0 |Sensor Web Enablement (SWE) Common Data Model |SWE |[![SWE 2.0 - SWE 2.0 - SWE](https://img.shields.io/badge/-60%25-f2eb24.svg)](https://github.com/eblondel/geometa) | 18| 12| 0| 30| diff --git a/inst/extdata/schemas/19110/fcc/1.0/abstract.xsd b/inst/extdata/schemas/19110/fcc/1.0/abstract.xsd new file mode 100644 index 00000000..7fb422b3 --- /dev/null +++ b/inst/extdata/schemas/19110/fcc/1.0/abstract.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19110/fcc/1.0/fcc.xsd b/inst/extdata/schemas/19110/fcc/1.0/fcc.xsd new file mode 100644 index 00000000..418dd872 --- /dev/null +++ b/inst/extdata/schemas/19110/fcc/1.0/fcc.xsd @@ -0,0 +1,5 @@ + + + + + diff --git a/inst/extdata/schemas/19110/gfc/1.1/featureCatalogue.xsd b/inst/extdata/schemas/19110/gfc/1.1/featureCatalogue.xsd new file mode 100644 index 00000000..a5d565f9 --- /dev/null +++ b/inst/extdata/schemas/19110/gfc/1.1/featureCatalogue.xsd @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + A role of the association FC_AssociationRole::relation. <ocl> roleName = FC_Member::memberName; FC_PropertyType::cardinality realizes GF_AssociationRole::cardinality </ocl> + + + + + + + + + Type of association role, indicating whether this role acts as a "is part of" or "is a member of" semantics. + + + + + Indicates if the instances of this association role within the containing feature instance are ordered or not, with FALSE = "not ordered" and TRUE = "ordered". If TRUE, the the FC_PropertyType::definition shall contain an explanation of the meaning of the order. + + + + + Indicates whether this role is navigable from the source feature to the target feature of the association. + + + + + type of the target value of this association role + + + + + Relation of which this association role is a part. + + + + + + + + + + + + + + + + Class that is used to describe the specifics of how a property type is bound to a particular feature type. Used as an association class for the association MemberOf between feature type and property type. + + + + + + + + + The description of how a property type is bound to a particular feature type. + + + + + Role that links to the bound global property + + + + + + + + + + + + + + + + Class that is used to describe the specifics of how a global association role is bound to a particular feature type. + + + + + + + + + target feature type of this association role + + + + + + + + + + + + + + + + Class that is used to describe the specifics of how a global feature attribute is bound to a particular feature type. + + + + + + + + + type of the value of this feature attribute; a name from some namespace <c> Mandatory if the value type of the feature attribute is not defined globally </c> + + + + + + + + + + + + + + + + Abstract class for local feature properties and bound global properties of a feature type + + + + + + + + + + Role that links this property type to the constraints placed upon it. + + + + + + + + + + + + + + + + A class for defining constraints for types. + + + + + + + + + A description of the constraint that is being applied. + + + + + + + + + + + + + + + + Class that links a data instance to the source of its definition. + + + + + + + + + Additional information to help locate the definition in the source document. The format of this information is specific to the structure of the source document. + + + + + + Role that links this definition reference to the citation for the source document. + + + + + + + + + + + + + + + + Class that specifies the source of a definition. + + + + + + + + + The actual citation of the source, sufficient to identify the document and how to obtain it. + + + + + + + + + + + + + + + + Relationship that links instances of this feature type with instances of the same or of a different feature type. The memberOf-linkBetween association in the General Feature Model is not directly implemented here since it can be easily derived from combining the Role and MemberOf associations. + + + + + + + + + Roles that are a part of this association. + + + + + + + + + + + + + + + + Characteristic of a feature type. + + + + + + + + + The numeric or alphanumeric code that uniquely identifies the feature attribute within the feature catalogue. + + + + + + Unit of measure used for this feature attribute. + + + + + The type of the value of this feature attribute; a name from some namespace. Implementations of this International Standard shall specify which namespace implementation is to be used. One possibility is the URI (RFC2396). <c>Mandatory for local feature attribute</c> + + + + + If present, it defines the permissible values of this feature attribute as a restriction of the attribute valueType. If not present, there is no restriction on the valueType + + + + + + + + + + + + + + + + A feature catalogue contains the definition of some number feature types with other information necessary for those definitions. + + + + + + + + + Name, address, country, and telecommunications address of person or organization having primary responsibility for the intellectual content of this feature catalogue. + + + + + The formal functional language in which the feature operation formal definition occurs in this feature catalogue. <c> Mandatory if feature operation formal definition occurs in feature catalogue. </c> + + + + + identifier of the feature catalogue + + + + + The role that links this feature catalogue to the feature types that it contains. + + + + + role that links this feature catalogue to the inheritance relationships that it contains + + + + + Role that links this feature catalogue to the global feature properties, i.e. the feature properties which may bound to many feature types. + + + + + The role that links this feature catalogue to the sources of definitions of feature types, property types, and listed values that it contains. + + + + + + + + + + + + + + + + Operation that every instance of an associated feature type must implement. <ocl> triggeredByValuesOf realizes GF_Operation::triggeredByValuesOf; observesValuesOf realizes GF_Operation::observesValuesOf; affectsValuesOf realizes GF_Operation::affectsValuesOf </ocl> + + + + + + + + + The name and parameters for this operation. It may contain optional returned parameters. This signature is usually derived from the formalDefinition. The signature of an operation must be unique. This is the equivalent of the UML signature. + + + + + Formal description of the behaviour of the member, expressed in the symbol set defined by FC_FeatureCatalogue::functionalLanguage. Involves operational parameters, and interactions with other members of the feature type. + + + + + specifies attribute that may be used as input to perform an operation + + + + + specifies attribute that will be affected by an operation + + + + + specifies attribute which may trigger an operation + + + + + + + + + + + + + + + + Class of real world phenomena with common properties <ocl> typeName realizes GF_FeatureType::typeName; isAbstract realizes GF_FeatureType::isAbstract; constrainedBy realizes GF_FeatureType::constrainedBy </ocl> + + + + + + + + + Text string that uniquely identifies this feature type within the feature catalogue that contains this feature type. + + + + + Definition of the feature type in a natural language. This attribute is required if the definition is not provided by FC_FeatureCatalogue::definitionSource. If not provided, the definitionReference should specify a citation where the definition may be found, and any additional information as to which definition is to be used. <c>Mandatory if definition not provided by definition source.</c> + + + + + Code that uniquely identifies this feature type within the feature catalogue that contains this feature type. + + + + + Indicates if the feature type is abstract or not. + + + + + Equivalent name(s) of this feature type. + + + + + designation of the feature type in a natural language + + + + + Role that links this feature type to the property types that it contains. + + + + + The role that links this feature type to a set of superclasses from which it inherits operations, associations and properties. + + + + + The role that links this feature type to a set of subclasses which inherit its operations, associations and properties. + + + + + Role that links this feature type to the constraints placed upon it. + + + + + Role that links this feature type to the source of its definition. + + + + + The role that links this feature type to the feature catalogue that contains it. + + + + + + + + + + + + + + + + FC_InheritanceRelation realizes GF_InheritanceRelation. <ocl> FC_InheritanceRelation always assumes that its GF_InheritanceRelation::uniqueInstance is TRUE. </ocl> + + + + + + + + + Text string that uniquely identifies this inheritance relation within the feature catalogue that contains this inheritance relation. + + + + + A natural language description of this inheritance relation. + + + + + Indicates if an instance of the supertype can be an instance of at most one of its subtypes. + + + + + designation of the inheritance relation in a natural language + + + + + Identifies one feature type to which the associated superclass feature type supplies inherited properties, associations and operations. + + + + + Identifies one feature type from which the associated subtype class inherits properties, associations and operations. + + + + + + + + + + + + + + + + Value for an enumerated feature attribute domain, including its codes and interpretation. + + + + + + + + + Descriptive label that uniquely identifies one value of the feature attribute. + + + + + Numeric or alphanumeric code (such as a country code) that uniquely identifies this value of the feature attribute. + + + + + Definition of the attribute value in a natural language. If not provided, the definitionReference may specify a citation where the definition may be found, and any additional information as to which definition is to be used. + + + + + + Role that links this instance to the source of its definition. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Abstract class for local and global feature properties. + + + + + + + + + member name that locates this member within a feature type for a local property or within the feature catalogue for a global property + + + + + Definition of the member in a natural language. This attribute is required if the definition is not provided by FC_FeatureCatalogue::definitionSource. If not provided, the definitionReference should specify a citation where the definition may be found, and any additional information as to which definition is to be used. <c>Mandatory if definition not provided by definition source.</c> + + + + + Cardinality of the member in the feature class. If this is an attribute or operation, the default cardinality is 1. If this is an association role, then the default cardinality is 0..*. For operations, this is the number of return values possible. This is an elaboration of the GFM to allow for complete specifications for various programming and data defintion languages. + + + + + designation of the feature property in a natural language + + + + + Role that links this instance to the source of its definition. + + + + + feature catalogue to which a global property pertains + + + + + + + + + + + + + + + + Code list for the classifications of roles. + + + + + + + + + diff --git a/inst/extdata/schemas/19110/gfc/1.1/gfc.xsd b/inst/extdata/schemas/19110/gfc/1.1/gfc.xsd new file mode 100644 index 00000000..0e906578 --- /dev/null +++ b/inst/extdata/schemas/19110/gfc/1.1/gfc.xsd @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/inst/extdata/schemas/gfc/gfc.xsd b/inst/extdata/schemas/19110/gfc/gfc.xsd similarity index 99% rename from inst/extdata/schemas/gfc/gfc.xsd rename to inst/extdata/schemas/19110/gfc/gfc.xsd index ef3afc02..eaa2b277 100644 --- a/inst/extdata/schemas/gfc/gfc.xsd +++ b/inst/extdata/schemas/19110/gfc/gfc.xsd @@ -9,9 +9,9 @@ - - - + + + diff --git a/inst/extdata/schemas/gco/ReadMe.txt b/inst/extdata/schemas/19115/-1/gco/ReadMe.txt similarity index 100% rename from inst/extdata/schemas/gco/ReadMe.txt rename to inst/extdata/schemas/19115/-1/gco/ReadMe.txt diff --git a/inst/extdata/schemas/gco/basicTypes.xsd b/inst/extdata/schemas/19115/-1/gco/basicTypes.xsd similarity index 99% rename from inst/extdata/schemas/gco/basicTypes.xsd rename to inst/extdata/schemas/19115/-1/gco/basicTypes.xsd index 9069d3b5..6e716a7d 100644 --- a/inst/extdata/schemas/gco/basicTypes.xsd +++ b/inst/extdata/schemas/19115/-1/gco/basicTypes.xsd @@ -7,8 +7,8 @@ Information Metadata documented in ISO/TS 19139:2007. GCO includes all the defin - - + + diff --git a/inst/extdata/schemas/gco/gco.xsd b/inst/extdata/schemas/19115/-1/gco/gco.xsd similarity index 100% rename from inst/extdata/schemas/gco/gco.xsd rename to inst/extdata/schemas/19115/-1/gco/gco.xsd diff --git a/inst/extdata/schemas/gco/gcoBase.xsd b/inst/extdata/schemas/19115/-1/gco/gcoBase.xsd similarity index 98% rename from inst/extdata/schemas/gco/gcoBase.xsd rename to inst/extdata/schemas/19115/-1/gco/gcoBase.xsd index 73159b20..1ac3b694 100644 --- a/inst/extdata/schemas/gco/gcoBase.xsd +++ b/inst/extdata/schemas/19115/-1/gco/gcoBase.xsd @@ -8,9 +8,9 @@ Information Metadata documented in ISO/TS 19139:2007. GCO includes all the defin 2. Some XML types representing that do not follow the general encoding rules. - + - + diff --git a/inst/extdata/schemas/gmd/ReadMe.txt b/inst/extdata/schemas/19115/-1/gmd/ReadMe.txt similarity index 100% rename from inst/extdata/schemas/gmd/ReadMe.txt rename to inst/extdata/schemas/19115/-1/gmd/ReadMe.txt diff --git a/inst/extdata/schemas/gmd/applicationSchema.xsd b/inst/extdata/schemas/19115/-1/gmd/applicationSchema.xsd similarity index 100% rename from inst/extdata/schemas/gmd/applicationSchema.xsd rename to inst/extdata/schemas/19115/-1/gmd/applicationSchema.xsd diff --git a/inst/extdata/schemas/gmd/citation.xsd b/inst/extdata/schemas/19115/-1/gmd/citation.xsd similarity index 100% rename from inst/extdata/schemas/gmd/citation.xsd rename to inst/extdata/schemas/19115/-1/gmd/citation.xsd diff --git a/inst/extdata/schemas/gmd/constraints.xsd b/inst/extdata/schemas/19115/-1/gmd/constraints.xsd similarity index 100% rename from inst/extdata/schemas/gmd/constraints.xsd rename to inst/extdata/schemas/19115/-1/gmd/constraints.xsd diff --git a/inst/extdata/schemas/gmd/content.xsd b/inst/extdata/schemas/19115/-1/gmd/content.xsd similarity index 100% rename from inst/extdata/schemas/gmd/content.xsd rename to inst/extdata/schemas/19115/-1/gmd/content.xsd diff --git a/inst/extdata/schemas/gmd/dataQuality.xsd b/inst/extdata/schemas/19115/-1/gmd/dataQuality.xsd similarity index 100% rename from inst/extdata/schemas/gmd/dataQuality.xsd rename to inst/extdata/schemas/19115/-1/gmd/dataQuality.xsd diff --git a/inst/extdata/schemas/gmd/distribution.xsd b/inst/extdata/schemas/19115/-1/gmd/distribution.xsd similarity index 100% rename from inst/extdata/schemas/gmd/distribution.xsd rename to inst/extdata/schemas/19115/-1/gmd/distribution.xsd diff --git a/inst/extdata/schemas/gmd/extent.xsd b/inst/extdata/schemas/19115/-1/gmd/extent.xsd similarity index 99% rename from inst/extdata/schemas/gmd/extent.xsd rename to inst/extdata/schemas/19115/-1/gmd/extent.xsd index 0d8eb885..da72bf2f 100644 --- a/inst/extdata/schemas/gmd/extent.xsd +++ b/inst/extdata/schemas/19115/-1/gmd/extent.xsd @@ -9,10 +9,10 @@ --> - - + + - + diff --git a/inst/extdata/schemas/gmd/freeText.xsd b/inst/extdata/schemas/19115/-1/gmd/freeText.xsd similarity index 100% rename from inst/extdata/schemas/gmd/freeText.xsd rename to inst/extdata/schemas/19115/-1/gmd/freeText.xsd diff --git a/inst/extdata/schemas/gmd/gmd.xsd b/inst/extdata/schemas/19115/-1/gmd/gmd.xsd similarity index 88% rename from inst/extdata/schemas/gmd/gmd.xsd rename to inst/extdata/schemas/19115/-1/gmd/gmd.xsd index f46c4602..4ba7c6e4 100644 --- a/inst/extdata/schemas/gmd/gmd.xsd +++ b/inst/extdata/schemas/19115/-1/gmd/gmd.xsd @@ -8,16 +8,16 @@ - + - - + + - + - + - + diff --git a/inst/extdata/schemas/gmd/identification.xsd b/inst/extdata/schemas/19115/-1/gmd/identification.xsd similarity index 100% rename from inst/extdata/schemas/gmd/identification.xsd rename to inst/extdata/schemas/19115/-1/gmd/identification.xsd diff --git a/inst/extdata/schemas/gmd/maintenance.xsd b/inst/extdata/schemas/19115/-1/gmd/maintenance.xsd similarity index 99% rename from inst/extdata/schemas/gmd/maintenance.xsd rename to inst/extdata/schemas/19115/-1/gmd/maintenance.xsd index bf716e3f..a160c750 100644 --- a/inst/extdata/schemas/gmd/maintenance.xsd +++ b/inst/extdata/schemas/19115/-1/gmd/maintenance.xsd @@ -7,7 +7,7 @@ - + diff --git a/inst/extdata/schemas/gmd/metadataApplication.xsd b/inst/extdata/schemas/19115/-1/gmd/metadataApplication.xsd similarity index 100% rename from inst/extdata/schemas/gmd/metadataApplication.xsd rename to inst/extdata/schemas/19115/-1/gmd/metadataApplication.xsd diff --git a/inst/extdata/schemas/gmd/metadataEntity.xsd b/inst/extdata/schemas/19115/-1/gmd/metadataEntity.xsd similarity index 100% rename from inst/extdata/schemas/gmd/metadataEntity.xsd rename to inst/extdata/schemas/19115/-1/gmd/metadataEntity.xsd diff --git a/inst/extdata/schemas/gmd/metadataExtension.xsd b/inst/extdata/schemas/19115/-1/gmd/metadataExtension.xsd similarity index 100% rename from inst/extdata/schemas/gmd/metadataExtension.xsd rename to inst/extdata/schemas/19115/-1/gmd/metadataExtension.xsd diff --git a/inst/extdata/schemas/gmd/portrayalCatalogue.xsd b/inst/extdata/schemas/19115/-1/gmd/portrayalCatalogue.xsd similarity index 100% rename from inst/extdata/schemas/gmd/portrayalCatalogue.xsd rename to inst/extdata/schemas/19115/-1/gmd/portrayalCatalogue.xsd diff --git a/inst/extdata/schemas/gmd/referenceSystem.xsd b/inst/extdata/schemas/19115/-1/gmd/referenceSystem.xsd similarity index 100% rename from inst/extdata/schemas/gmd/referenceSystem.xsd rename to inst/extdata/schemas/19115/-1/gmd/referenceSystem.xsd diff --git a/inst/extdata/schemas/gmd/spatialRepresentation.xsd b/inst/extdata/schemas/19115/-1/gmd/spatialRepresentation.xsd similarity index 99% rename from inst/extdata/schemas/gmd/spatialRepresentation.xsd rename to inst/extdata/schemas/19115/-1/gmd/spatialRepresentation.xsd index 8e331f7c..ae9a4a40 100644 --- a/inst/extdata/schemas/gmd/spatialRepresentation.xsd +++ b/inst/extdata/schemas/19115/-1/gmd/spatialRepresentation.xsd @@ -7,7 +7,7 @@ - + diff --git a/inst/extdata/schemas/19115/-2/.DS_Store b/inst/extdata/schemas/19115/-2/.DS_Store new file mode 100644 index 00000000..806b6373 Binary files /dev/null and b/inst/extdata/schemas/19115/-2/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-2/gmi/.DS_Store b/inst/extdata/schemas/19115/-2/gmi/.DS_Store new file mode 100644 index 00000000..b519b03c Binary files /dev/null and b/inst/extdata/schemas/19115/-2/gmi/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/.DS_Store b/inst/extdata/schemas/19115/-2/gmi/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19115/-2/gmi/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/acquisitionInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/1.0/acquisitionInformation.xsd new file mode 100644 index 00000000..b81fed1b --- /dev/null +++ b/inst/extdata/schemas/19115/-2/gmi/1.0/acquisitionInformation.xsd @@ -0,0 +1,410 @@ + + + + + This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== + + + + + + + + + + + Description: Designations for the measuring instruments - FGDC: Platform_and_Instrument_Identification - shortName: PltfrmInstId + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: Designations for the operation used to acquire the dataset - shortName: MssnId + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: Designations for the platform used to acquire the dataset - shortName: PltfrmId + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: Designations for the measuring instruments and their bands, the platform carrying them, and the mission to which the data contributes - FGDC: Platform_and_Instrument_Identification, Mission_Information - shortName: PltfrmInstId + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: identification of a significant collection point within an operation - shortName: Event + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: requirement to be satisfied by the planned data acquisition - shortName: Requirement + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: identification of collection coverage - shortName: PlatformPass + + + + + + + + + + + + + + + + + + + + + + + + + Description: Describes the characteristics, spatial and temportal extent of the intended object to be observed - shortName: TargetId + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: Designations for the planning information related to meeting requirements - shortName: PlanId + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: range of date validity - shortName: ReqstDate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/contentInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/1.0/contentInformation.xsd new file mode 100644 index 00000000..de58b6b5 --- /dev/null +++ b/inst/extdata/schemas/19115/-2/gmi/1.0/contentInformation.xsd @@ -0,0 +1,143 @@ + + + + + This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== + + + + + + + + + + Description: extensions to electromagnetic spectrum wavelength description - shortName: BandExt + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: information about the content of a coverage, including the description of specific range elements - shortName: CCovDesc + + + + + + + + + + + + + + + + + + + + + + + Description: information about the content of an image, including the description of specific range elements - shortName: ICovDesc + + + + + + + + + + + + + + + + + + + + + + + Description: description of specific range elements - shortName: RgEltDesc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/dataQualityInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/1.0/dataQualityInformation.xsd new file mode 100644 index 00000000..3ee22494 --- /dev/null +++ b/inst/extdata/schemas/19115/-2/gmi/1.0/dataQualityInformation.xsd @@ -0,0 +1,210 @@ + + + + + This file was generated from ISO TC/211 UML class diagrams == 04-04-2008 17:12:48 ====== Name: Lineage - Position: 2 + + + + + + + + + + + + + Description: Details of the methodology by which geographic information was derived from the instrument readings - FGDC: Algorithm_Information - shortName: Algorithm + + + + + + + + + + + + + + + + + + + + + + + + Description: Comprehensive information about the procedure(s), process(es) and algorithm(s) applied in the process step - shortName: Procsg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: information on source of data sets for processing step - shortName: SrcDataset + + + + + + + + + + + + + + + + + + + + + + + + Description: Information about an event or transformation in the life of the dataset including details of the algorithm and software used for processing - FGDC: - shortName: DetailProcStep + + + + + + + + + + + + + + + + + + + + + + + + + Description: Report of what occured during the process step - shortName: ProcStepRep + + + + + + + + + + + + + + + + + + + + + + + + + Description: Result of a data quality measure organising the measured values as a coverage - shortName: CoverageResult + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: to: degree of adherence of a dataset to a specific set of user requirements - shortName: Usability + + + + + + + + + + + + + + + + + + + Description: Distance between adjacent pixels - shortName: nomRes + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/gmi.xsd b/inst/extdata/schemas/19115/-2/gmi/1.0/gmi.xsd new file mode 100644 index 00000000..d8543bfb --- /dev/null +++ b/inst/extdata/schemas/19115/-2/gmi/1.0/gmi.xsd @@ -0,0 +1,16 @@ + + + + + This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/gmi.zip b/inst/extdata/schemas/19115/-2/gmi/1.0/gmi.zip new file mode 100644 index 00000000..cc46e1fd Binary files /dev/null and b/inst/extdata/schemas/19115/-2/gmi/1.0/gmi.zip differ diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/metadataEntitySet.xsd b/inst/extdata/schemas/19115/-2/gmi/1.0/metadataEntitySet.xsd new file mode 100644 index 00000000..45bef1dc --- /dev/null +++ b/inst/extdata/schemas/19115/-2/gmi/1.0/metadataEntitySet.xsd @@ -0,0 +1,38 @@ + + + + This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== + + + + + + + + + + + Description: Root entity that defines information about imagery or gridded data - shortName: IMetadata + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-2/gmi/1.0/spatialRepresentationInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/1.0/spatialRepresentationInformation.xsd new file mode 100644 index 00000000..7fc1b7b4 --- /dev/null +++ b/inst/extdata/schemas/19115/-2/gmi/1.0/spatialRepresentationInformation.xsd @@ -0,0 +1,133 @@ + + + + + This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== + + + + + + + + + + + + Description: Description of information provided in metadata that allows the geographic or map location raster points to be located - FGDC: Georeferencing_Description - shortName: IGeoref + + + + + + + + + + + + + + + + + + + + + + + Description: extends georectified grid description to include associated checkpoints - shortName: IGeorect + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/gmi/acquisitionInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/acquisitionInformation.xsd similarity index 99% rename from inst/extdata/schemas/gmi/acquisitionInformation.xsd rename to inst/extdata/schemas/19115/-2/gmi/acquisitionInformation.xsd index 58b97e20..85388b1f 100644 --- a/inst/extdata/schemas/gmi/acquisitionInformation.xsd +++ b/inst/extdata/schemas/19115/-2/gmi/acquisitionInformation.xsd @@ -7,9 +7,9 @@ xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/ This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== - - - + + + diff --git a/inst/extdata/schemas/gmi/contentInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/contentInformation.xsd similarity index 99% rename from inst/extdata/schemas/gmi/contentInformation.xsd rename to inst/extdata/schemas/19115/-2/gmi/contentInformation.xsd index 1e7d3621..04afdb27 100644 --- a/inst/extdata/schemas/gmi/contentInformation.xsd +++ b/inst/extdata/schemas/19115/-2/gmi/contentInformation.xsd @@ -7,8 +7,8 @@ xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/ This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== - - + + diff --git a/inst/extdata/schemas/gmi/dataQualityInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/dataQualityInformation.xsd similarity index 98% rename from inst/extdata/schemas/gmi/dataQualityInformation.xsd rename to inst/extdata/schemas/19115/-2/gmi/dataQualityInformation.xsd index b6c02c38..b629189d 100644 --- a/inst/extdata/schemas/gmi/dataQualityInformation.xsd +++ b/inst/extdata/schemas/19115/-2/gmi/dataQualityInformation.xsd @@ -8,10 +8,10 @@ xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/ This file was generated from ISO TC/211 UML class diagrams == 04-04-2008 17:12:48 ====== Name: Lineage - Position: 2 - - - - + + + + diff --git a/inst/extdata/schemas/gmi/gmi.xsd b/inst/extdata/schemas/19115/-2/gmi/gmi.xsd similarity index 89% rename from inst/extdata/schemas/gmi/gmi.xsd rename to inst/extdata/schemas/19115/-2/gmi/gmi.xsd index b074ac27..45bc45ee 100644 --- a/inst/extdata/schemas/gmi/gmi.xsd +++ b/inst/extdata/schemas/19115/-2/gmi/gmi.xsd @@ -5,10 +5,10 @@ This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== - - - - + + + + diff --git a/inst/extdata/schemas/gmi/metadataEntitySet.xsd b/inst/extdata/schemas/19115/-2/gmi/metadataEntitySet.xsd similarity index 97% rename from inst/extdata/schemas/gmi/metadataEntitySet.xsd rename to inst/extdata/schemas/19115/-2/gmi/metadataEntitySet.xsd index bc17caa6..80c1670e 100644 --- a/inst/extdata/schemas/gmi/metadataEntitySet.xsd +++ b/inst/extdata/schemas/19115/-2/gmi/metadataEntitySet.xsd @@ -6,8 +6,8 @@ xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/ This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== - - + + diff --git a/inst/extdata/schemas/gmi/spatialRepresentationInformation.xsd b/inst/extdata/schemas/19115/-2/gmi/spatialRepresentationInformation.xsd similarity index 98% rename from inst/extdata/schemas/gmi/spatialRepresentationInformation.xsd rename to inst/extdata/schemas/19115/-2/gmi/spatialRepresentationInformation.xsd index cdf23f19..f289eede 100644 --- a/inst/extdata/schemas/gmi/spatialRepresentationInformation.xsd +++ b/inst/extdata/schemas/19115/-2/gmi/spatialRepresentationInformation.xsd @@ -5,9 +5,9 @@ This file was created by Ted Habermann during May 2015 to correct omissions (gmx, MI_EnvironmentalRecord) in existing gmi schema ====== - - - + + + diff --git a/inst/extdata/schemas/19115/-3/.DS_Store b/inst/extdata/schemas/19115/-3/.DS_Store new file mode 100644 index 00000000..04dec935 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/cat/.DS_Store b/inst/extdata/schemas/19115/-3/cat/.DS_Store new file mode 100644 index 00000000..33f77d08 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/cat/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/cat/1.0/.DS_Store b/inst/extdata/schemas/19115/-3/cat/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19115/-3/cat/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/cat/1.0/cat.xsd b/inst/extdata/schemas/19115/-3/cat/1.0/cat.xsd new file mode 100644 index 00000000..0bf1b2cb --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cat/1.0/cat.xsd @@ -0,0 +1,13 @@ + + + + catalogue is a collection of information items (CT_Items) that are managed using a registry (CT_Catalogue). The abstract concept of catalogue was defined in ISO19139 to harmonise the different ISO 19100 series catalogue concepts, such as PF_PortrayalCatalogue (ISO 19117) and FC_FeatureCatalogue (ISO 19110). + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/cat/1.0/catalogues.xsd b/inst/extdata/schemas/19115/-3/cat/1.0/catalogues.xsd new file mode 100644 index 00000000..e88a8026 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cat/1.0/catalogues.xsd @@ -0,0 +1,53 @@ + + + Handcrafted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/cat/1.0/codelistItem.xsd b/inst/extdata/schemas/19115/-3/cat/1.0/codelistItem.xsd new file mode 100644 index 00000000..9cdaf789 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cat/1.0/codelistItem.xsd @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/cat/1.0/crsItem.xsd b/inst/extdata/schemas/19115/-3/cat/1.0/crsItem.xsd new file mode 100644 index 00000000..1e08ea70 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cat/1.0/crsItem.xsd @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/cat/1.0/uomItem.xsd b/inst/extdata/schemas/19115/-3/cat/1.0/uomItem.xsd new file mode 100644 index 00000000..0a97cde0 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cat/1.0/uomItem.xsd @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/cit/.DS_Store b/inst/extdata/schemas/19115/-3/cit/.DS_Store new file mode 100644 index 00000000..bdbab180 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/cit/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/cit/1.0/.DS_Store b/inst/extdata/schemas/19115/-3/cit/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19115/-3/cit/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/cit/1.0/cit.sch b/inst/extdata/schemas/19115/-3/cit/1.0/cit.sch new file mode 100644 index 00000000..97e17eaa --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cit/1.0/cit.sch @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + The individual does not have a name or a position. + Une personne n'a pas de nom ou de fonction. + + Individual name is + "" + and position + "" + . + Le nom de la personne est + "" + ,sa fonction + "" + . + + + + Individual MUST have a name or a position + Une personne DOIT avoir un nom ou une fonction + + + + + + + + + + + + + + + + + + + + The organisation does not have a name or a logo. + Une organisation n'a pas de nom ou de logo. + + Organisation name is + "" + and logo filename is + "" + . + Le nom de l'organisation est + "" + , son logo + "" + . + + + + + diff --git a/inst/extdata/schemas/19115/-3/cit/1.0/cit.xsd b/inst/extdata/schemas/19115/-3/cit/1.0/cit.xsd new file mode 100644 index 00000000..27c30610 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cit/1.0/cit.xsd @@ -0,0 +1,7 @@ + + + Namespace for XML elements <font color="#1f497d">for constructing citations to resources</font>. + + + + diff --git a/inst/extdata/schemas/19115/-3/cit/1.0/citation.xsd b/inst/extdata/schemas/19115/-3/cit/1.0/citation.xsd new file mode 100644 index 00000000..0a70d6d9 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cit/1.0/citation.xsd @@ -0,0 +1,514 @@ + + + + + + + + location of the responsible individual or organisation + + + + + + + + + address line for the location (as described in ISO 11180, Annex A) + + + + + city of the location + + + + + state, province of the location + + + + + ZIP or other postal code + + + + + country of the physical address + + + + + address of the electronic mailbox of the responsible organisation or individual + + + + + + + + + + + + + + + + standardized resource reference + + + + + + + + + name by which the cited resource is known + + + + + short name or other language name by which the cited information is known. Example: DCW as an alternative title for Digital Chart of the World + + + + + reference date for the cited resource + + + + + version of the cited resource + + + + + date of the edition + + + + + value uniquely identifying an object within a namespace + + + + + name and position information for an individual or organisation that is responsible for the resource + + + + + mode in which the resource is represented + + + + + information about the series, or aggregate resource, of which the resource is a part + + + + + other information required to complete the citation that is not recorded elsewhere + + + + + international Standard Book Number + + + + + international Standard Serial Number + + + + + online reference to the cited resource + + + + + citation graphic or logo for cited party + + + + + + + + + + + + + + + + information required to enable contact with the responsible person and/or organisation + + + + + + + + + telephone numbers at which the organisation or individual may be contacted + + + + + physical and email address at which the organisation or individual may be contacted + + + + + on-line information that can be used to contact the individual or organisation + + + + + time period (including time zone) when individuals can contact the organisation or individual + + + + + supplemental instructions on how or when to contact the individual or organisation + + + + + + + + + + + + + + + + + reference date and event used to describe it + + + + + + + + + + + reference date for the cited resource + + + + + event used for reference date + + + + + + + + + + + + + + + + identification of when a given event occurred + + + + + + + + + + + information about the party if the party is an individual + + + + + + + + + position of the individual in an organisation + + + + + + + + + + + + + + + + function performed by the resource + + + + + + + + + + + information about on-line sources from which the resource, specification, or community profile name and extended metadata elements can be obtained + + + + + + + + + location (address) for on-line access using a Uniform Resource Locator/Uniform Resource Identifier address or similar addressing scheme such as http://www.statkart.no/isotc211 + + + + + connection protocol to be used e.g. http, ftp, file + + + + + name of an application profile that can be used with the online resource + + + + + name of the online resource + + + + + detailed text description of what the online resource is/does + + + + + code for function performed by the online resource + + + + + protocol used by the accessed resource + + + + + + + + + + + + + + + + information about the party if the party is an organisation + + + + + + + + + Graphic identifying organization + + + + + + + + + + + + + + + + + information about the individual and/or organisation of the party + + + + + + + + + name of the party + + + + + contact information for the party + + + + + + + + + + + + + + + + mode in which the data is represented + + + + + + + + + + + information about the party and their role + + + + + + + + + function performed by the responsible party + + + + + spatial or temporal extent of the role + + + + + + + + + + + + + + + + + function performed by the responsible party + + + + + + + + + + + information about the series, or aggregate resource, to which a resource belongs + + + + + + + + + name of the series, or aggregate resource, of which the resource is a part + + + + + information identifying the issue of the series + + + + + details on which pages of the publication the article was published + + + + + + + + + + + + + + + + telephone numbers for contacting the responsible individual or organisation + + + + + + + + + telephone number by which individuals can contact responsible organisation or individual + + + + + type of telephone responsible organisation or individual + + + + + + + + + + + + + + + + type of telephone + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/cit/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/cit/1.0/codelists.xml new file mode 100644 index 00000000..c1c1b24e --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cit/1.0/codelists.xml @@ -0,0 +1,1249 @@ + + + + + Codelists from the Citation (cit) Namespace + + + Codelists related to Citation (cit) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + CI_DateTypeCode + + + CI_DateTypeCode + + + identification of when a given event occurred + + + identification of when a given event occurred + + + + + creation + + + creation + + + date identifies when the resource was brought into existence + + + date identifies when the resource was brought into existence + + + + + + + publication + + + publication + + + date identifies when the resource was issued + + + date identifies when the resource was issued + + + + + + + revision + + + revision + + + date identifies when the resource was examined or re-examined and improved or amended + + + date identifies when the resource was examined or re-examined and improved or amended + + + + + + + expiry + + + expiry + + + date identifies when resource expires + + + date identifies when resource expires + + + + + + + lastUpdate + + + lastUpdate + + + date identifies when resource was last updated + + + date identifies when resource was last updated + + + + + + + lastRevision + + + lastRevision + + + date identifies when resource was last reviewed + + + date identifies when resource was last reviewed + + + + + + + nextUpdate + + + nextUpdate + + + date identifies when resource will be next updated + + + date identifies when resource will be next updated + + + + + + + unavailable + + + unavailable + + + date identifies when resource became not available or obtainable + + + date identifies when resource became not available or obtainable + + + + + + + inForce + + + inForce + + + date identifies when resource became in force + + + date identifies when resource became in force + + + + + + + adopted + + + adopted + + + date identifies when resource was adopted + + + date identifies when resource was adopted + + + + + + + deprecated + + + deprecated + + + date identifies when resource was deprecated + + + date identifies when resource was deprecated + + + + + + + superseded + + + superseded + + + date identifies when resource was superseded or replaced by another resource + + + date identifies when resource was superseded or replaced by another resource + + + + + + + validityBegins + + + validityBegins + + + time at which the data are considered to become valid. NOTE: There could be quite a delay between creation and validity begins + + + time at which the data are considered to become valid. NOTE: There could be quite a delay between creation and validity begins + + + + + + + validityExpires + + + validityExpires + + + time at which the data are no longer considered to be valid + + + time at which the data are no longer considered to be valid + + + + + + + released + + + released + + + the date that the resource shall be released for public access + + + the date that the resource shall be released for public access + + + + + + + distribution + + + distribution + + + date identifies when an instance of the resource was distributed + + + date identifies when an instance of the resource was distributed + + + + + + + + + CI_OnLineFunctionCode + + + CI_OnLineFunctionCode + + + function performed by the resource + + + function performed by the resource + + + + + download + + + download + + + online instructions for transferring data from one storage device or system to another + + + online instructions for transferring data from one storage device or system to another + + + + + + + information + + + information + + + online information about the resource + + + online information about the resource + + + + + + + offlineAccess + + + offlineAccess + + + online instructions for requesting the resource from the provider + + + online instructions for requesting the resource from the provider + + + + + + + order + + + order + + + online order process for obtaining the resource + + + online order process for obtaining the resource + + + + + + + search + + + search + + + online search interface for seeking out information about the resource + + + online search interface for seeking out information about the resource + + + + + + + completeMetadata + + + completeMetadata + + + complete metadata provided + + + complete metadata provided + + + + + + + browseGraphic + + + browseGraphic + + + browse graphic provided + + + browse graphic provided + + + + + + + upload + + + upload + + + online resource upload capability provided + + + online resource upload capability provided + + + + + + + emailService + + + emailService + + + online email service provided + + + online email service provided + + + + + + + browsing + + + browsing + + + online browsing provided + + + online browsing provided + + + + + + + fileAccess + + + fileAccess + + + online file access provided + + + online file access provided + + + + + + + + + CI_PresentationFormCode + + + CI_PresentationFormCode + + + mode in which the data are represented + + + mode in which the data are represented + + + + + documentDigital + + + documentDigital + + + digital representation of a primarily textual item (can contain illustrations also) + + + digital representation of a primarily textual item (can contain illustrations also) + + + + + + + documentHardcopy + + + documentHardcopy + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + + + + + + + imageDigital + + + imageDigital + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + + + + + + + imageHardcopy + + + imageHardcopy + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + + + + + + + mapDigital + + + mapDigital + + + map represented in raster or vector form + + + map represented in raster or vector form + + + + + + + mapHardcopy + + + mapHardcopy + + + map printed on paper, photographic material, or other media for use directly by the human user + + + map printed on paper, photographic material, or other media for use directly by the human user + + + + + + + modelDigital + + + modelDigital + + + multi-dimensional digital representation of a feature, process, etc. + + + multi-dimensional digital representation of a feature, process, etc. + + + + + + + modelHardcopy + + + modelHardcopy + + + 3-dimensional, physical model + + + 3-dimensional, physical model + + + + + + + profileDigital + + + profileDigital + + + vertical cross-section in digital form + + + vertical cross-section in digital form + + + + + + + profileHardcopy + + + profileHardcopy + + + vertical cross-section printed on paper, etc. + + + vertical cross-section printed on paper, etc. + + + + + + + tableDigital + + + tableDigital + + + digital representation of facts or figures systematically displayed, especially in columns + + + digital representation of facts or figures systematically displayed, especially in columns + + + + + + + tableHardcopy + + + tableHardcopy + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, or other media + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, or other media + + + + + + + videoDigital + + + videoDigital + + + digital video recording + + + digital video recording + + + + + + + videoHardcopy + + + videoHardcopy + + + video recording on film + + + video recording on film + + + + + + + audioDigital + + + audioDigital + + + digital audio recording + + + digital audio recording + + + + + + + audioHardcopy + + + audioHardcopy + + + audio recording delivered by analog media, such as a magnetic tape + + + audio recording delivered by analog media, such as a magnetic tape + + + + + + + multimediaDigital + + + multimediaDigital + + + information representation using simultaneously various digital modes for text, sound, image + + + information representation using simultaneously various digital modes for text, sound, image + + + + + + + multimediaHardcopy + + + multimediaHardcopy + + + information representation using simultaneously various analog modes for text, sound, image + + + information representation using simultaneously various analog modes for text, sound, image + + + + + + + physicalSample + + + physicalSample + + + a physical object, e.g. Rock or mineral sample, microscope slide + + + a physical object, e.g. Rock or mineral sample, microscope slide + + + + + + + diagramDigital + + + diagramDigital + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital format + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital format + + + + + + + diagramHardcopy + + + diagramHardcopy + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, phototographic material, or other media + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, phototographic material, or other media + + + + + + + + + CI_RoleCode + + + CI_RoleCode + + + function performed by the responsible party + + + function performed by the responsible party + + + + + resourceProvider + + + resourceProvider + + + party that supplies the resource + + + party that supplies the resource + + + + + + + custodian + + + custodian + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the resource + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the resource + + + + + + + owner + + + owner + + + party that owns the resource + + + party that owns the resource + + + + + + + user + + + user + + + party who uses the resource + + + party who uses the resource + + + + + + + distributor + + + distributor + + + party who distributes the resource + + + party who distributes the resource + + + + + + + originator + + + originator + + + party who created the resource + + + party who created the resource + + + + + + + pointOfContact + + + pointOfContact + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + + + + + + + principalInvestigator + + + principalInvestigator + + + key party responsible for gathering information and conducting research + + + key party responsible for gathering information and conducting research + + + + + + + processor + + + processor + + + party who has processed the data in a manner such that the resource has been modified + + + party who has processed the data in a manner such that the resource has been modified + + + + + + + publisher + + + publisher + + + party who published the resource + + + party who published the resource + + + + + + + author + + + author + + + party who authored the resource + + + party who authored the resource + + + + + + + sponsor + + + sponsor + + + party who speaks for the resource + + + party who speaks for the resource + + + + + + + coAuthor + + + coAuthor + + + party who jointly authors the resource + + + party who jointly authors the resource + + + + + + + collaborator + + + collaborator + + + party who assists with the generation of the resource other than the principal investigator + + + party who assists with the generation of the resource other than the principal investigator + + + + + + + editor + + + editor + + + party who reviewed or modified the resource to improve the content + + + party who reviewed or modified the resource to improve the content + + + + + + + mediator + + + mediator + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + + + + + + + rightsHolder + + + rightsHolder + + + party owning or managing rights over the resource + + + party owning or managing rights over the resource + + + + + + + contributor + + + contributor + + + party contributing to the resource + + + party contributing to the resource + + + + + + + funder + + + funder + + + party providing monetary support for the resource + + + party providing monetary support for the resource + + + + + + + stakeholder + + + stakeholder + + + party who has an interest in the resource or the use of the resource + + + party who has an interest in the resource or the use of the resource + + + + + + + + + CI_TelephoneTypeCode + + + CI_TelephoneTypeCode + + + type of telephone + + + type of telephone + + + + + voice + + + voice + + + telephone provides voice service + + + telephone provides voice service + + + + + + + fax + + + fax + + + telephone provides facsimile service + + + telephone provides facsimile service + + + + + + + sms + + + sms + + + telephone provides sms service + + + telephone provides sms service + + + + + diff --git a/inst/extdata/schemas/19115/-3/cit/2.0/cit.xsd b/inst/extdata/schemas/19115/-3/cit/2.0/cit.xsd new file mode 100644 index 00000000..2e8e46a8 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cit/2.0/cit.xsd @@ -0,0 +1,10 @@ + + + + Namespace for XML elements for constructing citations to resources. + + + + diff --git a/inst/extdata/schemas/19115/-3/cit/2.0/citation.xsd b/inst/extdata/schemas/19115/-3/cit/2.0/citation.xsd new file mode 100644 index 00000000..8e56555a --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cit/2.0/citation.xsd @@ -0,0 +1,523 @@ + + + + + + + + + location of the responsible individual or organisation + + + + + + + + + address line for the location (as described in ISO 11180, Annex A) + + + + + city of the location + + + + + state, province of the location + + + + + ZIP or other postal code + + + + + country of the physical address + + + + + address of the electronic mailbox of the responsible organisation or individual + + + + + + + + + + + + + + + + standardized resource reference + + + + + + + + + name by which the cited resource is known + + + + + short name or other language name by which the cited information is known. Example: DCW as an alternative title for Digital Chart of the World + + + + + reference date for the cited resource + + + + + version of the cited resource + + + + + date of the edition + + + + + value uniquely identifying an object within a namespace + + + + + name and position information for an individual or organisation that is responsible for the resource + + + + + mode in which the resource is represented + + + + + information about the series, or aggregate resource, of which the resource is a part + + + + + other information required to complete the citation that is not recorded elsewhere + + + + + international Standard Book Number + + + + + international Standard Serial Number + + + + + online reference to the cited resource + + + + + citation graphic or logo for cited party + + + + + + + + + + + + + + + + information required to enable contact with the responsible person and/or organisation + + + + + + + + + telephone numbers at which the organisation or individual may be contacted + + + + + physical and email address at which the organisation or individual may be contacted + + + + + on-line information that can be used to contact the individual or organisation + + + + + time period (including time zone) when individuals can contact the organisation or individual + + + + + supplemental instructions on how or when to contact the individual or organisation + + + + + + + + + + + + + + + + + reference date and event used to describe it + + + + + + + + + + + reference date for the cited resource + + + + + event used for reference date + + + + + + + + + + + + + + + + identification of when a given event occurred + + + + + + + + + + + information about the party if the party is an individual + + + + + + + + + position of the individual in an organisation + + + + + + + + + + + + + + + + function performed by the resource + + + + + + + + + + + information about on-line sources from which the resource, specification, or community profile name and extended metadata elements can be obtained + + + + + + + + + location (address) for on-line access using a Uniform Resource Locator/Uniform Resource Identifier address or similar addressing scheme such as http://www.statkart.no/isotc211 + + + + + connection protocol to be used e.g. http, ftp, file + + + + + name of an application profile that can be used with the online resource + + + + + name of the online resource + + + + + detailed text description of what the online resource is/does + + + + + code for function performed by the online resource + + + + + protocol used by the accessed resource + + + + + + + + + + + + + + + + information about the party if the party is an organisation + + + + + + + + + Graphic identifying organization + + + + + + + + + + + + + + + + + information about the individual and/or organisation of the party + + + + + + + + + name of the party + + + + + contact information for the party + + + + + value uniquely identifying a party (individual or organization) + + + + + + + + + + + + + + + mode in which the data is represented + + + + + + + + + + + information about the party and their role + + + + + + + + + function performed by the responsible party + + + + + spatial or temporal extent of the role + + + + + + + + + + + + + + + + + function performed by the responsible party + + + + + + + + + + + information about the series, or aggregate resource, to which a resource belongs + + + + + + + + + name of the series, or aggregate resource, of which the resource is a part + + + + + information identifying the issue of the series + + + + + details on which pages of the publication the article was published + + + + + + + + + + + + + + + + telephone numbers for contacting the responsible individual or organisation + + + + + + + + + telephone number by which individuals can contact responsible organisation or individual + + + + + type of telephone responsible organisation or individual + + + + + + + + + + + + + + + + type of telephone + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/cit/2.0/codelists.xml b/inst/extdata/schemas/19115/-3/cit/2.0/codelists.xml new file mode 100644 index 00000000..c1c1b24e --- /dev/null +++ b/inst/extdata/schemas/19115/-3/cit/2.0/codelists.xml @@ -0,0 +1,1249 @@ + + + + + Codelists from the Citation (cit) Namespace + + + Codelists related to Citation (cit) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + CI_DateTypeCode + + + CI_DateTypeCode + + + identification of when a given event occurred + + + identification of when a given event occurred + + + + + creation + + + creation + + + date identifies when the resource was brought into existence + + + date identifies when the resource was brought into existence + + + + + + + publication + + + publication + + + date identifies when the resource was issued + + + date identifies when the resource was issued + + + + + + + revision + + + revision + + + date identifies when the resource was examined or re-examined and improved or amended + + + date identifies when the resource was examined or re-examined and improved or amended + + + + + + + expiry + + + expiry + + + date identifies when resource expires + + + date identifies when resource expires + + + + + + + lastUpdate + + + lastUpdate + + + date identifies when resource was last updated + + + date identifies when resource was last updated + + + + + + + lastRevision + + + lastRevision + + + date identifies when resource was last reviewed + + + date identifies when resource was last reviewed + + + + + + + nextUpdate + + + nextUpdate + + + date identifies when resource will be next updated + + + date identifies when resource will be next updated + + + + + + + unavailable + + + unavailable + + + date identifies when resource became not available or obtainable + + + date identifies when resource became not available or obtainable + + + + + + + inForce + + + inForce + + + date identifies when resource became in force + + + date identifies when resource became in force + + + + + + + adopted + + + adopted + + + date identifies when resource was adopted + + + date identifies when resource was adopted + + + + + + + deprecated + + + deprecated + + + date identifies when resource was deprecated + + + date identifies when resource was deprecated + + + + + + + superseded + + + superseded + + + date identifies when resource was superseded or replaced by another resource + + + date identifies when resource was superseded or replaced by another resource + + + + + + + validityBegins + + + validityBegins + + + time at which the data are considered to become valid. NOTE: There could be quite a delay between creation and validity begins + + + time at which the data are considered to become valid. NOTE: There could be quite a delay between creation and validity begins + + + + + + + validityExpires + + + validityExpires + + + time at which the data are no longer considered to be valid + + + time at which the data are no longer considered to be valid + + + + + + + released + + + released + + + the date that the resource shall be released for public access + + + the date that the resource shall be released for public access + + + + + + + distribution + + + distribution + + + date identifies when an instance of the resource was distributed + + + date identifies when an instance of the resource was distributed + + + + + + + + + CI_OnLineFunctionCode + + + CI_OnLineFunctionCode + + + function performed by the resource + + + function performed by the resource + + + + + download + + + download + + + online instructions for transferring data from one storage device or system to another + + + online instructions for transferring data from one storage device or system to another + + + + + + + information + + + information + + + online information about the resource + + + online information about the resource + + + + + + + offlineAccess + + + offlineAccess + + + online instructions for requesting the resource from the provider + + + online instructions for requesting the resource from the provider + + + + + + + order + + + order + + + online order process for obtaining the resource + + + online order process for obtaining the resource + + + + + + + search + + + search + + + online search interface for seeking out information about the resource + + + online search interface for seeking out information about the resource + + + + + + + completeMetadata + + + completeMetadata + + + complete metadata provided + + + complete metadata provided + + + + + + + browseGraphic + + + browseGraphic + + + browse graphic provided + + + browse graphic provided + + + + + + + upload + + + upload + + + online resource upload capability provided + + + online resource upload capability provided + + + + + + + emailService + + + emailService + + + online email service provided + + + online email service provided + + + + + + + browsing + + + browsing + + + online browsing provided + + + online browsing provided + + + + + + + fileAccess + + + fileAccess + + + online file access provided + + + online file access provided + + + + + + + + + CI_PresentationFormCode + + + CI_PresentationFormCode + + + mode in which the data are represented + + + mode in which the data are represented + + + + + documentDigital + + + documentDigital + + + digital representation of a primarily textual item (can contain illustrations also) + + + digital representation of a primarily textual item (can contain illustrations also) + + + + + + + documentHardcopy + + + documentHardcopy + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + + + + + + + imageDigital + + + imageDigital + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + + + + + + + imageHardcopy + + + imageHardcopy + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + + + + + + + mapDigital + + + mapDigital + + + map represented in raster or vector form + + + map represented in raster or vector form + + + + + + + mapHardcopy + + + mapHardcopy + + + map printed on paper, photographic material, or other media for use directly by the human user + + + map printed on paper, photographic material, or other media for use directly by the human user + + + + + + + modelDigital + + + modelDigital + + + multi-dimensional digital representation of a feature, process, etc. + + + multi-dimensional digital representation of a feature, process, etc. + + + + + + + modelHardcopy + + + modelHardcopy + + + 3-dimensional, physical model + + + 3-dimensional, physical model + + + + + + + profileDigital + + + profileDigital + + + vertical cross-section in digital form + + + vertical cross-section in digital form + + + + + + + profileHardcopy + + + profileHardcopy + + + vertical cross-section printed on paper, etc. + + + vertical cross-section printed on paper, etc. + + + + + + + tableDigital + + + tableDigital + + + digital representation of facts or figures systematically displayed, especially in columns + + + digital representation of facts or figures systematically displayed, especially in columns + + + + + + + tableHardcopy + + + tableHardcopy + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, or other media + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, or other media + + + + + + + videoDigital + + + videoDigital + + + digital video recording + + + digital video recording + + + + + + + videoHardcopy + + + videoHardcopy + + + video recording on film + + + video recording on film + + + + + + + audioDigital + + + audioDigital + + + digital audio recording + + + digital audio recording + + + + + + + audioHardcopy + + + audioHardcopy + + + audio recording delivered by analog media, such as a magnetic tape + + + audio recording delivered by analog media, such as a magnetic tape + + + + + + + multimediaDigital + + + multimediaDigital + + + information representation using simultaneously various digital modes for text, sound, image + + + information representation using simultaneously various digital modes for text, sound, image + + + + + + + multimediaHardcopy + + + multimediaHardcopy + + + information representation using simultaneously various analog modes for text, sound, image + + + information representation using simultaneously various analog modes for text, sound, image + + + + + + + physicalSample + + + physicalSample + + + a physical object, e.g. Rock or mineral sample, microscope slide + + + a physical object, e.g. Rock or mineral sample, microscope slide + + + + + + + diagramDigital + + + diagramDigital + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital format + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital format + + + + + + + diagramHardcopy + + + diagramHardcopy + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, phototographic material, or other media + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, phototographic material, or other media + + + + + + + + + CI_RoleCode + + + CI_RoleCode + + + function performed by the responsible party + + + function performed by the responsible party + + + + + resourceProvider + + + resourceProvider + + + party that supplies the resource + + + party that supplies the resource + + + + + + + custodian + + + custodian + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the resource + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the resource + + + + + + + owner + + + owner + + + party that owns the resource + + + party that owns the resource + + + + + + + user + + + user + + + party who uses the resource + + + party who uses the resource + + + + + + + distributor + + + distributor + + + party who distributes the resource + + + party who distributes the resource + + + + + + + originator + + + originator + + + party who created the resource + + + party who created the resource + + + + + + + pointOfContact + + + pointOfContact + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + + + + + + + principalInvestigator + + + principalInvestigator + + + key party responsible for gathering information and conducting research + + + key party responsible for gathering information and conducting research + + + + + + + processor + + + processor + + + party who has processed the data in a manner such that the resource has been modified + + + party who has processed the data in a manner such that the resource has been modified + + + + + + + publisher + + + publisher + + + party who published the resource + + + party who published the resource + + + + + + + author + + + author + + + party who authored the resource + + + party who authored the resource + + + + + + + sponsor + + + sponsor + + + party who speaks for the resource + + + party who speaks for the resource + + + + + + + coAuthor + + + coAuthor + + + party who jointly authors the resource + + + party who jointly authors the resource + + + + + + + collaborator + + + collaborator + + + party who assists with the generation of the resource other than the principal investigator + + + party who assists with the generation of the resource other than the principal investigator + + + + + + + editor + + + editor + + + party who reviewed or modified the resource to improve the content + + + party who reviewed or modified the resource to improve the content + + + + + + + mediator + + + mediator + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + + + + + + + rightsHolder + + + rightsHolder + + + party owning or managing rights over the resource + + + party owning or managing rights over the resource + + + + + + + contributor + + + contributor + + + party contributing to the resource + + + party contributing to the resource + + + + + + + funder + + + funder + + + party providing monetary support for the resource + + + party providing monetary support for the resource + + + + + + + stakeholder + + + stakeholder + + + party who has an interest in the resource or the use of the resource + + + party who has an interest in the resource or the use of the resource + + + + + + + + + CI_TelephoneTypeCode + + + CI_TelephoneTypeCode + + + type of telephone + + + type of telephone + + + + + voice + + + voice + + + telephone provides voice service + + + telephone provides voice service + + + + + + + fax + + + fax + + + telephone provides facsimile service + + + telephone provides facsimile service + + + + + + + sms + + + sms + + + telephone provides sms service + + + telephone provides sms service + + + + + diff --git a/inst/extdata/schemas/19115/-3/gco/.DS_Store b/inst/extdata/schemas/19115/-3/gco/.DS_Store new file mode 100644 index 00000000..21cb8d1e Binary files /dev/null and b/inst/extdata/schemas/19115/-3/gco/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/gco/1.0/baseTypes2014.xsd b/inst/extdata/schemas/19115/-3/gco/1.0/baseTypes2014.xsd new file mode 100644 index 00000000..91b8e530 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gco/1.0/baseTypes2014.xsd @@ -0,0 +1,530 @@ + + + + + Geographic COmmon (GCO) extensible markup language is a component of the XML Schema Implementation of Geographic +Information Metadata documented in ISO/TS 19115-3, based on the implementation patterns defined and utilized in ISO19139. +This gcoBase.xsd schema provides: + 1. tools to handle specific objects like "code lists" and "record"; + 2. Some XML types that do not follow the general encoding rules specified in ISO19139. + *** SMR 2014-12-22. Refactor gco, gts, gsr, gss to separate gml dependencies. + All element or attribute types in this schema are either types defined by this schema, or are datatypes defined by + the XML schema namespace (http://www.w3.org/2001/XMLSchema) + To remove the dependency between gml and the base datatypes in ISO19115-3: + 1. The nilReason attribute is defined here instead of extending the gml type. + 2. The definition of MeasureType is copied here from gml 3.2 basic Types. The only + difference this will introduce in instance documents is that the uom attribute on a measure value + (or one of its substitutions) will be gco:uom, not gml:uom. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + copied from gml32:NilReasonType. This Type defines a content model that allows recording of an + explanation for a void value or other exception. + gml:NilReasonType is a union of the following enumerated values: + - inapplicable- there is no value + - missing- the correct value is not readily available to the sender of this data. Furthermore, a correct value may not exist + - template- the value will be available later + - unknown- the correct value is not known to, and not computable by, the sender of this data. However, a correct value probably exists + - withheld- the value is not divulged + - other:text - other brief explanation, where text is a string of two or more characters with no included spaces + and + - xs:anyURI which should refer to a resource which describes the reason for the exception + A particular community may choose to assign more detailed semantics to the standard values provided. Alternatively, the URI method enables a specific or more complete explanation for the absence of a value to be provided elsewhere and indicated by-reference in an instance document. + gml:NilReasonType is used as a member of a union in a number of simple content types where it is necessary to permit a value from the NilReasonType union as an alternative to the primary type. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A TypeName is a LocalName that references either a recordType or object type in some form of schema. The stored value "aName" is the returned value for the "aName()" operation. This is the types name. - For parsing from types (or objects) the parsible name normally uses a "." navigation separator, so that it is of the form [class].[member].[memberOfMember]. ...) + + + + + + + + + + + + + + + + + + + + + + + A MemberName is a LocalName that references either an attribute slot in a record or recordType or an attribute, operation, or association role in an object instance or type description in some form of schema. The stored value "aName" is the returned value for the "aName()" operation. + + + + + + + + + + + + + + + + + + + + + + + + Use to represent the possible cardinality of a relation. Represented by a set of simple multiplicity ranges. + + + + + + + + + + + + + + + + + + + + + + + A component of a multiplicity, consisting of an non-negative lower bound, and a potentially infinite upper bound. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Copied from gml32:MeasureType, which supports recording an amount encoded as a value of XML Schema double, together with a units of measure indicated by an attribute uom, short for "units Of measure". The value of the uom attribute identifies a reference system for the amount, usually a ratio or interval scale. Namespace changed to gco + + + + + + + + + + + + + + The simple type gml:UomIdentifer defines the syntax and value space of the unit of measure identifier. + + + + + + This type specifies a character string of length at least one, and restricted such that it must not contain any of the following characters: ":" (colon), " " (space), (newline), (carriage return), (tab). This allows values corresponding to familiar abbreviations, such as "kg", "m/s", etc. + It is recommended that the symbol be an identifier for a unit of measure as specified in the "Unified Code of Units of Measure" (UCUM) (http://aurora.regenstrief.org/UCUM). This provides a set of symbols and a grammar for constructing identifiers for units of measure that are unique, and may be easily entered with a keyboard supporting the limited character set known as 7-bit ASCII. ISO 2955 formerly provided a specification with this scope, but was withdrawn in 2001. UCUM largely follows ISO 2955 with modifications to remove ambiguities and other problems. + + + + + + + + This type specifies a URI, restricted such that it must start with one of the following sequences: "#", "./", "../", or a string of characters followed by a ":". These patterns ensure that the most common URI forms are supported, including absolute and relative URIs and URIs that are simple fragment identifiers, but prohibits certain forms of relative URI that could be mistaken for unit of measure symbol . + NOTE It is possible to re-write such a relative URI to conform to the restriction (e.g. "./m/s"). + In an instance document, on elements of type gml:MeasureType the mandatory uom attribute shall carry a value corresponding to either + - a conventional unit of measure symbol, + - a link to a definition of a unit of measure that does not have a conventional symbol, or when it is desired to indicate a precise or variant definition. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gml:CodeType is a generalized type to be used for a term, keyword or name. It adds a XML attribute codeSpace to a term, where the value of the codeSpace attribute (if present) shall indicate a dictionary, thesaurus, classification scheme, authority, or pattern for the term. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gco/1.0/gco.xsd b/inst/extdata/schemas/19115/-3/gco/1.0/gco.xsd new file mode 100644 index 00000000..7db0f214 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gco/1.0/gco.xsd @@ -0,0 +1,16 @@ + + + + + This is the root document of the The Geographic COmmon (GCO) http://standards.iso.org/iso/19115/-3/gco/1.0 namespace, a component of the XML Schema Implementation of Geographic Information Metadata (ISO19115-1). Original implementation documented in ISO/TS 19139:2007 is refactored in this implementation for ISO19115-3 to remove dependency of base data types on GML (the only gml element used was the enumeration of nilReasons). GCO includes all the definitions of http://standards.iso.org/iso/19115/-3/gco/1.0 namespace. Elements that are extensions of GML elements are defined in the gmw namespace in ISO19115-3. + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gcx/.DS_Store b/inst/extdata/schemas/19115/-3/gcx/.DS_Store new file mode 100644 index 00000000..b519b03c Binary files /dev/null and b/inst/extdata/schemas/19115/-3/gcx/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/gcx/1.0/extendedTypes.xsd b/inst/extdata/schemas/19115/-3/gcx/1.0/extendedTypes.xsd new file mode 100644 index 00000000..82afc167 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gcx/1.0/extendedTypes.xsd @@ -0,0 +1,92 @@ + + + + + This file was generated from ISO TC/211 UML class diagrams == 03-14-2005 12:00:20 ====== Handcrafted + 20130614 SMR updates: + 1. schema locations for gco and xlink. + 2. change namespace prefix from gmx to gcx, to use for ISO19115-3. + 3. change attribute group for gcx:anchor from xlink:simpleLink (old) to xlink:simpleAttrs (new). + + 20130327 - Ted changed targetNamespace and gcx namespace to http://www.isotc211.org/2005/gcx/1.0/2013-03-28 + 20130624 SMR update namespace version date + 20140729 SMR update namespace for 07-11 build. The schema generated by ShapeChange from the UML does not work for gcx namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gcx/1.0/extendedTypes_autoFromShapeChange.xsd b/inst/extdata/schemas/19115/-3/gcx/1.0/extendedTypes_autoFromShapeChange.xsd new file mode 100644 index 00000000..1430497b --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gcx/1.0/extendedTypes_autoFromShapeChange.xsd @@ -0,0 +1,60 @@ + + + Handcrafted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gcx/1.0/gcx.xsd b/inst/extdata/schemas/19115/-3/gcx/1.0/gcx.xsd new file mode 100644 index 00000000..6fa5787d --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gcx/1.0/gcx.xsd @@ -0,0 +1,8 @@ + + + Elements for xml implementation, from ISO 19139 updated for compatibility with new schema. Anchor, FileName, MimeFileType; all in substitution group for CharacterString to support Web environments. + + + + + diff --git a/inst/extdata/schemas/19115/-3/gex/.DS_Store b/inst/extdata/schemas/19115/-3/gex/.DS_Store new file mode 100644 index 00000000..b519b03c Binary files /dev/null and b/inst/extdata/schemas/19115/-3/gex/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/gex/1.0/extent.xsd b/inst/extdata/schemas/19115/-3/gex/1.0/extent.xsd new file mode 100644 index 00000000..8d5bff2c --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gex/1.0/extent.xsd @@ -0,0 +1,241 @@ + + + + + + + + + + + + enclosing geometric object which locates the resource, expressed as a set of (x,y) coordinate (s) NOTE: If a polygon is used it should be closed (last point replicates first point) + + + + + + + + + sets of points defining the bounding polygon or any other GM_Object geometry (point, line or polygon) + + + + + + + + + + + + + + + + extent of the resource + + + + + + + + + sets of points defining the bounding polygon or any other GM_Object geometry (point, line or polygon) + + + + + + + + + + + + + + + + + + + geographic position of the resource NOTE: This is only an approximate reference so specifying the coordinate reference system is unnecessary and need only be provided with a precision of up to two decimal places + + + + + + + + + western-most coordinate of the limit of the resource extent, expressed in longitude in decimal degrees (positive east) + + + + + eastern-most coordinate of the limit of the resource extent, expressed in longitude in decimal degrees (positive east) + + + + + southern-most coordinate of the limit of the resource extent, expressed in latitude in decimal degrees (positive north) + + + + + northern-most, coordinate of the limit of the resource extent expressed in latitude in decimal degrees (positive north) + + + + + + + + + + + + + + + + description of the geographic area using identifiers + + + + + + + + + identifier used to represent a geographic area e.g. a geographic identifier as described in ISO 19112 + + + + + + + + + + + + + + + + spatial area of the resource + + + + + + + + + indication of whether the geographic element encompasses an area covered by the data or an area where data is not present + + + + + + + + + + + + + + + + extent with respect to date/time and spatial boundaries + + + + + + + + + vertical extent component + + + + + + + + + + + + + + + + + time period covered by the content of the resource + + + + + + + + + period for the content of the resource + + + + + + + + + + + + + + + + vertical domain of resource + + + + + + + + + lowest vertical extent contained in the resource + + + + + highest vertical extent contained in the resource + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gex/1.0/gex.sch b/inst/extdata/schemas/19115/-3/gex/1.0/gex.sch new file mode 100644 index 00000000..55d22b43 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gex/1.0/gex.sch @@ -0,0 +1,163 @@ + + + + + + + + + + The extent does not contain a description or a geographicElement. + L'étendue ne contient aucun élement. + + The extent contains a description. + L'étendue contient une description. + + The extent contains a geographic identifier. + L'étendue contient un identifiant géographique. + + The extent contains a bounding box element. + L'étendue contient une emprise géographique. + + The extent contains a bounding polygon. + L'étendue contient un polygone englobant. + + The extent contains a vertical element. + L'étendue contient une étendue verticale. + + The extent contains a temporal element. + L'étendue contient une étendue temporelle. + + + + + Extent MUST have one description or one geographic, temporal or vertical element + Une étendue DOIT avoir une description ou un élément géographique, temporel ou vertical + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The vertical extent does not contains CRS or CRS identifier. + L'étendue verticale ne contient pas de CRS ou d'identifiant de CRS. + + The vertical extent contains CRS information. + L'étendue verticale contient les informations sur le CRS. + + + + Vertical element MUST contains a CRS or CRS identifier + Une étendue verticale DOIT contenir un CRS ou un identifiant de CRS + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gex/1.0/gex.xsd b/inst/extdata/schemas/19115/-3/gex/1.0/gex.xsd new file mode 100644 index 00000000..034f42df --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gex/1.0/gex.xsd @@ -0,0 +1,9 @@ + + + Namespace for XML elements used to specify spatial and temporal extents. + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gmw/1.0/gmlWrapperTypes2014.xsd b/inst/extdata/schemas/19115/-3/gmw/1.0/gmlWrapperTypes2014.xsd new file mode 100644 index 00000000..2178560c --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gmw/1.0/gmlWrapperTypes2014.xsd @@ -0,0 +1,158 @@ + + + + + + + Geographic COmmon (GCO) extensible markup language is a component of the XML Schema Implementation of Geographic +Information Metadata documented in ISO/TS 19139:2007. GCO includes all the definitions of http://standards.iso.org/iso/19115/-3/gco/1.0" namespace. The root document of this namespace is the file gco.xsd. This basicTypes.xsd schema implements concepts from the "basic types" package of ISO/TS 19103. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/gmw/1.0/gmw.xsd b/inst/extdata/schemas/19115/-3/gmw/1.0/gmw.xsd new file mode 100644 index 00000000..9cb45976 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/gmw/1.0/gmw.xsd @@ -0,0 +1,14 @@ + + + + + This is the root document of the The GMl Wrapper type (GMW) http://standards.iso.org/iso/19115/-3/gmw/1.0 namespace, a component of the XML Schema Implementation of Geographic Information Metadata (ISO19115-1). Original implementation documented in ISO/TS 19139:2007 is refactored in this implementation for ISO19115-3 to put type definitions that wrap GML elements in property types with optional gco:ObjectProperties and gco:nilReason attributes as originally specified in ISO19139 in the gco, gss, gsr and gts namespaces. Elements from the ISO19139 gco namespace that do not have dependencies on gml are specified in the http://standards.iso.org/iso/19115/-3/gco/1.0 namespace in the ISO19115-3 implementation + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/lan/.DS_Store b/inst/extdata/schemas/19115/-3/lan/.DS_Store new file mode 100644 index 00000000..33f77d08 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/lan/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/lan/1.0/lan.xsd b/inst/extdata/schemas/19115/-3/lan/1.0/lan.xsd new file mode 100644 index 00000000..1238f5a3 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/lan/1.0/lan.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements used to implement cultural and linguistic adaptability, i.e. different character set and language encoding of metadata content. Originally defined in ISO 19139. + + + + + diff --git a/inst/extdata/schemas/19115/-3/lan/1.0/language.xsd b/inst/extdata/schemas/19115/-3/lan/1.0/language.xsd new file mode 100644 index 00000000..9757375a --- /dev/null +++ b/inst/extdata/schemas/19115/-3/lan/1.0/language.xsd @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mac/.DS_Store b/inst/extdata/schemas/19115/-3/mac/.DS_Store new file mode 100644 index 00000000..174e3dc2 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mac/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mac/1.0/.DS_Store b/inst/extdata/schemas/19115/-3/mac/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mac/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mac/1.0/acquisitionInformationImagery.xsd b/inst/extdata/schemas/19115/-3/mac/1.0/acquisitionInformationImagery.xsd new file mode 100644 index 00000000..0b0f740d --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mac/1.0/acquisitionInformationImagery.xsd @@ -0,0 +1,622 @@ + + + + + + + + + Description: Designations for the measuring instruments and their bands, the platform carrying them, and the mission to which the data contributes +FGDC: Platform_and_Instrument_Identification, Mission_Information +shortName: PltfrmInstId + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: context of activation +shortName: CntxtCode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: identification of a significant collection point within an operation +shortName: Event + + + + + + + + + Description: Event name or number +shortName: evtId + + + + + Description: Initiator of the event +shortName: evtTrig + + + + + Description: Meaning of the event +shortName: evtCntxt + + + + + Description: Relative time ordering of the event +shortName: evtSeq + + + + + Description: Time the event occured +shortName: evtTime + + + + + + + + + + + + + + + + + + + Description: geometric description of collection +shortName: GeoTypeCode + + + + + + + + + + + Description: Designations for the measuring instruments +FGDC: Platform_and_Instrument_Identification +shortName: PltfrmInstId + + + + + + + + + Description: complete citation of the instrument +FGDC: Instrument_Full_Name +Position: 1 +shortName: instNam +Conditional: if shortName not specified + + + + + Description: complete citation of the instrument +FGDC: Instrument_Full_Name +Position: 1 +shortName: instNam +Conditional: if shortName not specified + + + + + Description: Code describing the type of instrument +shortName: instType + + + + + Description: Textual description of the instrument +shortName: instDesc + + + + + + + + + + + + + + + + + Description: Describes the characteristics, spatial and temportal extent of the intended object to be observed +shortName: TargetId + + + + + + + + + Description: Registered code used to identify the objective +Postion: 1 +shortName: targetId + + + + + Description: priority applied to the target +Position: 3 +shortName: trgtPriority + + + + + Description: collection technique for the objective +Position: 4 +shortName: trgtType + + + + + Description: function performed by or at the objective +Position: 5 +shortName: trgtFunct + + + + + Description: extent information including the bounding box, bounding polygon, vertical and temporal extent of the objective +Position: 6 +shortName: trgtExtent + + + + + + + + + + + + + + + + + + + Description: temporal persistence of collection objective +shortName: ObjTypeCode + + + + + + + + + + + Description: Designations for the operation used to acquire the dataset +shortName: MssnId + + + + + + + + + Description: Description of the mission on which the platform observations are part and the objectives of that mission +FGDC: Mission_Description +Position: 3 +shortName: mssnDesc + + + + + Description: character string by which the mission is known +FGDC: Mission_Name +Position: 1 +shortName: pltMssnNam +NITF_ACFTA:AC_MSN_ID + + + + + Description: character string by which the mission is known +FGDC: Mission_Name +Position: 1 +shortName: pltMssnNam +NITF_ACFTA:AC_MSN_ID + + + + + Description: status of the data acquisition +FGDC: Mission_Start_Date +Position: 4 +shortName: mssnStatus + + + + + Description: status of the data acquisition +FGDC: Mission_Start_Date +Position: 4 +shortName: mssnStatus + + + + + + + Description: Platform (or platforms) used in the operation. + + + + + + + + + + + + + + + + + + + + + + + + + + Description: Designations for the planning information related to meeting requirements +shortName: PlanId + + + + + + + + + Description: manner of sampling geometry the planner expects for collection of the objective data +Postion: 2 +shortName: planType + + + + + Description: current status of the plan (pending, completed, etc.) +shortName: planStatus + + + + + Description: Identification of authority requesting target collection +Postion: 1 +shortName: planReqId + + + + + + + + + + + + + + + + + + Description: Designations for the platform used to acquire the dataset +shortName: PltfrmId + + + + + + + + + Description: complete citation of the platform +FGDC: Platform_Full_Name +Position: 3 +shortName: pltNam +Conditional: if shortName not specified + + + + + Description: Unique identification of the platform +shortName: pltId + + + + + Description: Narrative description of the platform supporting the instrument +FGDC: Platform_Description +Position: 2 +shortName: pltfrmDesc + + + + + Description: organization responsible for building, launch, or operation of the platform +FGDC: Platform_Sponsor +Position: 6 +shortName: pltfrmSpnsr + + + + + + + + + + + + + + + + + Description: identification of collection coverage +shortName: PlatformPass + + + + + + + + + Description: unique name of the pass +shortName: passId + + + + + Description: Area covered by the pass +shortName: passExt + + + + + + + + + + + + + + + + + Description: ordered list of priorities +shortName: PriCode + + + + + + + + + + + Description: range of date validity +shortName: ReqstDate + + + + + + + + + Description: preferred date and time of collection +shortName: collectDate + + + + + Description: latest date and time collection must be completed +shortName: latestDate + + + + + + + + + + + + + + + + Description: requirement to be satisfied by the planned data acquisition +shortName: Requirement + + + + + + + + + Description: identification of reference or guidance material for the requirement +shortName: reqRef + + + + + Description: unique name, or code, for the requirement +shortName: reqId + + + + + Description: origin of requirement +shortName: requestor + + + + + Description: person(s), or body(ies), to recieve results of requirement +shortName: recipient + + + + + Description: relative ordered importance, or urgency, of the requirement +shortName: reqPri + + + + + Description: required or preferred acquisition date and time +shortName: reqDate + + + + + Description: date and time after which collection is no longer valid +shortName: reqExpire + + + + + + + + + + + + + + + + + <UsedBy> +<NameSpace>ISO 19115-2 Metadata - Imagery</NameSpace> +<Class>MI_Instrument</Class> +<Package>Acquisition information - Imagery</Package> +<Attribute>type</Attribute> +<Type>MI_SensorTypeCode</Type> +<UsedBy> + + + + + + + + + + + Description: temporal relation of activation +shortName: SeqCode + + + + + + + + + + + Description: mechanism of activation +shortName: TriggerCode + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mac/1.0/mac.xsd b/inst/extdata/schemas/19115/-3/mac/1.0/mac.xsd new file mode 100644 index 00000000..16ba2f19 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mac/1.0/mac.xsd @@ -0,0 +1,11 @@ + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mac/2.0/acquisitionInformationImagery.xsd b/inst/extdata/schemas/19115/-3/mac/2.0/acquisitionInformationImagery.xsd new file mode 100644 index 00000000..ad0eee64 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mac/2.0/acquisitionInformationImagery.xsd @@ -0,0 +1,590 @@ + + + + + + + + + Description: Designations for the measuring instruments and their bands, the platform carrying them, and the mission to which the data contributes FGDC: Platform_and_Instrument_Identification, Mission_Information shortName: PltfrmInstId + + + + + + + + + the specific data to which the acquisition information applies + + + + + + + + + + + + + + + + + + + + + + + Description: context of activation shortName: CntxtCode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: identification of a significant collection point within an operation shortName: Event + + + + + + + + + Description: Event name or number shortName: evtId + + + + + Description: Initiator of the event shortName: evtTrig + + + + + Description: Meaning of the event shortName: evtCntxt + + + + + Description: Relative time ordering of the event shortName: evtSeq + + + + + Description: Time the event occured shortName: evtTime + + + + + + + + + + + + + + + + + + + Description: geometric description of collection shortName: GeoTypeCode + + + + + + + + + + + Description: Designations for the measuring instruments FGDC: Platform_and_Instrument_Identification shortName: PltfrmInstId + + + + + + + + + Description: complete citation of the instrument FGDC: Instrument_Full_Name Position: 1 shortName: instNam Conditional: if shortName not specified + + + + + Description: complete citation of the instrument FGDC: Instrument_Full_Name Position: 1 shortName: instNam Conditional: if shortName not specified + + + + + Description: Code describing the type of instrument shortName: instType + + + + + Description: Textual description of the instrument shortName: instDesc + + + + + + type of other property description (i.e. netcdf/variable in ncml.xsd or AdditionalAttribute in ECHO) + + + + + instance of otherPropertyType that defines attributes not explicitly included in MI_Platform + + + + + + + + + + + + + + + + + + + + Sensor Description + + + + + + + + + + + + + + + + + + + + + + Description: Describes the characteristics, spatial and temportal extent of the intended object to be observed shortName: TargetId + + + + + + + + + Description: Registered code used to identify the objective Postion: 1 shortName: targetId + + + + + Description: priority applied to the target Position: 3 shortName: trgtPriority + + + + + Description: collection technique for the objective Position: 4 shortName: trgtType + + + + + Description: function performed by or at the objective Position: 5 shortName: trgtFunct + + + + + Description: extent information including the bounding box, bounding polygon, vertical and temporal extent of the objective Position: 6 shortName: trgtExtent + + + + + + + + + + + + + + + + + + + Description: temporal persistence of collection objective shortName: ObjTypeCode + + + + + + + + + + + Description: Designations for the operation used to acquire the dataset shortName: MssnId + + + + + + + + + Description: Description of the mission on which the platform observations are part and the objectives of that mission FGDC: Mission_Description Position: 3 shortName: mssnDesc + + + + + Description: character string by which the mission is known FGDC: Mission_Name Position: 1 shortName: pltMssnNam NITF_ACFTA:AC_MSN_ID + + + + + Description: character string by which the mission is known FGDC: Mission_Name Position: 1 shortName: pltMssnNam NITF_ACFTA:AC_MSN_ID + + + + + Description: status of the data acquisition FGDC: Mission_Start_Date Position: 4 shortName: mssnStatus + + + + + Description: status of the data acquisition FGDC: Mission_Start_Date Position: 4 shortName: mssnStatus + + + + + + + Description: Platform (or platforms) used in the operation. + + + + + + + + type of other property description (i.e. netcdf/variable in ncml.xsd or AdditionalAttribute in ECHO) + + + + + instance of otherPropertyType that defines attributes not explicitly included in MI_Operation + + + + + + + + + + + + + + + + + + + + + + + + Description: Designations for the planning information related to meeting requirements shortName: PlanId + + + + + + + + + Description: manner of sampling geometry the planner expects for collection of the objective data Postion: 2 shortName: planType + + + + + Description: current status of the plan (pending, completed, etc.) shortName: planStatus + + + + + Description: Identification of authority requesting target collection Postion: 1 shortName: planReqId + + + + + + + + + + + + + + + + + + Description: Designations for the platform used to acquire the dataset shortName: PltfrmId + + + + + + + + + Description: complete citation of the platform FGDC: Platform_Full_Name Position: 3 shortName: pltNam Conditional: if shortName not specified + + + + + Unique identification of the platform + + + + + Description: Narrative description of the platform supporting the instrument FGDC: Platform_Description Position: 2 shortName: pltfrmDesc + + + + + Description: organization responsible for building, launch, or operation of the platform FGDC: Platform_Sponsor Position: 6 shortName: pltfrmSpnsr + + + + + + type of other property description (i.e. netcdf/variable in ncml.xsd or AdditionalAttribute in ECHO) + + + + + instance of otherPropertyType that defines attributes not explicitly included in MI_Platform + + + + + + + + + + + + + + + + + Description: identification of collection coverage shortName: PlatformPass + + + + + + + + + Description: unique name of the pass shortName: passId + + + + + Description: Area covered by the pass shortName: passExt + + + + + + + + + + + + + + + + + Description: ordered list of priorities shortName: PriCode + + + + + + + + + + + Description: range of date validity shortName: ReqstDate + + + + + + + + + Description: preferred date and time of collection shortName: collectDate + + + + + Description: latest date and time collection must be completed shortName: latestDate + + + + + + + + + + + + + + + + Description: requirement to be satisfied by the planned data acquisition shortName: Requirement + + + + + + + + + Description: identification of reference or guidance material for the requirement shortName: reqRef + + + + + Description: unique name, or code, for the requirement shortName: reqId + + + + + Description: origin of requirement shortName: requestor + + + + + Description: person(s), or body(ies), to recieve results of requirement shortName: recipient + + + + + Description: relative ordered importance, or urgency, of the requirement shortName: reqPri + + + + + Description: required or preferred acquisition date and time shortName: reqDate + + + + + Description: date and time after which collection is no longer valid shortName: reqExpire + + + + + + + + + + + + + + + + + <UsedBy> <NameSpace>ISO 19115-2 Metadata - Imagery</NameSpace> <Class>MI_Instrument</Class> <Package>Acquisition information - Imagery</Package> <Attribute>type</Attribute> <Type>MI_SensorTypeCode</Type> <UsedBy> + + + + + + + + + + + Description: temporal relation of activation shortName: SeqCode + + + + + + + + + + + Description: mechanism of activation shortName: TriggerCode + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mac/2.0/event.xsd b/inst/extdata/schemas/19115/-3/mac/2.0/event.xsd new file mode 100644 index 00000000..5eb6ffe1 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mac/2.0/event.xsd @@ -0,0 +1,108 @@ + + + + event.xsd Version 1.0 thabermann@hdfgroup.org + Created 2017-01-18 + + + + + + + + + + + + Instrumentation EventList Description + + + + + + + + + + + + + + + + + + + + + + + + + + + Instrumentation Event Description + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: NASA Revision Description + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mac/2.0/mac.xsd b/inst/extdata/schemas/19115/-3/mac/2.0/mac.xsd new file mode 100644 index 00000000..88e233e9 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mac/2.0/mac.xsd @@ -0,0 +1,10 @@ + + + + + diff --git a/inst/extdata/schemas/19115/-3/mas/.DS_Store b/inst/extdata/schemas/19115/-3/mas/.DS_Store new file mode 100644 index 00000000..33f77d08 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mas/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mas/1.0/applicationSchema.xsd b/inst/extdata/schemas/19115/-3/mas/1.0/applicationSchema.xsd new file mode 100644 index 00000000..c674a560 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mas/1.0/applicationSchema.xsd @@ -0,0 +1,61 @@ + + + + + + + + information about the application schema used to build the dataset + + + + + + + + + name of the application schema used + + + + + identification of the schema language used + + + + + formal language used in Application Schema + + + + + full application schema given as an ASCII file + + + + + full application schema given as a graphics file + + + + + full application schema given as a software development file + + + + + software dependent format used for the application schema software dependent file + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mas/1.0/mas.xsd b/inst/extdata/schemas/19115/-3/mas/1.0/mas.xsd new file mode 100644 index 00000000..9ba0d4ce --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mas/1.0/mas.xsd @@ -0,0 +1,9 @@ + + + Namespace for XML elements <font color="#1f497d">to specify the application schema associated with a resource</font> + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mcc/.DS_Store b/inst/extdata/schemas/19115/-3/mcc/.DS_Store new file mode 100644 index 00000000..01e8ff08 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mcc/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mcc/1.0/AbstractCommonClasses.xsd b/inst/extdata/schemas/19115/-3/mcc/1.0/AbstractCommonClasses.xsd new file mode 100644 index 00000000..8719a3d0 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mcc/1.0/AbstractCommonClasses.xsd @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <ul> <li></li> </ul> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mcc/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mcc/1.0/codelists.xml new file mode 100644 index 00000000..4cb23d3e --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mcc/1.0/codelists.xml @@ -0,0 +1,880 @@ + + + + + Codelists from the Metadata Common Classes (mcc) Namespace + + + Codelists from the Metadata Common Classes (mcc) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_ProgressCode + + + MD_ProgressCode + + + status of the resource + + + status of the resource + + + + + completed + + + completed + + + has been completed + + + has been completed + + + + + + + historicalArchive + + + historicalArchive + + + stored in an offline storage facility + + + stored in an offline storage facility + + + + + + + obsolete + + + obsolete + + + no longer relevant + + + no longer relevant + + + + + + + onGoing + + + onGoing + + + continually being updated + + + continually being updated + + + + + + + planned + + + planned + + + fixed date has been established upon or by which the resource will be created or updated + + + fixed date has been established upon or by which the resource will be created or updated + + + + + + + required + + + required + + + needs to be generated or updated + + + needs to be generated or updated + + + + + + + underDevelopment + + + underDevelopment + + + currently in the process of being created + + + currently in the process of being created + + + + + + + final + + + final + + + progress concluded and no changes will be accepted + + + progress concluded and no changes will be accepted + + + + + + + pending + + + pending + + + committed to, but not yet addressed + + + committed to, but not yet addressed + + + + + + + retired + + + retired + + + item is no longer recommended for use. It has not been superseded by another item + + + item is no longer recommended for use. It has not been superseded by another item + + + + + + + superseded + + + superseded + + + replaced by new + + + replaced by new + + + + + + + tentative + + + tentative + + + provisional changes likely before resource becomes final or complete + + + provisional changes likely before resource becomes final or complete + + + + + + + valid + + + valid + + + acceptable under specific conditions + + + acceptable under specific conditions + + + + + + + accepted + + + accepted + + + agreed to by sponsor + + + agreed to by sponsor + + + + + + + notAccepted + + + notAccepted + + + rejected by sponsor + + + rejected by sponsor + + + + + + + withdrawn + + + withdrawn + + + removed from consideration + + + removed from consideration + + + + + + + proposed + + + proposed + + + suggested that development needs to be undertaken + + + suggested that development needs to be undertaken + + + + + + + deprecated + + + deprecated + + + resource superseded and will become obsolete, use only for historical purposes + + + resource superseded and will become obsolete, use only for historical purposes + + + + + + + + + MD_ScopeCode + + + MD_ScopeCode + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + attribute + + + attribute + + + information applies to the attribute value + + + information applies to the attribute value + + + + + + + attributeType + + + attributeType + + + information applies to the characteristic of a feature + + + information applies to the characteristic of a feature + + + + + + + collectionHardware + + + collectionHardware + + + information applies to the collection hardware class + + + information applies to the collection hardware class + + + + + + + collectionSession + + + collectionSession + + + information applies to the collection session + + + information applies to the collection session + + + + + + + dataset + + + dataset + + + information applies to the dataset + + + information applies to the dataset + + + + + + + series + + + series + + + information applies to the series + + + information applies to the series + + + + + + + nonGeographicDataset + + + nonGeographicDataset + + + information applies to non-geographic data + + + information applies to non-geographic data + + + + + + + dimensionGroup + + + dimensionGroup + + + information applies to a dimension group + + + information applies to a dimension group + + + + + + + feature + + + feature + + + information applies to a feature + + + information applies to a feature + + + + + + + featureType + + + featureType + + + information applies to a feature type + + + information applies to a feature type + + + + + + + propertyType + + + propertyType + + + information applies to a property type + + + information applies to a property type + + + + + + + fieldSession + + + fieldSession + + + information applies to a field session + + + information applies to a field session + + + + + + + software + + + software + + + information applies to a computer program or routine + + + information applies to a computer program or routine + + + + + + + service + + + service + + + information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case + + + information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case + + + + + + + model + + + model + + + information applies to a copy or imitation of an existing or hypothetical object + + + information applies to a copy or imitation of an existing or hypothetical object + + + + + + + tile + + + tile + + + information applies to a tile, a spatial subset of geographic data + + + information applies to a tile, a spatial subset of geographic data + + + + + + + metadata + + + metadata + + + information applies to metadata + + + information applies to metadata + + + + + + + initiative + + + initiative + + + information applies to an initiative + + + information applies to an initiative + + + + + + + sample + + + sample + + + information applies to a sample + + + information applies to a sample + + + + + + + document + + + document + + + information applies to a document + + + information applies to a document + + + + + + + repository + + + repository + + + information applies to a repository + + + information applies to a repository + + + + + + + aggregate + + + aggregate + + + information applies to an aggregate resource + + + information applies to an aggregate resource + + + + + + + product + + + product + + + metadata describing an ISO 19131 data product specification + + + metadata describing an ISO 19131 data product specification + + + + + + + collection + + + collection + + + information applies to an unstructured set + + + information applies to an unstructured set + + + + + + + coverage + + + coverage + + + information applies to a coverage + + + information applies to a coverage + + + + + + + application + + + application + + + information resource hosted on a specific set of hardware and accessible over a network + + + information resource hosted on a specific set of hardware and accessible over a network + + + + + + + + + MD_SpatialRepresentationTypeCode + + + MD_SpatialRepresentationTypeCode + + + method used to represent geographic information in the resource + + + method used to represent geographic information in the resource + + + + + vector + + + vector + + + vector data are used to represent geographic data + + + vector data are used to represent geographic data + + + + + + + grid + + + grid + + + grid data are used to represent geographic data + + + grid data are used to represent geographic data + + + + + + + textTable + + + textTable + + + textual or tabular data are used to represent geographic data + + + textual or tabular data are used to represent geographic data + + + + + + + tin + + + tin + + + triangulated irregular network + + + triangulated irregular network + + + + + + + stereoModel + + + stereoModel + + + three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images + + + three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images + + + + + + + video + + + video + + + scene from a video recording + + + scene from a video recording + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mcc/1.0/commonClasses.xsd b/inst/extdata/schemas/19115/-3/mcc/1.0/commonClasses.xsd new file mode 100644 index 00000000..4b6bbc81 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mcc/1.0/commonClasses.xsd @@ -0,0 +1,220 @@ + + + + + + + graphic that provides an illustration of the dataset (should include a legend for the graphic, if applicable) + + + + + + + + + name of the file that contains a graphic that provides an illustration of the dataset + + + + + text description of the illustration + + + + + + restriction on access and/or use of browse graphic + + + + + link to browse graphic + + + + + + + + + + + + + + + + value uniquely identifying an object within a namespace + + + + + + + + + Citation for the code namespace and optionally the person or party responsible for maintenance of that namespace + + + + + alphanumeric value identifying an instance in the namespace e.g. EPSG::4326 + + + + + Identifier or namespace in which the code is valid + + + + + version identifier for the namespace + + + + + natural language description of the meaning of the code value E.G for codeSpace = EPSG, code = 4326: description = WGS-84" to "for codeSpace = EPSG, code = EPSG::4326: description = WGS-84 + + + + + + + + + + + + + + + + status of the resource + + + + + + + + + + + new: information about the scope of the resource + + + + + + + + + description of the scope + + + + + + + + + + + + + + + + + + class of information to which the referencing entity applies + + + + + + + + + + + description of the class of information covered by the information + + + + + + + + + instances of attribute types to which the information applies + + + + + instances of feature types to which the information applies + + + + + feature instances to which the information applies + + + + + attribute instances to which the information applies + + + + + dataset to which the information applies + + + + + class of information that does not fall into the other categories to which the information applies + + + + + + + + + + + + + + + + method used to represent geographic information in the resource + + + + + + + + + + + Uniform Resource Identifier (URI), is a compact string of characters used to identify or name a resource + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mcc/1.0/mcc.xsd b/inst/extdata/schemas/19115/-3/mcc/1.0/mcc.xsd new file mode 100644 index 00000000..3da89684 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mcc/1.0/mcc.xsd @@ -0,0 +1,8 @@ + + + Abstract classes for linking to elements in the metadata implementation from external schema to loosely couple the external schema for smoother handling of version changes in components. Classes used by all components in ISO19115 metadata application. + + + + + diff --git a/inst/extdata/schemas/19115/-3/mco/.DS_Store b/inst/extdata/schemas/19115/-3/mco/.DS_Store new file mode 100644 index 00000000..b519b03c Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mco/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mco/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mco/1.0/codelists.html new file mode 100644 index 00000000..9d27074f --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mco/1.0/codelists.html @@ -0,0 +1,294 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Constraints (mco) Namespace
Scope: Codelists related to Metadata for Constraints (mco) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 1.1
Date: 2017-09-10
Number of CodeLists: 2
Number of items: 26 +
+

Codelists

+ MD_ClassificationCode + : +

Description: + name of the handling restrictions on the resource +
CodeSpace: http://standards.iso.org/iso/19115/-3/mco/1.0
Number of items: 9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ unclassified + + + available for general disclosure + +
+ restricted + + + not for general disclosure + +
+ confidential + + + available for someone who can be entrusted with information + +
+ secret + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + +
+ topSecret + + + of the highest secrecy + +
+ SBU + + + although unclassified, requires strict controls over its distribution + +
+ forOfficialUseOnly + + + unclassified information that is to be used only for official purposes determined by the designating body + +
+ protected + + + compromise of the information could cause damage + +
+ limitedDistribution + + + desimination limited by designating body + +
top

+ MD_RestrictionCode + : +

Description: + limitation(s) placed upon the access or use of the data +
CodeSpace: http://standards.iso.org/iso/19115/-3/mco/1.0
Number of items: 17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ copyright + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, + or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, + distributor + +
+ patent + + + government has granted exclusive right to make, sell, use or license an invention or discovery + +
+ patentPending + + + produced or sold information awaiting a patent + +
+ trademark + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner + or manufacturer + +
+ licence + + + formal permission to do something + +
+ intellectualPropertyRights + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + +
+ restricted + + + withheld from general circulation or disclosure + +
+ otherRestrictions + + + limitation not listed + +
+ unrestricted + + + no constraints exist + +
+ licenceUnrestricted + + + formal permission not required to use the resource + +
+ licenceEndUser + + + formal permission required for a person or an entity to use the resource and that may differ from the person that orders or + purchases it + +
+ licenceDistributor + + + formal permission required for a person or an entity to commercialize or distribute the resource + +
+ private + + + protects rights of individual or organisations from observation, intrusion, or attention of others + +
+ statutory + + + prescribed by law + +
+ confidential + + + not available to the public contains information that could be prejudicial to a commercial, industrial, or national interest + +
+ SBU + + + although unclassified, requires strict controls over its distribution. + +
+ in-confidence + + + with trust + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mco/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mco/1.0/codelists.xml new file mode 100644 index 00000000..f898c716 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mco/1.0/codelists.xml @@ -0,0 +1,482 @@ + + + + + Codelists from the Metadata for Constraints (mco) Namespace + + + Codelists related to Metadata for Constraints (mco) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_ClassificationCode + + + MD_ClassificationCode + + + name of the handling restrictions on the resource + + + name of the handling restrictions on the resource + + + + + unclassified + + + unclassified + + + available for general disclosure + + + available for general disclosure + + + + + + + restricted + + + restricted + + + not for general disclosure + + + not for general disclosure + + + + + + + confidential + + + confidential + + + available for someone who can be entrusted with information + + + available for someone who can be entrusted with information + + + + + + + secret + + + secret + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + + + + + + + topSecret + + + topSecret + + + of the highest secrecy + + + of the highest secrecy + + + + + + + SBU + + + SBU + + + although unclassified, requires strict controls over its distribution + + + although unclassified, requires strict controls over its distribution + + + + + + + forOfficialUseOnly + + + forOfficialUseOnly + + + unclassified information that is to be used only for official purposes determined by the designating body + + + unclassified information that is to be used only for official purposes determined by the designating body + + + + + + + protected + + + protected + + + compromise of the information could cause damage + + + compromise of the information could cause damage + + + + + + + limitedDistribution + + + limitedDistribution + + + desimination limited by designating body + + + desimination limited by designating body + + + + + + + + + MD_RestrictionCode + + + MD_RestrictionCode + + + limitation(s) placed upon the access or use of the data + + + limitation(s) placed upon the access or use of the data + + + + + copyright + + + copyright + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor + + + + + + + patent + + + patent + + + government has granted exclusive right to make, sell, use or license an invention or discovery + + + government has granted exclusive right to make, sell, use or license an invention or discovery + + + + + + + patentPending + + + patentPending + + + produced or sold information awaiting a patent + + + produced or sold information awaiting a patent + + + + + + + trademark + + + trademark + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner or manufacturer + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner or manufacturer + + + + + + + licence + + + licence + + + formal permission to do something + + + formal permission to do something + + + + + + + intellectualPropertyRights + + + intellectualPropertyRights + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + + + + + + + restricted + + + restricted + + + withheld from general circulation or disclosure + + + withheld from general circulation or disclosure + + + + + + + otherRestrictions + + + otherRestrictions + + + limitation not listed + + + limitation not listed + + + + + + + unrestricted + + + unrestricted + + + no constraints exist + + + no constraints exist + + + + + + + licenceUnrestricted + + + licenceUnrestricted + + + formal permission not required to use the resource + + + formal permission not required to use the resource + + + + + + + licenceEndUser + + + licenceEndUser + + + formal permission required for a person or an entity to use the resource and that may differ from the person that orders or purchases it + + + formal permission required for a person or an entity to use the resource and that may differ from the person that orders or purchases it + + + + + + + licenceDistributor + + + licenceDistributor + + + formal permission required for a person or an entity to commercialize or distribute the resource + + + formal permission required for a person or an entity to commercialize or distribute the resource + + + + + + + private + + + private + + + protects rights of individual or organisations from observation, intrusion, or attention of others + + + protects rights of individual or organisations from observation, intrusion, or attention of others + + + + + + + statutory + + + statutory + + + prescribed by law + + + prescribed by law + + + + + + + confidential + + + confidential + + + not available to the public contains information that could be prejudicial to a commercial, industrial, or national interest + + + not available to the public contains information that could be prejudicial to a commercial, industrial, or national interest + + + + + + + SBU + + + SBU + + + although unclassified, requires strict controls over its distribution. + + + although unclassified, requires strict controls over its distribution. + + + + + + + in-confidence + + + in-confidence + + + with trust + + + with trust + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mco/1.0/constraints.xsd b/inst/extdata/schemas/19115/-3/mco/1.0/constraints.xsd new file mode 100644 index 00000000..f23c5cb6 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mco/1.0/constraints.xsd @@ -0,0 +1,188 @@ + + + + + + + + name of the handling restrictions on the resource + + + + + + + + + + + restrictions on the access and use of a resource or metadata + + + + + + + + + limitation affecting the fitness for use of the resource or metadata. Example, "not to be used for navigation" + + + + + Spatial and temporal extent of the application of the constraint restrictions + + + + + graphic /symbol indicating the constraint Eg. + + + + + citation/URL for the limitation or constraint, e.g. copyright statement, license agreement, etc + + + + + information concerning the parties to whom the resource can or cannot be released and the party responsible for determining the releasibility + + + + + party responsible for the resource constraints + + + + + + + + + + + + + + + + restrictions and legal prerequisites for accessing and using the resource or metadata + + + + + + + + + access constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource or metadata + + + + + constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations or warnings on using the resource or metadata + + + + + other restrictions and legal prerequisites for accessing and using the resource or metadata + + + + + + + + + + + + + + + + state, nation or organization to which resource can be released to e.g. NATO unclassified releasable to PfP + + + + + + + + + party responsible for the Release statement + + + + + release statement + + + + + component in determining releasability + + + + + + + + + + + + + + + + limitation(s) placed upon the access or use of the data + + + + + + + + + + + handling restrictions imposed on the resource or metadata for national security or similar security concerns + + + + + + + + + name of the handling restrictions on the resource or metadata + + + + + explanation of the application of the legal constraints or other restrictions and legal prerequisites for obtaining and using the resource or metadata + + + + + name of the classification system + + + + + additional information about the restrictions on handling the resource or metadata + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mco/1.0/mco.sch b/inst/extdata/schemas/19115/-3/mco/1.0/mco.sch new file mode 100644 index 00000000..26f5720c --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mco/1.0/mco.sch @@ -0,0 +1,221 @@ + + + + + + + + + The releasabilty does not define addresse or statement. + + La possibilité de divulgation ne définit pas de + destinataire ou d'indication. + + + The releasability addressee is defined: + "". + + + Le destinataire dans le cas de possibilité de divulgation + est défini "". + + + + The releasability statement is + "". + + + L'indication concernant la possibilité de divulgation est + "". + + + + + Releasability MUST + specified an addresse or a statement + La possibilité de divulgation + DOIT définir un destinataire ou une indication + + + + + + + + + + + + + + + + + + + + + + + The legal constraint is incomplete. + + La contrainte légale est incomplète. + + + The legal constraint is complete. + + + La contrainte légale est complète. + + + + + + Legal constraint MUST + specified an access, use or other constraint or + use limitation or releasability + Une contrainte légale DOIT + définir un type de contrainte (d'accès, d'utilisation ou autre) + ou bien une limite d'utilisation ou une possibilité de divulgation + + + + + + + + + + + + + + + + + + + + + + + + + + The legal constraint does not specified other constraints + while access and use constraint is set to other restriction. + + La contrainte légale ne précise pas les autres contraintes + bien que les contraintes d'accès ou d'usage indiquent + que d'autres restrictions s'appliquent. + + + The legal constraint other constraints is + "". + + + Les autres contraintes de la contrainte légale sont + "". + + + + + + Legal constraint defining + other restrictions for access or use constraint MUST + specified other constraint. + Une contrainte légale indiquant + d'autres restrictions d'utilisation ou d'accès DOIT + préciser ces autres restrictions + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mco/1.0/mco.xsd b/inst/extdata/schemas/19115/-3/mco/1.0/mco.xsd new file mode 100644 index 00000000..52404d25 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mco/1.0/mco.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements <font color="#1f497d">to specify constraints on access to or usage of a resource</font> + + + + + diff --git a/inst/extdata/schemas/19115/-3/mda/.DS_Store b/inst/extdata/schemas/19115/-3/mda/.DS_Store new file mode 100644 index 00000000..4b956155 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mda/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mda/1.0/mda.xsd b/inst/extdata/schemas/19115/-3/mda/1.0/mda.xsd new file mode 100644 index 00000000..b133837b --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mda/1.0/mda.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements <font color="#1f497d">for metadata applications describing aggregated resources with linked metadata records</font> + + + + + diff --git a/inst/extdata/schemas/19115/-3/mda/1.0/metadataApplication.xsd b/inst/extdata/schemas/19115/-3/mda/1.0/metadataApplication.xsd new file mode 100644 index 00000000..ae523e17 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mda/1.0/metadataApplication.xsd @@ -0,0 +1,200 @@ + + + + + + + + collection of resources + + + + + + + + + + + + + + + + + + + + + identifiable collection of data + + + + + + + + + + + + + + + + + + + collection of associated resources related by their participation in a common initiative + + + + + + + + + + + + + + + + + + + collection of resource associated through inspecified means + + + + + + + + + + + + + + + + + + + collection of associated resources produced from the same sensor platform + + + + + + + + + + + + + + + + + + + collection of associated resources produced to the same production specification + + + + + + + + + + + + + + + + + + + an identifiable asset or means that fulfils a requirement + + + + + + + + + + + + + + + + + + + + + collection of associated resources produced by the same sensor + + + + + + + + + + + + + + + + + + + collection of resource related by a common heritage adhering to a common specification + + + + + + + + + + + + + + + + + + + resource is a service + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mda/2.0/mda.xsd b/inst/extdata/schemas/19115/-3/mda/2.0/mda.xsd new file mode 100644 index 00000000..886f73a8 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mda/2.0/mda.xsd @@ -0,0 +1,11 @@ + + + + Namespace for XML elements <font color="#1f497d">for metadata applications describing aggregated resources with linked metadata records</font> + + + + + diff --git a/inst/extdata/schemas/19115/-3/mda/2.0/metadataApplication.xsd b/inst/extdata/schemas/19115/-3/mda/2.0/metadataApplication.xsd new file mode 100644 index 00000000..2e7a1d4b --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mda/2.0/metadataApplication.xsd @@ -0,0 +1,203 @@ + + + + + + + + + collection of resources + + + + + + + + + + + + + + + + + + + + + identifiable collection of data + + + + + + + + + + + + + + + + + + + collection of associated resources related by their participation in a common initiative + + + + + + + + + + + + + + + + + + + collection of resource associated through inspecified means + + + + + + + + + + + + + + + + + + + collection of associated resources produced from the same sensor platform + + + + + + + + + + + + + + + + + + + collection of associated resources produced to the same production specification + + + + + + + + + + + + + + + + + + + an identifiable asset or means that fulfils a requirement + + + + + + + + + + + + + + + + + + + + + collection of associated resources produced by the same sensor + + + + + + + + + + + + + + + + + + + collection of resource related by a common heritage adhering to a common specification + + + + + + + + + + + + + + + + + + + resource is a service + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdb/.DS_Store b/inst/extdata/schemas/19115/-3/mdb/.DS_Store new file mode 100644 index 00000000..ef2eb894 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mdb/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mdb/1.0/.DS_Store b/inst/extdata/schemas/19115/-3/mdb/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mdb/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mdb/1.0/mdb.sch b/inst/extdata/schemas/19115/-3/mdb/1.0/mdb.sch new file mode 100644 index 00000000..84921d17 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdb/1.0/mdb.sch @@ -0,0 +1,264 @@ + + + + + + + + + + + + + The root element must be MD_Metadata. + Modifier l'élément racine du document pour que ce + soit un élément MD_Metadata. + + Root element MD_Metadata found. + Élément racine MD_Metadata défini. + + + + Metadata document root element + Élément racine du document + + A metadata instance document conforming to + this specification SHALL have a root MD_Metadata element + defined in the http://standards.iso.org/iso/19115/-3/mdb/1.0 namespace. + Une fiche de métadonnées conforme au standard + ISO19115-1 DOIT avoir un élément racine MD_Metadata (défini dans l'espace + de nommage http://standards.iso.org/iso/19115/-3/mdb/1.0). + + + + + + + + + + + + + + + + The default locale character encoding is "UTF-8". Current value is + "". + L'encodage ne doit pas être vide. La valeur par défaut est + "UTF-8". La valeur actuelle est "". + + + The characeter encoding is ". + + L'encodage est ". + + + + + Default locale + Langue du document + + The default locale MUST be documented if + not defined by the encoding. The default value for the character + encoding is "UTF-8". + La langue doit être documentée + si non définie par l'encodage. L'encodage par défaut doit être "UTF-8". + + + + + + + + + + + + + + + + + + + + + Specify a name for the metadata scope + (required if the scope code is not "dataset", in that case + ""). + Préciser la description du domaine d'application + (car le document décrit une ressource qui n'est pas un "jeu de données", + la ressource est de type ""). + + + Scope name + "" + is defined for resource with type "". + + La description du domaine d'application + "" + est renseignée pour la ressource de type "". + + + + + Metadata scope Name + Description du domaine d'application + + If a MD_MetadataScope element is present, + the name property MUST have a value if resourceScope is not equal to "dataset" + Si un élément domaine d'application (MD_MetadataScope) + est défini, sa description (name) DOIT avoir une valeur + si ce domaine n'est pas "jeu de données" (ie. "dataset"). + + + + + + + + + + + + + + + + + + + + + Specify a creation date for the metadata record + in the metadata section. + Définir une date de création pour le document + dans la section sur les métadonnées. + + + Metadata creation date: . + + + Date de création du document : . + + + + + Metadata create date + Date de création du document + + A dateInfo property value with data type = "creation" + MUST be present in every MD_Metadata instance. + Tout document DOIT avoir une date de création + définie (en utilisant un élément dateInfo avec un type de date "creation"). + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdb/1.0/mdb.xsd b/inst/extdata/schemas/19115/-3/mdb/1.0/mdb.xsd new file mode 100644 index 00000000..b38a9aab --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdb/1.0/mdb.xsd @@ -0,0 +1,14 @@ + + + Wrapper namespace to support Catalog Service implementations + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdb/1.0/metadataBase.xsd b/inst/extdata/schemas/19115/-3/mdb/1.0/metadataBase.xsd new file mode 100644 index 00000000..024e52e2 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdb/1.0/metadataBase.xsd @@ -0,0 +1,98 @@ + + + + + + + + + + root entity which defines metadata about a resource or resources + + + + + + + + + + Provides information about an alternatively used localized character string for a linguistic extension + + + + + Identifier and onlineResource for a parent metadata record + + + + + + party responsible for the metadata information + + + + + Date(s) other than creation dateEG: expiry date + + + + + Citation for the standards to which the metadata conforms + + + + + + unique Identifier and onlineResource for alternative metadata + + + + + + online location where the metadata is available + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdb/2.0/mdb.xsd b/inst/extdata/schemas/19115/-3/mdb/2.0/mdb.xsd new file mode 100644 index 00000000..5af02110 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdb/2.0/mdb.xsd @@ -0,0 +1,20 @@ + + + + Wrapper namespace to support Catalog Service implementations + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdb/2.0/metadataBase.xsd b/inst/extdata/schemas/19115/-3/mdb/2.0/metadataBase.xsd new file mode 100644 index 00000000..130b29f2 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdb/2.0/metadataBase.xsd @@ -0,0 +1,102 @@ + + + + + + + + + + + root entity which defines metadata about a resource or resources + + + + + + + + + + Provides information about an alternatively used localized character string for a linguistic extension + + + + + Identifier and onlineResource for a parent metadata record + + + + + + party responsible for the metadata information + + + + + Date(s) other than creation dateEG: expiry date + + + + + Citation for the standards to which the metadata conforms + + + + + + unique Identifier and onlineResource for alternative metadata + + + + + + online location where the metadata is available + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mds/.DS_Store b/inst/extdata/schemas/19115/-3/mds/.DS_Store new file mode 100644 index 00000000..4b956155 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mds/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mds/1.0/mds.xsd b/inst/extdata/schemas/19115/-3/mds/1.0/mds.xsd new file mode 100644 index 00000000..f0e2d406 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mds/1.0/mds.xsd @@ -0,0 +1,22 @@ + + + Namespace <font color="#1f497d">that imports all necessary namespaces to implement a complete metadata record for a dataset or service, not including extended data types or user-defined extensions. </font>Wrapper namespace to support Catalog Service implementations. + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mds/1.0/metadataDataServices.xsd b/inst/extdata/schemas/19115/-3/mds/1.0/metadataDataServices.xsd new file mode 100644 index 00000000..e4de87d8 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mds/1.0/metadataDataServices.xsd @@ -0,0 +1,4 @@ + + + + diff --git a/inst/extdata/schemas/19115/-3/mds/2.0/mds.xsd b/inst/extdata/schemas/19115/-3/mds/2.0/mds.xsd new file mode 100644 index 00000000..3bdbf8d3 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mds/2.0/mds.xsd @@ -0,0 +1,22 @@ + + + Namespace <font color="#1f497d">that imports all necessary namespaces to implement a complete metadata record for a dataset or service, not including extended data types or user-defined extensions. </font>Wrapper namespace to support Catalog Service implementations. + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mds/2.0/metadataDataServices.xsd b/inst/extdata/schemas/19115/-3/mds/2.0/metadataDataServices.xsd new file mode 100644 index 00000000..4e02bf1b --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mds/2.0/metadataDataServices.xsd @@ -0,0 +1,4 @@ + + + + diff --git a/inst/extdata/schemas/19115/-3/mdt/.DS_Store b/inst/extdata/schemas/19115/-3/mdt/.DS_Store new file mode 100644 index 00000000..e7f6f1f9 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mdt/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mdt/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mdt/1.0/codelists.html new file mode 100644 index 00000000..2151318f --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/1.0/codelists.html @@ -0,0 +1,137 @@ + + + + + Codelists from the Metadata for Data Transfer (mdt) Namespace + + + +

ISO 19115-3 Codelist Report

+

+ Codelists from the Metadata for Data Transfer (mdt) Namespace + +

+ + + + + + + + + + +
Scope + Codelists from the Metadata for Data Transfer (mdt) Namespace + +
Field of Application + ISO TC211 Metadata Standards + +
Version (Date) + 1.0 + () +
+

+ MX_ScopeCode + ( + MX_ScopeCode + ): +

Description: + class of information to which the referencing entity applies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ MX_ScopeCode_initiative + + + The referencing entity applies to a transfer aggregate which was originally identified + as an initiative (DS_Initiative) + +
+ MX_ScopeCode_stereoMate + + + The referencing entity applies to a transfer aggregate which was originally identified + as a stereo mate (DS_StereoMate) + +
+ MX_ScopeCode_sensor + + + The referencing entity applies to a transfer aggregate which was originally identified + as a sensor (DS_Sensor) + +
+ MX_ScopeCode_platformSeries + + + The referencing entity applies to a transfer aggregate which was originally identified + as a platform series (DS_PlatformSeries) + +
+ MX_ScopeCode_sensorSeries + + + The referencing entity applies to a transfer aggregate which was originally identified + as a sensor series (DS_SensorSeries) + +
+ MX_ScopeCode_productionSeries + + + The referencing entity applies to a transfer aggregate which was originally identified + as a sensor series (DS_SensorSeries) + +
+ MX_ScopeCode_transferAggregate + + + The referencing entity applies to a transfer aggregate which has no existence outside + of the transfer context + +
+ MX_ScopeCode_otherAggregate + + + The referencing entity applies to a transfer aggregate which has an existence + outside of the transfer context, but which does not pertains to a specific aggregate + type. + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2015-04-17 + \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mdt/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mdt/1.0/codelists.xml new file mode 100644 index 00000000..5d12a96b --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/1.0/codelists.xml @@ -0,0 +1,134 @@ + + + + + Codelists from the Metadata for Data Transfer (mdt) Namespace + + + Codelists from the Metadata for Data Transfer (mdt) Namespace + + + ISO TC211 Metadata Standards + + + 1.0 + + + 2015-04-18 + + + + + eng + + + UTF-8 + + + + + + + + + MX_ScopeCode + + + MX_ScopeCode + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + MX_ScopeCode_initiative + + + The referencing entity applies to a transfer aggregate which was originally identified as an initiative (DS_Initiative) + + + + + + + MX_ScopeCode_stereoMate + + + The referencing entity applies to a transfer aggregate which was originally identified as a stereo mate (DS_StereoMate) + + + + + + + MX_ScopeCode_sensor + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor (DS_Sensor) + + + + + + + MX_ScopeCode_platformSeries + + + The referencing entity applies to a transfer aggregate which was originally identified as a platform series (DS_PlatformSeries) + + + + + + + MX_ScopeCode_sensorSeries + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor series (DS_SensorSeries) + + + + + + + MX_ScopeCode_productionSeries + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor series (DS_SensorSeries) + + + + + + + MX_ScopeCode_transferAggregate + + + The referencing entity applies to a transfer aggregate which has no existence outside of the transfer context + + + + + + + MX_ScopeCode_otherAggregate + + + The referencing entity applies to a transfer aggregate which has an existence + outside of the transfer context, but which does not pertains to a specific aggregate + type. + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdt/1.0/mdt.xsd b/inst/extdata/schemas/19115/-3/mdt/1.0/mdt.xsd new file mode 100644 index 00000000..25f2c47e --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/1.0/mdt.xsd @@ -0,0 +1,13 @@ + + + + Namespace for XML elements <font color="#1f497d">required to implement data transfer packages with bundled metadata, data files, and registries defining package content</font>. + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdt/1.0/metadataTransfer.xsd b/inst/extdata/schemas/19115/-3/mdt/1.0/metadataTransfer.xsd new file mode 100644 index 00000000..2990701f --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/1.0/metadataTransfer.xsd @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdt/2.0/codelists.html b/inst/extdata/schemas/19115/-3/mdt/2.0/codelists.html new file mode 100644 index 00000000..47ea1a94 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/2.0/codelists.html @@ -0,0 +1,110 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, + and the values and definitions of the codes. +

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Data Transfer (mdt) Namespace
Scope: Codelists from the Metadata for Data Transfer (mdt) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 1.0
Date: 2015-04-18
Number of CodeLists: 1
Number of items: 8 +
+

Codelists

+ MX_ScopeCode + : +

Description: + class of information to which the referencing entity applies +
CodeSpace: http://standards.iso.org/iso/19115
Number of items: 8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ MX_ScopeCode_initiative + + + The referencing entity applies to a transfer aggregate which was originally identified + as an initiative (DS_Initiative) + +
+ MX_ScopeCode_stereoMate + + + The referencing entity applies to a transfer aggregate which was originally identified + as a stereo mate (DS_StereoMate) + +
+ MX_ScopeCode_sensor + + + The referencing entity applies to a transfer aggregate which was originally identified + as a sensor (DS_Sensor) + +
+ MX_ScopeCode_platformSeries + + + The referencing entity applies to a transfer aggregate which was originally identified + as a platform series (DS_PlatformSeries) + +
+ MX_ScopeCode_sensorSeries + + + The referencing entity applies to a transfer aggregate which was originally identified + as a sensor series (DS_SensorSeries) + +
+ MX_ScopeCode_productionSeries + + + The referencing entity applies to a transfer aggregate which was originally identified + as a sensor series (DS_SensorSeries) + +
+ MX_ScopeCode_transferAggregate + + + The referencing entity applies to a transfer aggregate which has no existence outside + of the transfer context + +
+ MX_ScopeCode_otherAggregate + + + The referencing entity applies to a transfer aggregate which has an existence + outside of the transfer context, but which does not pertains to a specific aggregate + type. + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mdt/2.0/codelists.xml b/inst/extdata/schemas/19115/-3/mdt/2.0/codelists.xml new file mode 100644 index 00000000..5d12a96b --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/2.0/codelists.xml @@ -0,0 +1,134 @@ + + + + + Codelists from the Metadata for Data Transfer (mdt) Namespace + + + Codelists from the Metadata for Data Transfer (mdt) Namespace + + + ISO TC211 Metadata Standards + + + 1.0 + + + 2015-04-18 + + + + + eng + + + UTF-8 + + + + + + + + + MX_ScopeCode + + + MX_ScopeCode + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + MX_ScopeCode_initiative + + + The referencing entity applies to a transfer aggregate which was originally identified as an initiative (DS_Initiative) + + + + + + + MX_ScopeCode_stereoMate + + + The referencing entity applies to a transfer aggregate which was originally identified as a stereo mate (DS_StereoMate) + + + + + + + MX_ScopeCode_sensor + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor (DS_Sensor) + + + + + + + MX_ScopeCode_platformSeries + + + The referencing entity applies to a transfer aggregate which was originally identified as a platform series (DS_PlatformSeries) + + + + + + + MX_ScopeCode_sensorSeries + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor series (DS_SensorSeries) + + + + + + + MX_ScopeCode_productionSeries + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor series (DS_SensorSeries) + + + + + + + MX_ScopeCode_transferAggregate + + + The referencing entity applies to a transfer aggregate which has no existence outside of the transfer context + + + + + + + MX_ScopeCode_otherAggregate + + + The referencing entity applies to a transfer aggregate which has an existence + outside of the transfer context, but which does not pertains to a specific aggregate + type. + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdt/2.0/mdt.xsd b/inst/extdata/schemas/19115/-3/mdt/2.0/mdt.xsd new file mode 100644 index 00000000..75159a99 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/2.0/mdt.xsd @@ -0,0 +1,14 @@ + + + + Namespace for XML elements <font color="#1f497d">required to implement data transfer packages with bundled metadata, data files, and registries defining package content</font>. + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mdt/2.0/metadataTransfer.xsd b/inst/extdata/schemas/19115/-3/mdt/2.0/metadataTransfer.xsd new file mode 100644 index 00000000..f9503173 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mdt/2.0/metadataTransfer.xsd @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mex/.DS_Store b/inst/extdata/schemas/19115/-3/mex/.DS_Store new file mode 100644 index 00000000..b519b03c Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mex/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mex/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mex/1.0/codelists.html new file mode 100644 index 00000000..4609e2e8 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mex/1.0/codelists.html @@ -0,0 +1,212 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata with Schema Extensions (mex) Namespace
Scope: Codelists from the Metadata with Schema Extensions (mex) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 1.1
Date: 2017-09-10
Number of CodeLists: 2
Number of items: 18 +
+

Codelists

+ MD_DatatypeCode + : +

Description: + datatype of element or entity +
CodeSpace: http://standards.iso.org/iso/19115/-3/mex/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ class + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behaviour + +
+ codelist + + + flexible enumeration useful for expressing a long list of values, can be extended + +
+ enumeration + + + data type whose instances form a list of named literal values, not extendable + +
+ codelistElement + + + permissible value for a codelist or enumeration + +
+ abstractClass + + + class that cannot be directly instantiated + +
+ aggregateClass + + + class that is composed of classes it is connected to by an aggregate relationship + +
+ specifiedClass + + + subclass that may be substituted for its superclass + +
+ datatypeClass + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, + encoding or persistent storage + +
+ interfaceClass + + + named set of operations that characterize the behaviour of an element + +
+ unionClass + + + class describing a selection of one of the specified types + +
+ metaClass + + + class whose instances are classes + +
+ typeClass + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A + type may have attributes and associations + +
+ characterString + + + textual information + +
+ integer + + + numerical field + +
+ association + + + semantic relationship between two classes that involves connections among their instances + +
top

+ MD_ObligationCode + : +

Description: + obligation of the element or entity +
CodeSpace: http://standards.iso.org/iso/19115/-3/mex/1.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ mandatory + + + element is always required + +
+ optional + + + element is not required + +
+ conditional + + + element is required when a specific condition is met + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mex/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mex/1.0/codelists.xml new file mode 100644 index 00000000..bc701337 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mex/1.0/codelists.xml @@ -0,0 +1,354 @@ + + + + + Codelists from the Metadata with Schema Extensions (mex) Namespace + + + Codelists from the Metadata with Schema Extensions (mex) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_DatatypeCode + + + MD_DatatypeCode + + + datatype of element or entity + + + datatype of element or entity + + + + + class + + + class + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behaviour + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behaviour + + + + + + + codelist + + + codelist + + + flexible enumeration useful for expressing a long list of values, can be extended + + + flexible enumeration useful for expressing a long list of values, can be extended + + + + + + + enumeration + + + enumeration + + + data type whose instances form a list of named literal values, not extendable + + + data type whose instances form a list of named literal values, not extendable + + + + + + + codelistElement + + + codelistElement + + + permissible value for a codelist or enumeration + + + permissible value for a codelist or enumeration + + + + + + + abstractClass + + + abstractClass + + + class that cannot be directly instantiated + + + class that cannot be directly instantiated + + + + + + + aggregateClass + + + aggregateClass + + + class that is composed of classes it is connected to by an aggregate relationship + + + class that is composed of classes it is connected to by an aggregate relationship + + + + + + + specifiedClass + + + specifiedClass + + + subclass that may be substituted for its superclass + + + subclass that may be substituted for its superclass + + + + + + + datatypeClass + + + datatypeClass + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, encoding or persistent storage + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, encoding or persistent storage + + + + + + + interfaceClass + + + interfaceClass + + + named set of operations that characterize the behaviour of an element + + + named set of operations that characterize the behaviour of an element + + + + + + + unionClass + + + unionClass + + + class describing a selection of one of the specified types + + + class describing a selection of one of the specified types + + + + + + + metaClass + + + metaClass + + + class whose instances are classes + + + class whose instances are classes + + + + + + + typeClass + + + typeClass + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A type may have attributes and associations + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A type may have attributes and associations + + + + + + + characterString + + + characterString + + + textual information + + + textual information + + + + + + + integer + + + integer + + + numerical field + + + numerical field + + + + + + + association + + + association + + + semantic relationship between two classes that involves connections among their instances + + + semantic relationship between two classes that involves connections among their instances + + + + + + + + + MD_ObligationCode + + + MD_ObligationCode + + + obligation of the element or entity + + + obligation of the element or entity + + + + + mandatory + + + mandatory + + + element is always required + + + element is always required + + + + + + + optional + + + optional + + + element is not required + + + element is not required + + + + + + + conditional + + + conditional + + + element is required when a specific condition is met + + + element is required when a specific condition is met + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mex/1.0/metadataExtension.xsd b/inst/extdata/schemas/19115/-3/mex/1.0/metadataExtension.xsd new file mode 100644 index 00000000..76cbb910 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mex/1.0/metadataExtension.xsd @@ -0,0 +1,156 @@ + + + Method used to represent geographic information in the dataset + + + + + + + + datatype of element or entity + + + + + + + + + + + new metadata element, not found in ISO 19115, which is required to describe geographic data + + + + + + + + + name of the extended metadata element + + + + + definition of the extended element + + + + + obligation of the extended element + + + + + condition under which the extended element is mandatory + + + + + code which identifies the kind of value provided in the extended element + + + + + maximum occurrence of the extended element + + + + + valid values that can be assigned to the extended element + + + + + name of the metadata entity(s) under which this extended metadata element may appear. The name(s) may be standard metadata element(s) or other extended metadata element(s) + + + + + specifies how the extended element relates to other existing elements and entities + + + + + reason for creating the extended element + + + + + name of the person or organisation creating the extended element + + + + + + + + + + + + + + + + + + information describing metadata extensions + + + + + + + + + information about on-line sources containing the community profile name and the extended metadata elements. Information for all new metadata elements + + + + + + + + + + + + + + + + + obligation of the element or entity + + + + + obligation of the element or entity + + + + + element is always required + + + + + element is not required + + + + + element is required when a specific condition is met + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mex/1.0/mex.sch b/inst/extdata/schemas/19115/-3/mex/1.0/mex.sch new file mode 100644 index 00000000..26a5b478 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mex/1.0/mex.sch @@ -0,0 +1,314 @@ + + + + + + + + + + + + + + + Extended element information "" + of type "" + does not specified max occurence. + + L'élément d'extension "" + de type "" + ne précise pas le nombre d'occurences maximum. + + + Extended element information "" + of type "" + has max occurence: "". + + + L'élément d'extension "" + de type "" + a pour nombre d'occurences maximum : "". + + + + + + Extended element information "" + of type "" + does not specified domain value. + + L'élément d'extension "" + de type "" + ne précise pas la valeur du domaine. + + + Extended element information "" + of type "" + has domain value: "". + + + L'élément d'extension "" + de type "" + a pour valeur du domaine : "". + + + + + Extended element information + which are not codelist, enumeration or codelistElement + MUST specified max occurence and domain value + Un élément d'extension qui n'est + ni une codelist, ni une énumération, ni un élément de codelist + DOIT préciser le nombre maximum d'occurences + ainsi que la valeur du domaine + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The conditional extended element "" + does not specified the condition. + + L'élément d'extension conditionnel "" + ne précise pas les termes de la condition. + + + The conditional extended element "" + has for condition: "". + + + L'élément d'extension conditionnel "" + a pour condition : "". + + + + + + Extended element information + which are conditional MUST explained the condition + Un élément d'extension conditionnel + DOIT préciser les termes de la condition + + + + + + + + + + + + + + + + + + + + + + + + The extended element "" + of type "" + does not specified a code. + + L'élément d'extension "" + de type "" + ne précise pas de code. + + + The extended element "" + of type "" + has for code: "". + + + L'élément d'extension "" + de type "" + a pour code : "". + + + + + + + + The extended element "" + of type "" + does not specified a concept name. + + L'élément d'extension "" + de type "" + ne précise pas de nom de concept. + + + The extended element "" + of type "" + has for concept name: "". + + + L'élément d'extension "" + de type "" + a pour nom de concept : "". + + + + + + Extended element information + which are codelist, enumeration or codelistElement + MUST specified a code and a concept name + Un élément d'extension qui est + une codelist, une énumération, un élément de codelist + DOIT préciser un code et un nom de concept + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mex/1.0/mex.xsd b/inst/extdata/schemas/19115/-3/mex/1.0/mex.xsd new file mode 100644 index 00000000..6ae71187 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mex/1.0/mex.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements <font color="#1f497d">used to document user-defined metadata extensions</font>. + + + + + diff --git a/inst/extdata/schemas/19115/-3/mmi/.DS_Store b/inst/extdata/schemas/19115/-3/mmi/.DS_Store new file mode 100644 index 00000000..01e8ff08 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mmi/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mmi/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mmi/1.0/codelists.html new file mode 100644 index 00000000..cee5df6a --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mmi/1.0/codelists.html @@ -0,0 +1,169 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Maintenance Information (mex) Namespace
Scope: Codelists from the Metadata for Maintenance Information (mex) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 1.1
Date: 2017-09-10
Number of CodeLists: 1
Number of items: 15 +
+

Codelists

+ MD_MaintenanceFrequencyCode + : +

Description: + frequency with which modifications and deletions are made to the data after it is first produced +
CodeSpace: http://standards.iso.org/iso/19115/-3/mmi/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ continual + + + resource is repeatedly and frequently updated + +
+ daily + + + resource is updated each day + +
+ weekly + + + resource is updated on a weekly basis + +
+ fortnightly + + + resource is updated every two weeks + +
+ monthly + + + resource is updated each month + +
+ quarterly + + + resource is updated every three months + +
+ biannually + + + resource is updated twice each year + +
+ annually + + + resource is updated every year + +
+ asNeeded + + + resource is updated as deemed necessary + +
+ irregular + + + resource is updated in intervals that are uneven in duration + +
+ notPlanned + + + there are no plans to update the data + +
+ unknown + + + frequency of maintenance for the data is not known + +
+ periodic + + + resource is updated at regular intervals + +
+ semimonthly + + + resource updated twice a monthly + +
+ biennially + + + resource is updated every 2 years + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mmi/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mmi/1.0/codelists.xml new file mode 100644 index 00000000..974e33e9 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mmi/1.0/codelists.xml @@ -0,0 +1,290 @@ + + + + + Codelists from the Metadata for Maintenance Information (mex) Namespace + + + Codelists from the Metadata for Maintenance Information (mex) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_MaintenanceFrequencyCode + + + MD_MaintenanceFrequencyCode + + + frequency with which modifications and deletions are made to the data after it is first produced + + + frequency with which modifications and deletions are made to the data after it is first produced + + + + + continual + + + continual + + + resource is repeatedly and frequently updated + + + resource is repeatedly and frequently updated + + + + + + + daily + + + daily + + + resource is updated each day + + + resource is updated each day + + + + + + + weekly + + + weekly + + + resource is updated on a weekly basis + + + resource is updated on a weekly basis + + + + + + + fortnightly + + + fortnightly + + + resource is updated every two weeks + + + resource is updated every two weeks + + + + + + + monthly + + + monthly + + + resource is updated each month + + + resource is updated each month + + + + + + + quarterly + + + quarterly + + + resource is updated every three months + + + resource is updated every three months + + + + + + + biannually + + + biannually + + + resource is updated twice each year + + + resource is updated twice each year + + + + + + + annually + + + annually + + + resource is updated every year + + + resource is updated every year + + + + + + + asNeeded + + + asNeeded + + + resource is updated as deemed necessary + + + resource is updated as deemed necessary + + + + + + + irregular + + + irregular + + + resource is updated in intervals that are uneven in duration + + + resource is updated in intervals that are uneven in duration + + + + + + + notPlanned + + + notPlanned + + + there are no plans to update the data + + + there are no plans to update the data + + + + + + + unknown + + + unknown + + + frequency of maintenance for the data is not known + + + frequency of maintenance for the data is not known + + + + + + + periodic + + + periodic + + + resource is updated at regular intervals + + + resource is updated at regular intervals + + + + + + + semimonthly + + + semimonthly + + + resource updated twice a monthly + + + resource updated twice a monthly + + + + + + + biennially + + + biennially + + + resource is updated every 2 years + + + resource is updated every 2 years + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mmi/1.0/maintenance.xsd b/inst/extdata/schemas/19115/-3/mmi/1.0/maintenance.xsd new file mode 100644 index 00000000..8aa74c00 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mmi/1.0/maintenance.xsd @@ -0,0 +1,76 @@ + + + Status of the dataset or progress of a review + + + + + + + + + frequency with which modifications and deletions are made to the data after it is first produced + + + + + + + + + + + information about the scope and frequency of updating + + + + + + + + + frequency with which changes and additions are made to the resource after the initial resource is completed + + + + + date information associated with maintenance of resource + + + + + maintenance period other than those defined + + + + + information about the scope and extent of maintenance + + + + + information regarding specific requirements for maintaining the resource + + + + + identification of, and means of communicating with, person(s) and organisation(s) with responsibility for maintaining the metadata + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mmi/1.0/mmi.sch b/inst/extdata/schemas/19115/-3/mmi/1.0/mmi.sch new file mode 100644 index 00000000..cebf4807 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mmi/1.0/mmi.sch @@ -0,0 +1,80 @@ + + + + + + + + + + The maintenance information does not define update frequency. + + L'information sur la maintenance ne définit pas de fréquence de mise à jour. + + + The update frequency is "". + + + La fréquence de mise à jour est "". + + + + The user defined update frequency is + "". + + + La fréquence de mise à jour définie par l'utilisateur est + "". + + + + + Maintenance information MUST + specified an update frequency + L'information sur la maintenance + DOIT définir une fréquence de mise à jour + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mmi/1.0/mmi.xsd b/inst/extdata/schemas/19115/-3/mmi/1.0/mmi.xsd new file mode 100644 index 00000000..3bd492f9 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mmi/1.0/mmi.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements <font color="#1f497d">used to document the maintenance history and scheduling for a resource</font>. + + + + + diff --git a/inst/extdata/schemas/19115/-3/mpc/1.0/mpc.xsd b/inst/extdata/schemas/19115/-3/mpc/1.0/mpc.xsd new file mode 100644 index 00000000..3d108f0e --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mpc/1.0/mpc.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements <font color="#1f497d">used to document a portrayal catalogue associated with a resource that specifies how to visualize the resource content.</font> + + + + + diff --git a/inst/extdata/schemas/19115/-3/mpc/1.0/portrayalCatalogue.xsd b/inst/extdata/schemas/19115/-3/mpc/1.0/portrayalCatalogue.xsd new file mode 100644 index 00000000..3983c156 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mpc/1.0/portrayalCatalogue.xsd @@ -0,0 +1,31 @@ + + + + + + + + information identifying the portrayal catalogue used + + + + + + + + + bibliographic reference to the portrayal catalogue cited + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/.DS_Store b/inst/extdata/schemas/19115/-3/mrc/.DS_Store new file mode 100644 index 00000000..90f9b46f Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mrc/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mrc/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mrc/1.0/codelists.html new file mode 100644 index 00000000..763653bb --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/1.0/codelists.html @@ -0,0 +1,223 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Resource Content (mrc) Namespace
Scope: Codelists related to Metadata for Resource Content (mrc) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 1.1
Date: 2017-09-10
Number of CodeLists: 2
Number of items: 19 +
+

Codelists

+ MD_CoverageContentTypeCode + : +

Description: + specific type of information represented in the cell +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrc/1.0
Number of items: 8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ image + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + +
+ thematicClassification + + + code value with no quantitative meaning, used to represent a physical quantity + +
+ physicalMeasurement + + + value in physical units of the quantity being measured + +
+ auxillaryInformation + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the + dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + +
+ qualityInformation + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + +
+ referenceInformation + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids + of latitude/longitude used to geolocate the physical measurements). + +
+ modelResult + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + +
+ coordinate + + + data used to provide coordinate axis values + +
top

+ MD_ImagingConditionCode + : +

Description: + code which indicates conditions which may affect the image +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrc/1.0
Number of items: 11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ blurredImage + + + portion of the image is blurred + +
+ cloud + + + portion of the image is partially obscured by cloud cover + +
+ degradingObliquity + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + +
+ fog + + + portion of the image is partially obscured by fog + +
+ heavySmokeOrDust + + + portion of the image is partially obscured by heavy smoke or dust + +
+ night + + + image was taken at night + +
+ rain + + + image was taken during rainfall + +
+ semiDarkness + + + image was taken during semi-dark conditions; twilight conditions + +
+ shadow + + + portion of the image is obscured by shadow + +
+ snow + + + portion of the image is obscured by snow + +
+ terrainMasking + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct + the collection path between the collector(s) and the subject(s) of interest + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mrc/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mrc/1.0/codelists.xml new file mode 100644 index 00000000..d60f02da --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/1.0/codelists.xml @@ -0,0 +1,370 @@ + + + + + Codelists from the Metadata for Resource Content (mrc) Namespace + + + Codelists related to Metadata for Resource Content (mrc) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_CoverageContentTypeCode + + + MD_CoverageContentTypeCode + + + specific type of information represented in the cell + + + specific type of information represented in the cell + + + + + image + + + image + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + + + + + + + thematicClassification + + + thematicClassification + + + code value with no quantitative meaning, used to represent a physical quantity + + + code value with no quantitative meaning, used to represent a physical quantity + + + + + + + physicalMeasurement + + + physicalMeasurement + + + value in physical units of the quantity being measured + + + value in physical units of the quantity being measured + + + + + + + auxillaryInformation + + + auxillaryInformation + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + + + + + + + qualityInformation + + + qualityInformation + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + + + + + + + referenceInformation + + + referenceInformation + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical measurements). + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical measurements). + + + + + + + modelResult + + + modelResult + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + + + + + + + coordinate + + + coordinate + + + data used to provide coordinate axis values + + + data used to provide coordinate axis values + + + + + + + + + MD_ImagingConditionCode + + + MD_ImagingConditionCode + + + code which indicates conditions which may affect the image + + + code which indicates conditions which may affect the image + + + + + blurredImage + + + blurredImage + + + portion of the image is blurred + + + portion of the image is blurred + + + + + + + cloud + + + cloud + + + portion of the image is partially obscured by cloud cover + + + portion of the image is partially obscured by cloud cover + + + + + + + degradingObliquity + + + degradingObliquity + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + + + + + + + fog + + + fog + + + portion of the image is partially obscured by fog + + + portion of the image is partially obscured by fog + + + + + + + heavySmokeOrDust + + + heavySmokeOrDust + + + portion of the image is partially obscured by heavy smoke or dust + + + portion of the image is partially obscured by heavy smoke or dust + + + + + + + night + + + night + + + image was taken at night + + + image was taken at night + + + + + + + rain + + + rain + + + image was taken during rainfall + + + image was taken during rainfall + + + + + + + semiDarkness + + + semiDarkness + + + image was taken during semi-dark conditions; twilight conditions + + + image was taken during semi-dark conditions; twilight conditions + + + + + + + shadow + + + shadow + + + portion of the image is obscured by shadow + + + portion of the image is obscured by shadow + + + + + + + snow + + + snow + + + portion of the image is obscured by snow + + + portion of the image is obscured by snow + + + + + + + terrainMasking + + + terrainMasking + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/1.0/content.xsd b/inst/extdata/schemas/19115/-3/mrc/1.0/content.xsd new file mode 100644 index 00000000..7b8c049a --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/1.0/content.xsd @@ -0,0 +1,416 @@ + + + + + + + + + + + + + + + + type of information represented by the value + + + + + + + + + + + + + + + + + range of wavelengths in the electromagnetic spectrum + + + + + + + + + + + + wavelength at which the response is the highest + + + + + number of discrete numerical values in the grid data + + + + + + + + + + + + + + + + description of the content of a resource. + +Note in 19115-3 implementation, this class is implemented by abstract class _ContentInformation in the Abstract Common Classes package + + + + + + + + + + + + + + + + + + + specific type of information represented in the cell + + + + + + + + + + + details about the content of a resource + + + + + + + + + description of the attribute described by the measurement value + + + + + Code and codespace that identifies the level of processing that has been applied to the resource + + + + + + + + + + + + + + + + + a catalogue of feature types + + + + + + + + + the catalogue of feature types, attribution, operations, and relationships used by the resource + + + + + + + + + + + + + + + + information identifying the feature catalogue or the conceptual schema + + + + + + + + + indication of whether or not the cited feature catalogue complies with ISO 19110 + + + + + language(s) used within the catalogue + + + + + indication of whether or not the feature catalogue is included with the resource + + + + + subset of feature types from cited feature catalogue occurring in dataset + + + + + complete bibliographic reference to one or more external feature catalogues + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + information about an image's suitability for use + + + + + + + + + illumination elevation measured in degrees clockwise from the target plane at intersection of the optical line of sight with the Earth's surface. For images from a scanning device, refer to the centre pixel of the image + + + + + illumination azimuth measured in degrees clockwise from true north at the time the image is taken. For images from a scanning device, refer to the centre pixel of the image + + + + + conditions affected the image + + + + + code in producers code space that specifies the image quality + + + + + area of the dataset obscured by clouds, expressed as a percentage of the spatial extent + + + + + count of the number of lossy compression cycles performed on the image + + + + + indication of whether or not triangulation has been performed upon the image + + + + + indication of whether or not the radiometric calibration information for generating the radiometrically calibrated standard data product is available + + + + + indication of whether or not constants are available which allow for camera calibration corrections + + + + + indication of whether or not Calibration Reseau information is available + + + + + indication of whether or not lens aberration correction information is available + + + + + + + + + + + + + + + + code which indicates conditions which may affect the image + + + + + + + + + + + information on the range of attribute values + + + + + + + + + number that uniquely identifies instances of bands of wavelengths on which a sensor operates + + + + + description of the range of a cell measurement value + + + + + identifiers for each attribute included in the resource. These identifiers can be used to provide names for the resource's attribute from a standard set of names + + + + + + + + + + + + + + + + the characteristics of each dimension (layer) included in the resource + + + + + + + + + maximum value of data values in each dimension included in the resource. Restricted to UomLength in the MD_Band class. + + + + + minimum value of data values in each dimension included in the resource. Restricted to UomLength in the MD_Band class. + + + + + units of data in each dimension included in the resource. Note that the type of this is UnitOfMeasure and that it is restricted to UomLength in the MD_Band class. + + + + + scale factor which has been applied to the cell value + + + + + the physical value corresponding to a cell value of zero + + + + + mean value of data values in each dimension included in the resource + + + + + this gives the number of values used in a thematicClassification resource EX:. the number of classes in a Land Cover Type coverage or the number of cells with data in other types of coverages + + + + + standard deviation of data values in each dimension included in the resource + + + + + type of other attribute description (i.e. netcdf/variable in ncml.xsd) + + + + + instance of otherAttributeType that defines attributes not explicitly included in MD_CoverageType + + + + + maximum number of significant bits in the uncompressed representation for the value in each band of each pixel + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/1.0/contentInformationImagery.xsd b/inst/extdata/schemas/19115/-3/mrc/1.0/contentInformationImagery.xsd new file mode 100644 index 00000000..9432f71b --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/1.0/contentInformationImagery.xsd @@ -0,0 +1,185 @@ + + + Name: Content +Position: 5 + + + + + + + + Description: extensions to electromagnetic spectrum wavelength description +shortName: BandExt + + + + + + + + + Description: Designation of criterion for defining maximum and minimum wavelengths for a spectral band +FGDC: Band_Boundry_Definition +Position: 1 +shortName: bBndDef + + + + + Description: Smallest distance between which separate points can be distinguished, as specified in instrument design +FGDC: Nominal_Spatial_Resolution +Position: 4 +shortName: bndRes + + + + + Description: transform function to be used when scaling a physical value for a given element +shortName: scalXfrFunc + + + + + Description: polarisation of the transmitter or detector +shortName: polarisation + + + + + Description: polarisation of the transmitter or detector +shortName: polarisation + + + + + + + + + + + + + + + + Description: Designation of criterion for defining maximum and minimum wavelengths for a spectral band +FGDC: Band_Boundry_Definition +shortName: BndDef + + + + + + + + + + + Description: information about the content of a coverage, including the description of specific range elements +shortName: CCovDesc + + + + + + + + + + + + + + + + + + + + + Description: information about the content of an image, including the description of specific range elements +shortName: ICovDesc + + + + + + + + + + + + + + + + + + + + + Description: polarisation of the antenna relative to the waveform +shortName: PolarOrienCode + + + + + + + + + + + Description: description of specific range elements +shortName: RgEltDesc + + + + + + + + + Description: designation associated with a set of range elements +shortName: rgEltName + + + + + Description: description of a set of specific range elements +shortName: rgEltDef + + + + + Description: specific range elements, i.e. range elements associated with a name and definition defining their meaning +shortName: rgElt + + + + + + + + + + + + + + + + Description: transform function to be used when scaling a physical value for a given element +shortName: XfrFuncTypeCode + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/1.0/mrc.sch b/inst/extdata/schemas/19115/-3/mrc/1.0/mrc.sch new file mode 100644 index 00000000..198bc950 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/1.0/mrc.sch @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + The sample dimension does not provide max, min or mean value. + La dimension ne précise pas de valeur maximum ou minimum ni de moyenne. + + + The sample dimension max value is + "". + + + La valeur maximum de la dimension de l'échantillon est + "". + + + + The sample dimension min value is + "". + + + La valeur minimum de la dimension de l'échantillon est + "". + + + + The sample dimension mean value is + "". + + + La valeur moyenne de la dimension de l'échantillon est + "". + + + + + Sample dimension MUST provide a max, + a min or a mean value + La dimension de l'échantillon DOIT préciser + une valeur maximum, une valeur minimum ou une moyenne + + + + + + + + + + + + + + + + + + + + + + + The band defined a bound without unit. + La bande définit une borne minimum et/ou maximum + sans préciser d'unité. + + + The band bound [-] unit is + "". + + + L'unité de la borne [-] est + "". + + + + + Band MUST specified bounds units + when a bound max or bound min is defined + Une bande DOIT préciser l'unité + lorsqu'une borne maximum ou minimum est définie + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/1.0/mrc.xsd b/inst/extdata/schemas/19115/-3/mrc/1.0/mrc.xsd new file mode 100644 index 00000000..c74e4ad2 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/1.0/mrc.xsd @@ -0,0 +1,11 @@ + + + Namespace for XML elements <font color="#1f497d">used to document schema and amount of content in a structured resource.</font> + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/2.0/codelists.html b/inst/extdata/schemas/19115/-3/mrc/2.0/codelists.html new file mode 100644 index 00000000..a2b639ce --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/2.0/codelists.html @@ -0,0 +1,232 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, + and the values and definitions of the codes. +

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Resource Content (mrc) Namespace
Scope: Codelists related to Metadata for Resource Content (mrc) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 1.1
Date: 2017-09-10
Number of CodeLists: 2
Number of items: 19 +
+

Codelists

+ MD_CoverageContentTypeCode + : +

Description: + specific type of information represented in the cell +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrc/1.0
Number of items: 8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ image + + + meaningful numerical representation of a physical parameter that is not the actual + value of the physical parameter + +
+ thematicClassification + + + code value with no quantitative meaning, used to represent a physical quantity + +
+ physicalMeasurement + + + value in physical units of the quantity being measured + +
+ auxillaryInformation + + + data, usually a physical measurement, used to support the calculation of the primary + physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness + used in the calculation of a sea surface temperature product). + +
+ qualityInformation + + + data used to characterize the quality of the physicalMeasurement coverages in the + dataset. Typically included in a gmi:QE_CoverageResult. + +
+ referenceInformation + + + reference information used to support the calculation or use of the physicalMeasurement + coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical + measurements). + +
+ modelResult + + + resources with values that are calculated using a model rather than being observed + or calculated from observations. + +
+ coordinate + + + data used to provide coordinate axis values + +
top

+ MD_ImagingConditionCode + : +

Description: + code which indicates conditions which may affect the image +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrc/1.0
Number of items: 11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ blurredImage + + + portion of the image is blurred + +
+ cloud + + + portion of the image is partially obscured by cloud cover + +
+ degradingObliquity + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and + the plane of the celestial equator + +
+ fog + + + portion of the image is partially obscured by fog + +
+ heavySmokeOrDust + + + portion of the image is partially obscured by heavy smoke or dust + +
+ night + + + image was taken at night + +
+ rain + + + image was taken during rainfall + +
+ semiDarkness + + + image was taken during semi-dark conditions; twilight conditions + +
+ shadow + + + portion of the image is obscured by shadow + +
+ snow + + + portion of the image is obscured by snow + +
+ terrainMasking + + + the absence of collection data of a given point or area caused by the relative location + of topographic features which obstruct the collection path between the collector(s) + and the subject(s) of interest + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mrc/2.0/codelists.xml b/inst/extdata/schemas/19115/-3/mrc/2.0/codelists.xml new file mode 100644 index 00000000..d60f02da --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/2.0/codelists.xml @@ -0,0 +1,370 @@ + + + + + Codelists from the Metadata for Resource Content (mrc) Namespace + + + Codelists related to Metadata for Resource Content (mrc) Namespace + + + ISO TC211 Metadata Standards + + + 1.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_CoverageContentTypeCode + + + MD_CoverageContentTypeCode + + + specific type of information represented in the cell + + + specific type of information represented in the cell + + + + + image + + + image + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + + + + + + + thematicClassification + + + thematicClassification + + + code value with no quantitative meaning, used to represent a physical quantity + + + code value with no quantitative meaning, used to represent a physical quantity + + + + + + + physicalMeasurement + + + physicalMeasurement + + + value in physical units of the quantity being measured + + + value in physical units of the quantity being measured + + + + + + + auxillaryInformation + + + auxillaryInformation + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + + + + + + + qualityInformation + + + qualityInformation + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + + + + + + + referenceInformation + + + referenceInformation + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical measurements). + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical measurements). + + + + + + + modelResult + + + modelResult + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + + + + + + + coordinate + + + coordinate + + + data used to provide coordinate axis values + + + data used to provide coordinate axis values + + + + + + + + + MD_ImagingConditionCode + + + MD_ImagingConditionCode + + + code which indicates conditions which may affect the image + + + code which indicates conditions which may affect the image + + + + + blurredImage + + + blurredImage + + + portion of the image is blurred + + + portion of the image is blurred + + + + + + + cloud + + + cloud + + + portion of the image is partially obscured by cloud cover + + + portion of the image is partially obscured by cloud cover + + + + + + + degradingObliquity + + + degradingObliquity + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + + + + + + + fog + + + fog + + + portion of the image is partially obscured by fog + + + portion of the image is partially obscured by fog + + + + + + + heavySmokeOrDust + + + heavySmokeOrDust + + + portion of the image is partially obscured by heavy smoke or dust + + + portion of the image is partially obscured by heavy smoke or dust + + + + + + + night + + + night + + + image was taken at night + + + image was taken at night + + + + + + + rain + + + rain + + + image was taken during rainfall + + + image was taken during rainfall + + + + + + + semiDarkness + + + semiDarkness + + + image was taken during semi-dark conditions; twilight conditions + + + image was taken during semi-dark conditions; twilight conditions + + + + + + + shadow + + + shadow + + + portion of the image is obscured by shadow + + + portion of the image is obscured by shadow + + + + + + + snow + + + snow + + + portion of the image is obscured by snow + + + portion of the image is obscured by snow + + + + + + + terrainMasking + + + terrainMasking + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/2.0/content.xsd b/inst/extdata/schemas/19115/-3/mrc/2.0/content.xsd new file mode 100644 index 00000000..831b35c6 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/2.0/content.xsd @@ -0,0 +1,419 @@ + + + + + + + + + + + + + + + + + type of information represented by the value + + + + + + + + + + + + + + + + + range of wavelengths in the electromagnetic spectrum + + + + + + + + + + + + wavelength at which the response is the highest + + + + + number of discrete numerical values in the grid data + + + + + + + + + + + + + + + + description of the content of a resource. + +Note in 19115-3 implementation, this class is implemented by abstract class _ContentInformation in the Abstract Common Classes package + + + + + + + + + + + + + + + + + + + specific type of information represented in the cell + + + + + + + + + + + details about the content of a resource + + + + + + + + + description of the attribute described by the measurement value + + + + + Code and codespace that identifies the level of processing that has been applied to the resource + + + + + + + + + + + + + + + + + a catalogue of feature types + + + + + + + + + the catalogue of feature types, attribution, operations, and relationships used by the resource + + + + + + + + + + + + + + + + information identifying the feature catalogue or the conceptual schema + + + + + + + + + indication of whether or not the cited feature catalogue complies with ISO 19110 + + + + + language(s) used within the catalogue + + + + + indication of whether or not the feature catalogue is included with the resource + + + + + subset of feature types from cited feature catalogue occurring in dataset + + + + + complete bibliographic reference to one or more external feature catalogues + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + information about an image's suitability for use + + + + + + + + + illumination elevation measured in degrees clockwise from the target plane at intersection of the optical line of sight with the Earth's surface. For images from a scanning device, refer to the centre pixel of the image + + + + + illumination azimuth measured in degrees clockwise from true north at the time the image is taken. For images from a scanning device, refer to the centre pixel of the image + + + + + conditions affected the image + + + + + code in producers code space that specifies the image quality + + + + + area of the dataset obscured by clouds, expressed as a percentage of the spatial extent + + + + + count of the number of lossy compression cycles performed on the image + + + + + indication of whether or not triangulation has been performed upon the image + + + + + indication of whether or not the radiometric calibration information for generating the radiometrically calibrated standard data product is available + + + + + indication of whether or not constants are available which allow for camera calibration corrections + + + + + indication of whether or not Calibration Reseau information is available + + + + + indication of whether or not lens aberration correction information is available + + + + + + + + + + + + + + + + code which indicates conditions which may affect the image + + + + + + + + + + + information on the range of attribute values + + + + + + + + + number that uniquely identifies instances of bands of wavelengths on which a sensor operates + + + + + description of the range of a cell measurement value + + + + + identifiers for each attribute included in the resource. These identifiers can be used to provide names for the resource's attribute from a standard set of names + + + + + + + + + + + + + + + + the characteristics of each dimension (layer) included in the resource + + + + + + + + + maximum value of data values in each dimension included in the resource. Restricted to UomLength in the MD_Band class. + + + + + minimum value of data values in each dimension included in the resource. Restricted to UomLength in the MD_Band class. + + + + + units of data in each dimension included in the resource. Note that the type of this is UnitOfMeasure and that it is restricted to UomLength in the MD_Band class. + + + + + scale factor which has been applied to the cell value + + + + + the physical value corresponding to a cell value of zero + + + + + mean value of data values in each dimension included in the resource + + + + + this gives the number of values used in a thematicClassification resource EX:. the number of classes in a Land Cover Type coverage or the number of cells with data in other types of coverages + + + + + standard deviation of data values in each dimension included in the resource + + + + + type of other attribute description (i.e. netcdf/variable in ncml.xsd) + + + + + instance of otherAttributeType that defines attributes not explicitly included in MD_CoverageType + + + + + maximum number of significant bits in the uncompressed representation for the value in each band of each pixel + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/2.0/contentInformationImagery.xsd b/inst/extdata/schemas/19115/-3/mrc/2.0/contentInformationImagery.xsd new file mode 100644 index 00000000..9af6d006 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/2.0/contentInformationImagery.xsd @@ -0,0 +1,171 @@ + + + + + + + + + + Description: extensions to electromagnetic spectrum wavelength description shortName: BandExt + + + + + + + + + Description: Designation of criterion for defining maximum and minimum wavelengths for a spectral band FGDC: Band_Boundry_Definition Position: 1 shortName: bBndDef + + + + + Description: Smallest distance between which separate points can be distinguished, as specified in instrument design FGDC: Nominal_Spatial_Resolution Position: 4 shortName: bndRes + + + + + Description: transform function to be used when scaling a physical value for a given element shortName: scalXfrFunc + + + + + Description: polarisation of the transmitter or detector shortName: polarisation + + + + + Description: polarisation of the transmitter or detector shortName: polarisation + + + + + Description: polarisation of the transmitter or detector shortName: polarisation + + + + + + + + + + + + + + + + Description: Designation of criterion for defining maximum and minimum wavelengths for a spectral band FGDC: Band_Boundry_Definition shortName: BndDef + + + + + + + + + + + Description: information about the content of a coverage, including the description of specific range elements shortName: CCovDesc + + + + + + + + + + + + + + + + + + + + + Description: information about the content of an image, including the description of specific range elements shortName: ICovDesc + + + + + + + + + + + + + + + + + + + + + Description: polarisation of the antenna relative to the waveform shortName: PolarOrienCode + + + + + + + + + + + Description: description of specific range elements shortName: RgEltDesc + + + + + + + + + Description: designation associated with a set of range elements shortName: rgEltName + + + + + Description: description of a set of specific range elements shortName: rgEltDef + + + + + Description: specific range elements, i.e. range elements associated with a name and definition defining their meaning shortName: rgElt + + + + + + + + + + + + + + + + Description: transform function to be used when scaling a physical value for a given element shortName: XfrFuncTypeCode + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrc/2.0/mrc.xsd b/inst/extdata/schemas/19115/-3/mrc/2.0/mrc.xsd new file mode 100644 index 00000000..c50b59d1 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrc/2.0/mrc.xsd @@ -0,0 +1,11 @@ + + + Namespace for XML elements <font color="#1f497d">used to document schema and amount of content in a structured resource.</font> + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrd/.DS_Store b/inst/extdata/schemas/19115/-3/mrd/.DS_Store new file mode 100644 index 00000000..b519b03c Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mrd/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mrd/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mrd/1.0/codelists.html new file mode 100644 index 00000000..186e7af4 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrd/1.0/codelists.html @@ -0,0 +1,89 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Resource Distribution (mrd) Namespace
Scope: Codelists from the Metadata for Resource Distribution (mrd) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 0.1
Date: 2017-09-10
Number of CodeLists: 1
Number of items: 7 +
+

Codelists

+ MD_MediumFormatCode + : +

Description: + method used to write to the medium +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrd/1.0
Number of items: 7 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ cpio + + + Copy In / Out (UNIX file format and command) + +
+ tar + + + Tape Archive + +
+ highSierra + + + high sierra file system + +
+ iso9660 + + + information processing volume and file structure of CD-ROM + +
+ iso9660RockRidge + + + rock ridge interchange protocol (UNIX) + +
+ iso9660AppleHFS + + + hierarchical file system (Macintosh) + +
+ udf + + + universal disk format + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mrd/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mrd/1.0/codelists.xml new file mode 100644 index 00000000..4e1016e5 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrd/1.0/codelists.xml @@ -0,0 +1,164 @@ + + + + + Codelists from the Metadata for Resource Distribution (mrd) Namespace + + + Codelists from the Metadata for Resource Distribution (mrd) Namespace + + + ISO TC211 Metadata Standards + + + 0.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_MediumFormatCode + + + MD_MediumFormatCode + + + method used to write to the medium + + + method used to write to the medium + + + + + cpio + + + cpio + + + Copy In / Out (UNIX file format and command) + + + Copy In / Out (UNIX file format and command) + + + + + + + tar + + + tar + + + Tape Archive + + + Tape Archive + + + + + + + highSierra + + + highSierra + + + high sierra file system + + + high sierra file system + + + + + + + iso9660 + + + iso9660 + + + information processing volume and file structure of CD-ROM + + + information processing volume and file structure of CD-ROM + + + + + + + iso9660RockRidge + + + iso9660RockRidge + + + rock ridge interchange protocol (UNIX) + + + rock ridge interchange protocol (UNIX) + + + + + + + iso9660AppleHFS + + + iso9660AppleHFS + + + hierarchical file system (Macintosh) + + + hierarchical file system (Macintosh) + + + + + + + udf + + + udf + + + universal disk format + + + universal disk format + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrd/1.0/distribution.xsd b/inst/extdata/schemas/19115/-3/mrd/1.0/distribution.xsd new file mode 100644 index 00000000..ddcf45b6 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrd/1.0/distribution.xsd @@ -0,0 +1,267 @@ + + + + + + + + + + technical means and media by which a resource is obtained from the distributor + + + + + + + + + tiles, layers, geographic areas, etc., in which data is available NOTE: unitsOfDistribution applies to both onLine and offLine distributions + + + + + estimated size of a unit in the specified transfer format, expressed in megabytes. The transfer size is > 0.0 + + + + + information about online sources from which the resource can be obtained + + + + + information about offline media on which the resource can be obtained + + + + + rate of occurrence of distribution + + + + + format of distribution + + + + + + + + + + + + + + + + information about the distributor of and options for obtaining the resource + + + + + + + + + + + + + + + + + + + + + + + + information about the distributor + + + + + + + + + party from whom the resource may be obtained. This list need not be exhaustive + + + + + + + + + + + + + + + + + + + description of the computer language construct that specifies the representation of data objects in a record, file, message, storage device or transmission channel + + + + + + + + + citation/URL of the specification for the format + + + + + amendment number of the format version + + + + + recommendations of algorithms or processes that can be applied to read or expand resources to which compression techniques have been applied + + + + + medium used by the format + + + + + + + + + + + + + + + + + information about the media on which the resource can be distributed + + + + + + + + + name of the medium on which the resource can be received + + + + + density at which the data is recorded + + + + + units of measure for the recording density + + + + + number of items in the media identified + + + + + method used to write to the medium + + + + + description of other limitations or requirements for using the medium + + + + + + + + + + + + + + + + + method used to write to the medium + + + + + + + + + + + common ways in which the resource may be obtained or received, and related instructions and fee information + + + + + + + + + fees and terms for retrieving the resource. Include monetary units (as specified in ISO 4217) + + + + + date and time when the resource will be available + + + + + general instructions, terms and services provided by the distributor + + + + + typical turnaround time for the filling of an order + + + + + description of the order options record + + + + + request/purchase choices + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrd/1.0/mrd.sch b/inst/extdata/schemas/19115/-3/mrd/1.0/mrd.sch new file mode 100644 index 00000000..af6af8e6 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrd/1.0/mrd.sch @@ -0,0 +1,55 @@ + + + + + + + + The medium define a density without unit. + La densité du média est définie sans unité. + + + Medium density is "" (unit: + ""). + + + La densité du média est "" (unité : + ""). + + + + + Medium having density MUST specified density units + Un média précisant une densité DOIT préciser l'unité + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrd/1.0/mrd.xsd b/inst/extdata/schemas/19115/-3/mrd/1.0/mrd.xsd new file mode 100644 index 00000000..06ee7fe2 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrd/1.0/mrd.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements <font color="#1f497d">used to specify how various representations(distributions) of a resource can be obtained</font>. + + + + + diff --git a/inst/extdata/schemas/19115/-3/mri/.DS_Store b/inst/extdata/schemas/19115/-3/mri/.DS_Store new file mode 100644 index 00000000..b519b03c Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mri/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mri/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mri/1.0/codelists.html new file mode 100644 index 00000000..c24cf47a --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mri/1.0/codelists.html @@ -0,0 +1,675 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Resource Identification (mri) Namespace
Scope: Codelists from the Metadata for Resource Identification (mri) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 0.1
Date: 2017-09-10
Number of CodeLists: 4
Number of items: 60 +
+

Codelists

+ DS_AssociationTypeCode + : +

Description: + justification for the correlation of two resources +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ crossReference + + + reference from one resource to another + +
+ largerWorkCitation + + + reference to a master resource of which this one is a part + +
+ partOfSeamlessDatabase + + + part of same structured set of data held in a computer + +
+ stereoMate + + + part of a set of imagery that when used together, provides three-dimensional images + +
+ isComposedOf + + + reference to resources that are parts of this resource + +
+ collectiveTitle + + + common title for a collection of resources. NOTE: title identifies elements of a series collectively, combined with information + about what volumes are available at the source cite + +
+ series + + + associated through a common heritage such as produced to a common product specification + +
+ dependency + + + associated through a dependency + +
+ revisionOf + + + resource is a revision of associated resource + +
top

+ DS_InitiativeTypeCode + : +

Description: + type of aggregation activity in which resources are related +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ campaign + + + series of organized planned actions + +
+ collection + + + accumulation of resources assembled for a specific purpose + +
+ exercise + + + specific performance of a function or group of functions + +
+ experiment + + + process designed to find if something is effective or valid + +
+ investigation + + + search or systematic inquiry + +
+ mission + + + specific operation of a data collection system + +
+ sensor + + + device or piece of equipment which detects or records + +
+ operation + + + action that is part of a series of actions + +
+ platform + + + vehicle or other support base that holds a sensor + +
+ process + + + method of doing something involving a number of steps + +
+ program + + + specific planned activity + +
+ project + + + organized undertaking, research, or development + +
+ study + + + examination or investigation + +
+ task + + + piece of work + +
+ trial + + + process of testing to discover or demonstrate something + +
top

+ MD_KeywordTypeCode + : +

Description: + methods used to group similar keywords +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ discipline + + + keyword identifies a branch of instruction or specialized learning + +
+ place + + + keyword identifies a location + +
+ stratum + + + keyword identifies the layer(s) of any deposited substance or levels within an ordered system + +
+ temporal + + + keyword identifies a time period related to the resource + +
+ theme + + + keyword identifies a particular subject or topic + +
+ dataCentre + + + keyword identifies a repository or archive that manages and distributes data + +
+ featureType + + + keyword identifies a resource containing or about a collection of feature instances with common characteristics + +
+ instrument + + + keyword identifies a device used to measure or compare physical properties + +
+ platform + + + keyword identifies a structure upon which an instrument is mounted + +
+ process + + + keyword identifies a series of actions or natural occurrences + +
+ project + + + keyword identifies an endeavour undertaken to create or modify a product or service + +
+ service + + + keyword identifies an activity carried out by one party for the benefit of another + +
+ product + + + keyword identifies a type of product + +
+ subTopicCategory + + + refinement of a topic category for the purpose of geographic data classification + +
+ taxon + + + keyword identifies a taxonomy of the resource + +
top

+ MD_TopicCategoryCode + : +

Description: + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. + Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between + general categories and the user is encouraged to select the one most appropriate. +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ farming + + + rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests + and diseases affecting crops and livestock + +
+ biota + + + flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, + wetlands, habitat + +
+ boundaries + + + legal land descriptions, maritime boundaries. Examples: political and administrative boundaries, territorial seas, EEZ, port + security zones + +
+ climatologyMeteorologyAtmosphere + + + processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, + precipitation + +
+ economy + + + economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, + forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and + gas + +
+ elevation + + + height above or below a vertical datum. Examples: altitude, bathymetry, digital elevation models, slope, derived products + +
+ environment + + + environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental + impact assessment, monitoring environmental risk, nature reserves, landscape + +
+ geoscientificInformation + + + information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing + with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity + information, soils, permafrost, hydrogeology, erosion + +
+ health + + + health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance + abuse, mental and physical health, health services + +
+ imageryBaseMapsEarthCover + + + base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations + +
+ intelligenceMilitary + + + military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection + +
+ inlandWaters + + + inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization + plans, dams, currents, floods, water quality, hydrologic information + +
+ location + + + positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place + names + +
+ oceans + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tsunamis, coastal information, + reefs + +
+ planningCadastre + + + information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, + land ownership + +
+ society + + + characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, + manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census + information + +
+ structure + + + man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + +
+ transportation + + + means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical + charts, vehicle or vessel location, aeronautical charts, railways + +
+ utilitiesCommunication + + + energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar + and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, + data communication, telecommunication, radio, communication networks + +
+ extraTerrestrial + + + region more than 100 km above the surface of the Earth + +
+ disaster + + + Information related to disasters. Examples: site of the disaster, evacuation zone, disaster-prevention facility, disaster + relief activities + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mri/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mri/1.0/codelists.xml new file mode 100644 index 00000000..13c6c96c --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mri/1.0/codelists.xml @@ -0,0 +1,1060 @@ + + + + + Codelists from the Metadata for Resource Identification (mri) Namespace + + + Codelists from the Metadata for Resource Identification (mri) Namespace + + + ISO TC211 Metadata Standards + + + 0.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + DS_AssociationTypeCode + + + DS_AssociationTypeCode + + + justification for the correlation of two resources + + + justification for the correlation of two resources + + + + + crossReference + + + crossReference + + + reference from one resource to another + + + reference from one resource to another + + + + + + + largerWorkCitation + + + largerWorkCitation + + + reference to a master resource of which this one is a part + + + reference to a master resource of which this one is a part + + + + + + + partOfSeamlessDatabase + + + partOfSeamlessDatabase + + + part of same structured set of data held in a computer + + + part of same structured set of data held in a computer + + + + + + + stereoMate + + + stereoMate + + + part of a set of imagery that when used together, provides three-dimensional images + + + part of a set of imagery that when used together, provides three-dimensional images + + + + + + + isComposedOf + + + isComposedOf + + + reference to resources that are parts of this resource + + + reference to resources that are parts of this resource + + + + + + + collectiveTitle + + + collectiveTitle + + + common title for a collection of resources. NOTE: title identifies elements of a series collectively, combined with information about what volumes are available at the source cite + + + common title for a collection of resources. NOTE: title identifies elements of a series collectively, combined with information about what volumes are available at the source cite + + + + + + + series + + + series + + + associated through a common heritage such as produced to a common product specification + + + associated through a common heritage such as produced to a common product specification + + + + + + + dependency + + + dependency + + + associated through a dependency + + + associated through a dependency + + + + + + + revisionOf + + + revisionOf + + + resource is a revision of associated resource + + + resource is a revision of associated resource + + + + + + + + + DS_InitiativeTypeCode + + + DS_InitiativeTypeCode + + + type of aggregation activity in which resources are related + + + type of aggregation activity in which resources are related + + + + + campaign + + + campaign + + + series of organized planned actions + + + series of organized planned actions + + + + + + + collection + + + collection + + + accumulation of resources assembled for a specific purpose + + + accumulation of resources assembled for a specific purpose + + + + + + + exercise + + + exercise + + + specific performance of a function or group of functions + + + specific performance of a function or group of functions + + + + + + + experiment + + + experiment + + + process designed to find if something is effective or valid + + + process designed to find if something is effective or valid + + + + + + + investigation + + + investigation + + + search or systematic inquiry + + + search or systematic inquiry + + + + + + + mission + + + mission + + + specific operation of a data collection system + + + specific operation of a data collection system + + + + + + + sensor + + + sensor + + + device or piece of equipment which detects or records + + + device or piece of equipment which detects or records + + + + + + + operation + + + operation + + + action that is part of a series of actions + + + action that is part of a series of actions + + + + + + + platform + + + platform + + + vehicle or other support base that holds a sensor + + + vehicle or other support base that holds a sensor + + + + + + + process + + + process + + + method of doing something involving a number of steps + + + method of doing something involving a number of steps + + + + + + + program + + + program + + + specific planned activity + + + specific planned activity + + + + + + + project + + + project + + + organized undertaking, research, or development + + + organized undertaking, research, or development + + + + + + + study + + + study + + + examination or investigation + + + examination or investigation + + + + + + + task + + + task + + + piece of work + + + piece of work + + + + + + + trial + + + trial + + + process of testing to discover or demonstrate something + + + process of testing to discover or demonstrate something + + + + + + + + + MD_KeywordTypeCode + + + MD_KeywordTypeCode + + + methods used to group similar keywords + + + methods used to group similar keywords + + + + + discipline + + + discipline + + + keyword identifies a branch of instruction or specialized learning + + + keyword identifies a branch of instruction or specialized learning + + + + + + + place + + + place + + + keyword identifies a location + + + keyword identifies a location + + + + + + + stratum + + + stratum + + + keyword identifies the layer(s) of any deposited substance or levels within an ordered system + + + keyword identifies the layer(s) of any deposited substance or levels within an ordered system + + + + + + + temporal + + + temporal + + + keyword identifies a time period related to the resource + + + keyword identifies a time period related to the resource + + + + + + + theme + + + theme + + + keyword identifies a particular subject or topic + + + keyword identifies a particular subject or topic + + + + + + + dataCentre + + + dataCentre + + + keyword identifies a repository or archive that manages and distributes data + + + keyword identifies a repository or archive that manages and distributes data + + + + + + + featureType + + + featureType + + + keyword identifies a resource containing or about a collection of feature instances with common characteristics + + + keyword identifies a resource containing or about a collection of feature instances with common characteristics + + + + + + + instrument + + + instrument + + + keyword identifies a device used to measure or compare physical properties + + + keyword identifies a device used to measure or compare physical properties + + + + + + + platform + + + platform + + + keyword identifies a structure upon which an instrument is mounted + + + keyword identifies a structure upon which an instrument is mounted + + + + + + + process + + + process + + + keyword identifies a series of actions or natural occurrences + + + keyword identifies a series of actions or natural occurrences + + + + + + + project + + + project + + + keyword identifies an endeavour undertaken to create or modify a product or service + + + keyword identifies an endeavour undertaken to create or modify a product or service + + + + + + + service + + + service + + + keyword identifies an activity carried out by one party for the benefit of another + + + keyword identifies an activity carried out by one party for the benefit of another + + + + + + + product + + + product + + + keyword identifies a type of product + + + keyword identifies a type of product + + + + + + + subTopicCategory + + + subTopicCategory + + + refinement of a topic category for the purpose of geographic data classification + + + refinement of a topic category for the purpose of geographic data classification + + + + + + + taxon + + + taxon + + + keyword identifies a taxonomy of the resource + + + keyword identifies a taxonomy of the resource + + + + + + + + + MD_TopicCategoryCode + + + MD_TopicCategoryCode + + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between general categories and the user is encouraged to select the one most appropriate. + + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between general categories and the user is encouraged to select the one most appropriate. + + + + + farming + + + farming + + + rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock + + + rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock + + + + + + + biota + + + biota + + + flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat + + + flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat + + + + + + + boundaries + + + boundaries + + + legal land descriptions, maritime boundaries. Examples: political and administrative boundaries, territorial seas, EEZ, port security zones + + + legal land descriptions, maritime boundaries. Examples: political and administrative boundaries, territorial seas, EEZ, port security zones + + + + + + + climatologyMeteorologyAtmosphere + + + climatologyMeteorologyAtmosphere + + + processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation + + + processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation + + + + + + + economy + + + economy + + + economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas + + + economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas + + + + + + + elevation + + + elevation + + + height above or below a vertical datum. Examples: altitude, bathymetry, digital elevation models, slope, derived products + + + height above or below a vertical datum. Examples: altitude, bathymetry, digital elevation models, slope, derived products + + + + + + + environment + + + environment + + + environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape + + + environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape + + + + + + + geoscientificInformation + + + geoscientificInformation + + + information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion + + + information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion + + + + + + + health + + + health + + + health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services + + + health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services + + + + + + + imageryBaseMapsEarthCover + + + imageryBaseMapsEarthCover + + + base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations + + + base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations + + + + + + + intelligenceMilitary + + + intelligenceMilitary + + + military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection + + + military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection + + + + + + + inlandWaters + + + inlandWaters + + + inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrologic information + + + inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrologic information + + + + + + + location + + + location + + + positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place names + + + positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place names + + + + + + + oceans + + + oceans + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tsunamis, coastal information, reefs + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tsunamis, coastal information, reefs + + + + + + + planningCadastre + + + planningCadastre + + + information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, land ownership + + + information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, land ownership + + + + + + + society + + + society + + + characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information + + + characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information + + + + + + + structure + + + structure + + + man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + + + man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + + + + + + + transportation + + + transportation + + + means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways + + + means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways + + + + + + + utilitiesCommunication + + + utilitiesCommunication + + + energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks + + + energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks + + + + + + + extraTerrestrial + + + extraTerrestrial + + + region more than 100 km above the surface of the Earth + + + region more than 100 km above the surface of the Earth + + + + + + + disaster + + + disaster + + + Information related to disasters. Examples: site of the disaster, evacuation zone, disaster-prevention facility, disaster relief activities + + + Information related to disasters. Examples: site of the disaster, evacuation zone, disaster-prevention facility, disaster relief activities + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mri/1.0/identification.xsd b/inst/extdata/schemas/19115/-3/mri/1.0/identification.xsd new file mode 100644 index 00000000..b9d42e46 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mri/1.0/identification.xsd @@ -0,0 +1,517 @@ + + + + + + + + + + justification for the correlation of two resources + + + + + + + + + + + type of aggregation activity in which resources are related + + + + + + + + + + + associated resource information NOTE: An associated resource is a dataset composed of a collection of datasets + + + + + + + + + citation information about the associated resource + + + + + type of relation between the resources + + + + + type of initiative under which the associated resource was produced NOTE: the activity that resulted in the associated resource + + + + + reference to the metadata of the associated resource + + + + + + + + + + + + + + + + information required to identify a resource + + + + + + + + + + + description of the resource in the producer's processing environment, including items such as the software, the computer operating system, file name, and the dataset size + + + + + any other descriptive information about the resource + + + + + + + + + + + + + + + + basic information required to uniquely identify a resource or resources + + + + + + + + + citation for the resource(s) + + + + + brief narrative summary of the content of the resource(s) + + + + + summary of the intentions with which the resource(s) was developed + + + + + recognition of those who contributed to the resource(s) + + + + + status of the resource(s) + + + + + identification of, and means of communication with, person(s) and organisation(s) associated with the resource(s) + + + + + method used to spatially represent geographic information + + + + + factor which provides a general understanding of the density of spatial data in the resource + + + + + resolution of the resource with respect to time + + + + + main theme(s) of the resource + + + + + spatial and temporal extent of the resource + + + + + other documentation associated with the resource + + + + + code that identifies the level of processing in the producers coding system of a resource eg. NOAA level 1B + + + + + + + + + + + + + + + + + + + + + + + specification of a class to categorize keywords in a domain-specific vocabulary that has a binding to a formal ontology + + + + + + + + + character string to label the keyword category in natural language + + + + + URI of concept in ontology specified by the ontology attribute; this concept is labeled by the className: CharacterString. + + + + + a reference that binds the keyword class to a formal conceptualization of a knowledge domain for use in semantic processingNOTE: Keywords in the associated MD_Keywords keyword list must be within the scope of this ontology + + + + + + + + + + + + + + + + methods used to group similar keywords + + + + + + + + + + + keywords, their type and reference source NOTE: When the resource described is a service, one instance of MD_Keyword shall refer to the service taxonomy defined in ISO 19119, 8.3) + + + + + + + + + commonly used word(s) or formalised word(s) or phrase(s) used to describe the subject + + + + + subject matter used to group similar keywords + + + + + name of the formally registered thesaurus or a similar authoritative source of keywords + + + + + + + + + + + + + + + + + derived from ISO 19103 Scale where MD_RepresentativeFraction.denominator = 1 / Scale.measure And Scale.targetUnits = Scale.sourceUnits + + + + + + + + + the number below the line in a vulgar fraction + + + + + + + + + + + + + + + + level of detail expressed as a scale factor, a distance or an angle + + + + + + + + + level of detail expressed as the scale of a comparable hardcopy map or chart + + + + + horizontal ground sample distance + + + + + Vertical sampling distance + + + + + Angular sampling measure + + + + + brief textual description of the spatial resolution of the resource + + + + + + + + + + + + + + + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between general categories and the user is encouraged to select the one most appropriate. + + + + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between general categories and the user is encouraged to select the one most appropriate. + + + + + rearing of animals and/or cultivation of plantsExamples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock + + + + + flora and/or fauna in natural environment Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat + + + + + legal land descriptions Examples: political and administrative boundaries + + + + + processes and phenomena of the atmosphere Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation + + + + + economic activities, conditions and employment Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas + + + + + height above or below a vertical datumExamples: altitude, bathymetry, digital elevation models, slope, derived products + + + + + environmental resources, protection and conservation Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape + + + + + information pertaining to earth sciences Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion + + + + + health, health services, human ecology, and safety Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services + + + + + base maps Examples: land cover, topographic maps, imagery, unclassified images, annotations + + + + + military bases, structures, activities Examples: barracks, training grounds, military transportation, information collection + + + + + inland water features, drainage systems and their characteristics Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrographic charts + + + + + positional information and services Examples: addresses, geodetic networks, control points, postal zones and services, place names + + + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tidal waves, coastal information, reefs + + + + + information used for appropriate actions for future use of the land Examples: land use maps, zoning maps, cadastral surveys, land ownership + + + + + characteristics of society and cultures Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information + + + + + man-made construction Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + + + + + means and aids for conveying persons and/or goods Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways + + + + + energy, water and waste systems and communications infrastructure and servicesExamples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks + + + + + region more than 100 km above the surface of the Earth + + + + + + + + + + + + + + brief description of ways in which the resource(s) is/are currently or has been used + + + + + + + + + brief description of the resource and/or resource series usage + + + + + date and time of the first use or range of uses of the resource and/or resource series + + + + + applications, determined by the user for which the resource and/or resource series is not suitable + + + + + identification of and means of communicating with person(s) and organisation(s) using the resource(s) + + + + + response to the user-determined limitationsE.G.. 'this has been fixed in version x' + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mri/1.0/mri.sch b/inst/extdata/schemas/19115/-3/mri/1.0/mri.sch new file mode 100644 index 00000000..2b0f0d90 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mri/1.0/mri.sch @@ -0,0 +1,337 @@ + + + + + + + + + + + + + + + + + The dataset MUST provide a + geographic description or a bounding box. + Le jeu de données DOIT être décrit par + une description géographique ou une emprise. + + The dataset geographic description is: + "". + La description géographique du jeu de données est + "". + + + The dataset geographic bounding box is: + [W:, + S:], + [E:, + N:], + . + L'emprise géographique du jeu de données est + [W:, + S:], + [E:, + N:] + . + + + + Dataset extent + Emprise du jeu de données + + + + + + + + + + + + + + + + + + + + + + A topic category MUST be specified for + dataset or series. + Un thème principal (ISO) DOIT être défini quand + la ressource est un jeu de donnée ou une série. + + Number of topic category identified: + . + Nombre de thèmes : + . + + + + + Topic category for dataset and series + Thème principal d'un jeu de données ou d'une série + + + + + + + + + + + + + + + + + + When a resource is associated, a name or a metadata + reference MUST be specified. + Lorsqu'une resource est associée, un nom ou une + référence à une fiche DOIT être défini. + + The resource "" + is associated. + La ressource "" + est associée. + + + + Associated resource name + Nom ou référence à une ressource associée + + + + + + + + + + + + + + + + + + + + + + + + + + Resource language MUST be defined when the resource + includes textual information. + La langue de la resource DOIT être renseignée + lorsque la ressource contient des informations textuelles. + + Number of resource language: + . + Nombre de langues de la ressource : + . + + + + Resource language + Langue de la ressource + + + + + + + + + + + + + + + + + + + + + + A service metadata SHALL refer to the service + taxonomy defined in ISO19119 defining one or more value in the + keyword section. + Une métadonnée de service DEVRAIT référencer + un type de service tel que défini dans l'ISO19119 dans la + section mot clé. + + Number of service taxonomy specified: + . + Nombre de types de service : + . + + + + Service taxonomy + Taxonomie des services + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mri/1.0/mri.xsd b/inst/extdata/schemas/19115/-3/mri/1.0/mri.xsd new file mode 100644 index 00000000..80564bd5 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mri/1.0/mri.xsd @@ -0,0 +1,9 @@ + + + Namespace for XML elements <font color="#1f497d">used to document basic metadata properties of a described resource</font> + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrl/.DS_Store b/inst/extdata/schemas/19115/-3/mrl/.DS_Store new file mode 100644 index 00000000..b100cb82 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mrl/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mrl/1.0/lineage.xsd b/inst/extdata/schemas/19115/-3/mrl/1.0/lineage.xsd new file mode 100644 index 00000000..617d3e6f --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrl/1.0/lineage.xsd @@ -0,0 +1,147 @@ + + + + + + + + + information about the events or source data used in constructing the data specified by the scope or lack of knowledge about lineage + + + + + + + + + general explanation of the data producer's knowledge about the lineage of a resource + + + + + type of resource and/or extent to which the lineage information applies + + + + + + + + + + + + + + + + + + + information about an event or transformation in the life of a resource including the process used to maintain the resource + + + + + + + + + description of the event, including related parameters or tolerances + + + + + requirement or purpose for the process step + + + + + date, time, range or period of process step + + + + + identification of, and means of communication with, person(s) and organisation(s) associated with the process step + + + + + process step documentation + + + + + type of resource and/or extent to which the process step applies + + + + + + + + + + + + + + + + + information about the source resource used in creating the data specified by the scope + + + + + + + + + detailed description of the level of the source resource + + + + + level of detail expressed as a scale factor, a distance or an angle + + + + + spatial reference system used by the source resource + + + + + recommended reference to be used for the source resource + + + + + identifier and link to source metadata + + + + + type of resource and/or extent of the source + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrl/1.0/lineageImagery.xsd b/inst/extdata/schemas/19115/-3/mrl/1.0/lineageImagery.xsd new file mode 100644 index 00000000..e5b186e0 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrl/1.0/lineageImagery.xsd @@ -0,0 +1,236 @@ + + + + + + + + Description: Details of the methodology by which geographic information was derived from the instrument readings +FGDC: Algorithm_Information +shortName: Algorithm + + + + + + + + + Description: information identifying the algorithm and version or date +FGDC: Algorithm_Identifiers +Position: 1 +shortName: algId + + + + + Description: information describing the algorithm used to generate the data +FGDC: Algorithm_Description +Position: 2 +shortName: algDesc + + + + + + + + + + + + + + + + Description: Distance between adjacent pixels +shortName: nomRes + + + + + + + + + Description: Distance between adjacent pixels in the scan plane +shortName: scanRes + + + + + Description: Distance between adjacent pixels in the object space +shortName: groundRes + + + + + + + + + + + + + + + + Description: Information about an event or transformation in the life of the dataset including details of the algorithm and software used for processing +FGDC: +shortName: DetailProcStep + + + + + + + + + + + + + + + + + + + + + + + Description: Report of what occured during the process step +shortName: ProcStepRep + + + + + + + + + Description: Name of the processing report +shortName: procRepName + + + + + Description: Textual description of what occurred during the process step +shortName: procRepDesc + + + + + Description: Type of file that contains that processing report +shortName: procRepFilTyp + + + + + + + + + + + + + + + + Description: Comprehensive information about the procedure(s), process(es) and algorithm(s) applied in the process step +shortName: Procsg + + + + + + + + + + Description: Information to identify the processing package that produced the data +FGDC: Processing_Identifiers +Position: 1 +shortName: procInfoId + + + + + Description: Reference to document describing processing software +FGDC: Processing_Software_Reference +Position: 2 +shortName: procInfoSwRef + + + + + Description: Additional details about the processing procedures +FGDC: Processing_Procedure_Description +Position: 3 +shortName: procInfoDesc + + + + + Description: Reference to documentation describing the processing +FGDC: Processing_Documentation +Position: 4 +shortName: procInfoDoc + + + + + Description: Parameters to control the processing operations, entered at run time +FGDC: Command_Line_Processing_Parameter +Position: 5 +shortName: procInfoParam + + + + + + + + + + + + + + + + Description: information on source of data sets for processing step +shortName: SrcDataset + + + + + + + + + Description: Processing level of the source data +shortName: procLevel + + + + + Description: Distance between two adjacent pixels +shortName: procResol + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrl/1.0/mrl.xsd b/inst/extdata/schemas/19115/-3/mrl/1.0/mrl.xsd new file mode 100644 index 00000000..a174ebe7 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrl/1.0/mrl.xsd @@ -0,0 +1,9 @@ + + + Namespace for XML elements <font color="#1f497d">used to document the lineage (provenance) of a resource</font>. + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrl/2.0/lineage.xsd b/inst/extdata/schemas/19115/-3/mrl/2.0/lineage.xsd new file mode 100644 index 00000000..1a1cb3bc --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrl/2.0/lineage.xsd @@ -0,0 +1,147 @@ + + + + + + + + + information about the events or source data used in constructing the data specified by the scope or lack of knowledge about lineage + + + + + + + + + general explanation of the data producer's knowledge about the lineage of a resource + + + + + type of resource and/or extent to which the lineage information applies + + + + + + + + + + + + + + + + + + + information about an event or transformation in the life of a resource including the process used to maintain the resource + + + + + + + + + description of the event, including related parameters or tolerances + + + + + requirement or purpose for the process step + + + + + date, time, range or period of process step + + + + + identification of, and means of communication with, person(s) and organisation(s) associated with the process step + + + + + process step documentation + + + + + type of resource and/or extent to which the process step applies + + + + + + + + + + + + + + + + + information about the source resource used in creating the data specified by the scope + + + + + + + + + detailed description of the level of the source resource + + + + + level of detail expressed as a scale factor, a distance or an angle + + + + + spatial reference system used by the source resource + + + + + recommended reference to be used for the source resource + + + + + identifier and link to source metadata + + + + + type of resource and/or extent of the source + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrl/2.0/lineageImagery.xsd b/inst/extdata/schemas/19115/-3/mrl/2.0/lineageImagery.xsd new file mode 100644 index 00000000..6fdb6fd8 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrl/2.0/lineageImagery.xsd @@ -0,0 +1,312 @@ + + + + + + + + + + Description: Details of the methodology by which geographic information was derived from the instrument readings FGDC: Algorithm_Information shortName: Algorithm + + + + + + + + + Description: information identifying the algorithm and version or date FGDC: Algorithm_Identifiers Position: 1 shortName: algId + + + + + Description: information describing the algorithm used to generate the data FGDC: Algorithm_Description Position: 2 shortName: algDesc + + + + + + + + + + + + + + + + Description: Distance between adjacent pixels shortName: nomRes + + + + + + + + + Description: Distance between adjacent pixels in the scan plane shortName: scanRes + + + + + Description: Distance between adjacent pixels in the object space shortName: groundRes + + + + + + + + + + + + + + + + Description: Information about an event or transformation in the life of the dataset including details of the algorithm and software used for processing FGDC: shortName: DetailProcStep + + + + + + + + + + + + + + + + + + + + + + + Description: Report of what occured during the process step shortName: ProcStepRep + + + + + + + + + Description: Name of the processing report shortName: procRepName + + + + + Description: Textual description of what occurred during the process step shortName: procRepDesc + + + + + Description: Type of file that contains that processing report shortName: procRepFilTyp + + + + + + + + + + + + + + + + Description: Comprehensive information about the procedure(s), process(es) and algorithm(s) applied in the process step shortName: Procsg + + + + + + + + + + Description: Information to identify the processing package that produced the data FGDC: Processing_Identifiers Position: 1 shortName: procInfoId + + + + + Description: Reference to document describing processing software FGDC: Processing_Software_Reference Position: 2 shortName: procInfoSwRef + + + + + Description: Additional details about the processing procedures FGDC: Processing_Procedure_Description Position: 3 shortName: procInfoDesc + + + + + Description: Reference to documentation describing the processing FGDC: Processing_Documentation Position: 4 shortName: procInfoDoc + + + + + Description: Parameters to control the processing operations, entered at run time FGDC: Command_Line_Processing_Parameter Position: 5 shortName: procInfoParam + + + + + type of other property description (i.e. netcdf/variable in ncml.xsd or AdditionalAttribute in ECHO) + + + + + type of other property description (i.e. netcdf/variable in ncml.xsd or AdditionalAttribute in ECHO) + + + + + instance of otherPropertyType that defines attributes not explicitly included in LE_Processing + + + + + + + + + + + + + + + + Description: information on source of data sets for processing step shortName: SrcDataset + + + + + + + + + Description: Processing level of the source data shortName: procLevel + + + + + Description: Distance between two adjacent pixels shortName: procResol + + + + + + + + + + + + + + + + This was added as part of the 19115-2 Revision + + + + + + + + + the name, as used by the process for this parameter + + + + + indication if the parameter is an input to the service, an output or both + + + + + a narrative explanation of the role of the parameter + + + + + indication if the parameter is required + + + + + indication if more than one value of the parameter may be provided + + + + + type of other property description (i.e. netcdf/variable in ncml.xsd or AdditionalAttribute in ECHO) + + + + + instance of otherPropertyType that defines attributes not explicitly included in LE_Processing + + + + + xxx + + + + + + + + + + + + + + + + + direction of parameter (in, out, in/out) + + + + + direction of parameter (in, out, in/out) + + + + + the parameter is an input parameter to the process + + + + + the parameter is an output parameter to the process + + + + + the parameter is both an input and output parameter to the process + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrl/2.0/mrl.xsd b/inst/extdata/schemas/19115/-3/mrl/2.0/mrl.xsd new file mode 100644 index 00000000..21f67123 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrl/2.0/mrl.xsd @@ -0,0 +1,11 @@ + + + + Namespace for XML elements <font color="#1f497d">used to document the lineage (provenance) of a resource</font>. + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrs/.DS_Store b/inst/extdata/schemas/19115/-3/mrs/.DS_Store new file mode 100644 index 00000000..e4af814a Binary files /dev/null and b/inst/extdata/schemas/19115/-3/mrs/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/mrs/1.0/codelists.html b/inst/extdata/schemas/19115/-3/mrs/1.0/codelists.html new file mode 100644 index 00000000..4f12e182 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrs/1.0/codelists.html @@ -0,0 +1,323 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Reference System (mrs) Namespace
Scope: Codelists from the Metadata for Reference System (mrs) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 0.1
Date: 2017-09-10
Number of CodeLists: 1
Number of items: 28 +
+

Codelists

+ MD_ReferenceSystemTypeCode + : +

Description: + defines type of reference system used +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrs/1.0
Number of items: 28 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ compoundEngineeringParametric + + + compound statio-parametric coordinate reference system containing an engineering coordinate reference system and a parametric + reference system. e.g. [local] x, y, pressure + +
+ compoundEngineeringParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing an engineering, a parametric, and a temporal coordinate + reference system. e.g. [local] x, y, pressure, time + +
+ compoundEngineeringTemporal + + + compound spatio-temporal coordinate reference system containing an engineering and a temporal coordinate reference system. + e.g. [local] x, y, time + +
+ compoundEngineeringVertical + + + compound spatial reference system containing a horizontal engineering coordinate reference system and a vertical coordinate + reference system. e.g. [local] x, y, height + +
+ compoundEngineeringVerticalTemporal + + + compound spatio-temporal coordinate reference system containing an engineering, a vertical, and a temporal coordinate reference + system. e.g. [local] x, y, height, time + +
+ compoundGeodeticParametric + + + compound statio-parametric coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference + system and a parametric reference system. e.g. latitude, longitude, pressure + +
+ compoundGeodeticParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a parametric + and a temporal coordinate reference system. e.g. latitude, longitude, pressure, time + +
+ compoundGeographic2DTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference + system and a temporal reference system. e.g. latitude, longitude, time + +
+ compoundGeographic2DVertical + + + compound coordinate reference system in which one constituent coordinate reference system is a horizontal geodetic coordinate + reference system and one is a vertical coordinate reference system. e.g. latitude, longitude, [gravity-related] height or + depth + +
+ compoundGeographicVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a vertical, and a temporal + coordinate reference system. e.g. latitude, longitude, height, time + +
+ compoundGeographic3DTemporal + + + compound spatio-temporal coordinate reference system containing a 3 dimensional geographic and a temporal coordinate reference + system. e.g. latitude, longitude, ellipsoidal height, time + +
+ compoundProjected2DParametric + + + compound statio-parametric coordinate reference system containing a projected horizontal coordinate reference system and a + parametric reference system. e.g. easting, northing, density + +
+ compoundProjected2DParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a projected horizontal, a parametric, and a temporal + coordinate reference system. e.g. easting, northing, density, time + +
+ compoundProjectedTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal and a temporal coordinate reference + system. e.g. easting, northing, time + +
+ compoundProjectedVertical + + + compound spatial reference system containing a horizontal projected coordinate reference system and a vertical coordinate + reference system. e.g. easting, northing, [gravity-related] height or depth + +
+ compoundProjectedVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal, a vertical, and a temporal coordinate + reference system. e.g. easting, northing, height, time + +
+ engineering + + + coordinate reference system based on an engineering datum (datum describing the relationship of a coordinate system to a local + reference). e.g. [local] x,y + +
+ engineeringDesign + + + engineering coordinate reference system in which the base representation of a moving object is specified. e.g. [local] x,y + +
+ engineeringImage + + + coordinate reference system based on an image datum (engineering datum which defines the relationship of a coordinate system + to an image). e.g. row, column + +
+ geodeticGeocentric + + + geodetic CRS having a Cartesian 3D coordinate system. e.g. [geocentric] X,Y,Z + +
+ geodeticGeographic2D + + + geodetic CRS having an ellipsoidal 2D coordinate system. e.g. latitude, longitude + +
+ geodeticGeographic3D + + + geodetic CRS having an ellipsoidal 3D coordinate system. e.g. latitude, longitude, ellipsoidal height + +
+ geographicIdentifier + + + spatial reference in the form of a label or code that identifies a location. e.g. post code + +
+ linear + + + set of Linear Referencing Methods and the policies, records and procedures for implementing them. reference system that identifies + a location by reference to a segment of a linear geographic feature and distance along that segment from a given point. e.g. + x km along road + +
+ parametric + + + coordinate reference system based on a parametric datum (datum describing the relationship of a parametric coordinate system + to an object). e.g. pressure + +
+ projected + + + coordinate reference system derived from a two-dimensional geodetic coordinate reference system by applying a map projection. + e.g. easting, northing + +
+ temporal + + + reference system against which time is measured. e.g. time + +
+ vertical + + + one-dimensional coordinate reference system based on a vertical datum (datum describing the relation of gravity-related heights + or depths to the Earth). e.g. [gravity-related] height or depth + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/mrs/1.0/codelists.xml b/inst/extdata/schemas/19115/-3/mrs/1.0/codelists.xml new file mode 100644 index 00000000..c0c2fa27 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrs/1.0/codelists.xml @@ -0,0 +1,495 @@ + + + + + Codelists from the Metadata for Reference System (mrs) Namespace + + + Codelists from the Metadata for Reference System (mrs) Namespace + + + ISO TC211 Metadata Standards + + + 0.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + MD_ReferenceSystemTypeCode + + + MD_ReferenceSystemTypeCode + + + defines type of reference system used + + + defines type of reference system used + + + + + compoundEngineeringParametric + + + compoundEngineeringParametric + + + compound statio-parametric coordinate reference system containing an engineering coordinate reference system and a parametric reference system. e.g. [local] x, y, pressure + + + compound statio-parametric coordinate reference system containing an engineering coordinate reference system and a parametric reference system. e.g. [local] x, y, pressure + + + + + + + compoundEngineeringParametricTemporal + + + compoundEngineeringParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing an engineering, a parametric, and a temporal coordinate reference system. e.g. [local] x, y, pressure, time + + + compound statio-parametric-temporal coordinate reference system containing an engineering, a parametric, and a temporal coordinate reference system. e.g. [local] x, y, pressure, time + + + + + + + compoundEngineeringTemporal + + + compoundEngineeringTemporal + + + compound spatio-temporal coordinate reference system containing an engineering and a temporal coordinate reference system. e.g. [local] x, y, time + + + compound spatio-temporal coordinate reference system containing an engineering and a temporal coordinate reference system. e.g. [local] x, y, time + + + + + + + compoundEngineeringVertical + + + compoundEngineeringVertical + + + compound spatial reference system containing a horizontal engineering coordinate reference system and a vertical coordinate reference system. e.g. [local] x, y, height + + + compound spatial reference system containing a horizontal engineering coordinate reference system and a vertical coordinate reference system. e.g. [local] x, y, height + + + + + + + compoundEngineeringVerticalTemporal + + + compoundEngineeringVerticalTemporal + + + compound spatio-temporal coordinate reference system containing an engineering, a vertical, and a temporal coordinate reference system. e.g. [local] x, y, height, time + + + compound spatio-temporal coordinate reference system containing an engineering, a vertical, and a temporal coordinate reference system. e.g. [local] x, y, height, time + + + + + + + compoundGeodeticParametric + + + compoundGeodeticParametric + + + compound statio-parametric coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a parametric reference system. e.g. latitude, longitude, pressure + + + compound statio-parametric coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a parametric reference system. e.g. latitude, longitude, pressure + + + + + + + compoundGeodeticParametricTemporal + + + compoundGeodeticParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a parametric and a temporal coordinate reference system. e.g. latitude, longitude, pressure, time + + + compound statio-parametric-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a parametric and a temporal coordinate reference system. e.g. latitude, longitude, pressure, time + + + + + + + compoundGeographic2DTemporal + + + compoundGeographic2DTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a temporal reference system. e.g. latitude, longitude, time + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a temporal reference system. e.g. latitude, longitude, time + + + + + + + compoundGeographic2DVertical + + + compoundGeographic2DVertical + + + compound coordinate reference system in which one constituent coordinate reference system is a horizontal geodetic coordinate reference system and one is a vertical coordinate reference system. e.g. latitude, longitude, [gravity-related] height or depth + + + compound coordinate reference system in which one constituent coordinate reference system is a horizontal geodetic coordinate reference system and one is a vertical coordinate reference system. e.g. latitude, longitude, [gravity-related] height or depth + + + + + + + compoundGeographicVerticalTemporal + + + compoundGeographicVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a vertical, and a temporal coordinate reference system. e.g. latitude, longitude, height, time + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a vertical, and a temporal coordinate reference system. e.g. latitude, longitude, height, time + + + + + + + compoundGeographic3DTemporal + + + compoundGeographic3DTemporal + + + compound spatio-temporal coordinate reference system containing a 3 dimensional geographic and a temporal coordinate reference system. e.g. latitude, longitude, ellipsoidal height, time + + + compound spatio-temporal coordinate reference system containing a 3 dimensional geographic and a temporal coordinate reference system. e.g. latitude, longitude, ellipsoidal height, time + + + + + + + compoundProjected2DParametric + + + compoundProjected2DParametric + + + compound statio-parametric coordinate reference system containing a projected horizontal coordinate reference system and a parametric reference system. e.g. easting, northing, density + + + compound statio-parametric coordinate reference system containing a projected horizontal coordinate reference system and a parametric reference system. e.g. easting, northing, density + + + + + + + compoundProjected2DParametricTemporal + + + compoundProjected2DParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a projected horizontal, a parametric, and a temporal coordinate reference system. e.g. easting, northing, density, time + + + compound statio-parametric-temporal coordinate reference system containing a projected horizontal, a parametric, and a temporal coordinate reference system. e.g. easting, northing, density, time + + + + + + + compoundProjectedTemporal + + + compoundProjectedTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal and a temporal coordinate reference system. e.g. easting, northing, time + + + compound spatio-temporal coordinate reference system containing a projected horizontal and a temporal coordinate reference system. e.g. easting, northing, time + + + + + + + compoundProjectedVertical + + + compoundProjectedVertical + + + compound spatial reference system containing a horizontal projected coordinate reference system and a vertical coordinate reference system. e.g. easting, northing, [gravity-related] height or depth + + + compound spatial reference system containing a horizontal projected coordinate reference system and a vertical coordinate reference system. e.g. easting, northing, [gravity-related] height or depth + + + + + + + compoundProjectedVerticalTemporal + + + compoundProjectedVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal, a vertical, and a temporal coordinate reference system. e.g. easting, northing, height, time + + + compound spatio-temporal coordinate reference system containing a projected horizontal, a vertical, and a temporal coordinate reference system. e.g. easting, northing, height, time + + + + + + + engineering + + + engineering + + + coordinate reference system based on an engineering datum (datum describing the relationship of a coordinate system to a local reference). e.g. [local] x,y + + + coordinate reference system based on an engineering datum (datum describing the relationship of a coordinate system to a local reference). e.g. [local] x,y + + + + + + + engineeringDesign + + + engineeringDesign + + + engineering coordinate reference system in which the base representation of a moving object is specified. e.g. [local] x,y + + + engineering coordinate reference system in which the base representation of a moving object is specified. e.g. [local] x,y + + + + + + + engineeringImage + + + engineeringImage + + + coordinate reference system based on an image datum (engineering datum which defines the relationship of a coordinate system to an image). e.g. row, column + + + coordinate reference system based on an image datum (engineering datum which defines the relationship of a coordinate system to an image). e.g. row, column + + + + + + + geodeticGeocentric + + + geodeticGeocentric + + + geodetic CRS having a Cartesian 3D coordinate system. e.g. [geocentric] X,Y,Z + + + geodetic CRS having a Cartesian 3D coordinate system. e.g. [geocentric] X,Y,Z + + + + + + + geodeticGeographic2D + + + geodeticGeographic2D + + + geodetic CRS having an ellipsoidal 2D coordinate system. e.g. latitude, longitude + + + geodetic CRS having an ellipsoidal 2D coordinate system. e.g. latitude, longitude + + + + + + + geodeticGeographic3D + + + geodeticGeographic3D + + + geodetic CRS having an ellipsoidal 3D coordinate system. e.g. latitude, longitude, ellipsoidal height + + + geodetic CRS having an ellipsoidal 3D coordinate system. e.g. latitude, longitude, ellipsoidal height + + + + + + + geographicIdentifier + + + geographicIdentifier + + + spatial reference in the form of a label or code that identifies a location. e.g. post code + + + spatial reference in the form of a label or code that identifies a location. e.g. post code + + + + + + + linear + + + linear + + + set of Linear Referencing Methods and the policies, records and procedures for implementing them. reference system that identifies a location by reference to a segment of a linear geographic feature and distance along that segment from a given point. e.g. x km along road + + + set of Linear Referencing Methods and the policies, records and procedures for implementing them. reference system that identifies a location by reference to a segment of a linear geographic feature and distance along that segment from a given point. e.g. x km along road + + + + + + + parametric + + + parametric + + + coordinate reference system based on a parametric datum (datum describing the relationship of a parametric coordinate system to an object). e.g. pressure + + + coordinate reference system based on a parametric datum (datum describing the relationship of a parametric coordinate system to an object). e.g. pressure + + + + + + + projected + + + projected + + + coordinate reference system derived from a two-dimensional geodetic coordinate reference system by applying a map projection. e.g. easting, northing + + + coordinate reference system derived from a two-dimensional geodetic coordinate reference system by applying a map projection. e.g. easting, northing + + + + + + + temporal + + + temporal + + + reference system against which time is measured. e.g. time + + + reference system against which time is measured. e.g. time + + + + + + + vertical + + + vertical + + + one-dimensional coordinate reference system based on a vertical datum (datum describing the relation of gravity-related heights or depths to the Earth). e.g. [gravity-related] height or depth + + + one-dimensional coordinate reference system based on a vertical datum (datum describing the relation of gravity-related heights or depths to the Earth). e.g. [gravity-related] height or depth + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrs/1.0/mrs.sch b/inst/extdata/schemas/19115/-3/mrs/1.0/mrs.sch new file mode 100644 index 00000000..ec49bdaa --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrs/1.0/mrs.sch @@ -0,0 +1,16 @@ + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrs/1.0/mrs.xsd b/inst/extdata/schemas/19115/-3/mrs/1.0/mrs.xsd new file mode 100644 index 00000000..8ce0fef9 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrs/1.0/mrs.xsd @@ -0,0 +1,8 @@ + + + Namespace for XML elements <font color="#1f497d">used to document the spatial reference system used to geolocate information content of a resource</font> + + + + + diff --git a/inst/extdata/schemas/19115/-3/mrs/1.0/referenceSystem.xsd b/inst/extdata/schemas/19115/-3/mrs/1.0/referenceSystem.xsd new file mode 100644 index 00000000..1126cade --- /dev/null +++ b/inst/extdata/schemas/19115/-3/mrs/1.0/referenceSystem.xsd @@ -0,0 +1,47 @@ + + + + + + + + information about the reference system + + + + + + + + + identifier and codespace for reference systeme.g. EPSG::4326 + + + + + type of reference system identifiede.g. geographic2D + + + + + + + + + + + + + + + + defines type of reference system used + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/msr/.DS_Store b/inst/extdata/schemas/19115/-3/msr/.DS_Store new file mode 100644 index 00000000..dd7d7134 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/msr/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/msr/1.0/msr.xsd b/inst/extdata/schemas/19115/-3/msr/1.0/msr.xsd new file mode 100644 index 00000000..49f75f92 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/msr/1.0/msr.xsd @@ -0,0 +1,10 @@ + + + Namespace for XML elements <font color="#1f497d">used to document the encoding scheme used to represent geolocation in the content of a resource</font>. + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/msr/1.0/spatialRepresentation.xsd b/inst/extdata/schemas/19115/-3/msr/1.0/spatialRepresentation.xsd new file mode 100644 index 00000000..a91be9da --- /dev/null +++ b/inst/extdata/schemas/19115/-3/msr/1.0/spatialRepresentation.xsd @@ -0,0 +1,375 @@ + + + Frequency with which modifications and deletions are made to the data after it is first produced + + + + + + + + + + digital mechanism used to represent spatial information + + + + + + + + + + + + + + + + + + + + + + code indicating the geometry represented by the grid cell value + + + + + + + + + + + axis properties + + + + + + + + + name of the axis + + + + + number of elements along the axis + + + + + + degree of detail in the grid dataset + + + + + enhancement/modifier of the dimension name EX for other time dimension 'runtime' or dimensionName = 'column' dimensionTitle = 'Longitude' + + + + + Description of the axis + + + + + + + + + + + + + + + + name of the dimension + + + + + + + + + + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + + + + + + + + + + + number of objects, listed by geometric object type, used in the dataset + + + + + + + + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + + + + + total number of the point or vector object type occurring in the dataset + + + + + + + + + + + + + + + + grid whose cells are regularly spaced in a geographic (i.e., lat / long) or map coordinate system defined in the Spatial Referencing System (SRS) so that any cell in the grid can be geolocated given its grid coordinate and the grid origin, cell spacing, and orientation + + + + + + + + + indication of whether or not geographic position points are available to test the accuracy of the georeferenced grid data + + + + + description of geographic position points used to test the accuracy of the georeferenced grid data + + + + + earth location in the coordinate system defined by the Spatial Reference System and the grid coordinate of the cells at opposite ends of grid coverage along two diagonals in the grid spatial dimensions. There are four corner points in a georectified grid; at least two corner points along one diagonal are required. The first corner point corresponds to the origin of the grid. + + + + + earth location in the coordinate system defined by the Spatial Reference System and the grid coordinate of the cell halfway between opposite ends of the grid in the spatial dimensions + + + + + point in a pixel corresponding to the Earth location of the pixel + + + + + general description of the transformation + + + + + information about which grid axes are the spatial (map) axes + + + + + + + + + + + + + + + + grid with cells irregularly spaced in any given geographic/map projection coordinate system, whose individual cells can be geolocated using geolocation information supplied with the data but cannot be geolocated from the grid properties alone + + + + + + + + + indication of whether or not control point(s) exists + + + + + indication of whether or not orientation parameters are available + + + + + description of parameters used to describe sensor orientation + + + + + terms which support grid data georeferencing + + + + + reference providing description of the parameters + + + + + + + + + + + + + + + + + information about grid spatial objects in the resource + + + + + + + + + number of independent spatial-temporal axes + + + + + information about spatial-temporal axis properties + + + + + identification of grid data as point or cell + + + + + indication of whether or not parameters for transformation between image coordinates and geographic or map coordinates exist (are available) + + + + + + + + + + + + + + + + point in a pixel corresponding to the Earth location of the pixel + + + + + point in a pixel corresponding to the Earth location of the pixel + + + + + point halfway between the lower left and the upper right of the pixel + + + + + the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value + + + + + next corner counterclockwise from the lower left + + + + + next corner counterclockwise from the lower right + + + + + next corner counterclockwise from the upper right + + + + + + + + + + + + + degree of complexity of the spatial relationships + + + + + + + + + + + + + information about the vector spatial objects in the resource + + + + + + + + + code which identifies the degree of complexity of the spatial relationships + + + + + information about the geometric objects used in the resource + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/msr/1.0/spatialRepresentationImagery.xsd b/inst/extdata/schemas/19115/-3/msr/1.0/spatialRepresentationImagery.xsd new file mode 100644 index 00000000..85d33983 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/msr/1.0/spatialRepresentationImagery.xsd @@ -0,0 +1,119 @@ + + + + Name: SpatialRepresentation +Position: 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: extends georectified grid description to include associated checkpoints +shortName: IGeorect + + + + + + + + + + + + + + + + + + + + + Description: Description of information provided in metadata that allows the geographic or map location raster points to be located +FGDC: Georeferencing_Description +shortName: IGeoref + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/msr/2.0/msr.xsd b/inst/extdata/schemas/19115/-3/msr/2.0/msr.xsd new file mode 100644 index 00000000..7d976f78 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/msr/2.0/msr.xsd @@ -0,0 +1,15 @@ + + + + Namespace for XML elements <font color="#1f497d">used to document the encoding scheme used to represent geolocation in the content of a resource</font>. + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/msr/2.0/spatialRepresentation.xsd b/inst/extdata/schemas/19115/-3/msr/2.0/spatialRepresentation.xsd new file mode 100644 index 00000000..977e64d4 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/msr/2.0/spatialRepresentation.xsd @@ -0,0 +1,381 @@ + + + Frequency with which modifications and deletions are made to the data after it is first produced + + + + + + + + + + digital mechanism used to represent spatial information + + + + + + + + + level and extent of the spatial representation + + + + + + + + + + + + + + + + + + + code indicating the geometry represented by the grid cell value + + + + + + + + + + + axis properties + + + + + + + + + name of the axis + + + + + number of elements along the axis + + + + + + degree of detail in the grid dataset + + + + + enhancement/modifier of the dimension name EX for other time dimension 'runtime' or dimensionName = 'column' dimensionTitle = 'Longitude' + + + + + Description of the axis + + + + + + + + + + + + + + + + name of the dimension + + + + + + + + + + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + + + + + + + + + + + number of objects, listed by geometric object type, used in the dataset + + + + + + + + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + + + + + total number of the point or vector object type occurring in the dataset + + + + + + + + + + + + + + + + grid whose cells are regularly spaced in a geographic (i.e., lat / long) or map coordinate system defined in the Spatial Referencing System (SRS) so that any cell in the grid can be geolocated given its grid coordinate and the grid origin, cell spacing, and orientation + + + + + + + + + indication of whether or not geographic position points are available to test the accuracy of the georeferenced grid data + + + + + description of geographic position points used to test the accuracy of the georeferenced grid data + + + + + earth location in the coordinate system defined by the Spatial Reference System and the grid coordinate of the cells at opposite ends of grid coverage along two diagonals in the grid spatial dimensions. There are four corner points in a georectified grid; at least two corner points along one diagonal are required. The first corner point corresponds to the origin of the grid. + + + + + earth location in the coordinate system defined by the Spatial Reference System and the grid coordinate of the cell halfway between opposite ends of the grid in the spatial dimensions + + + + + point in a pixel corresponding to the Earth location of the pixel + + + + + general description of the transformation + + + + + information about which grid axes are the spatial (map) axes + + + + + + + + + + + + + + + + grid with cells irregularly spaced in any given geographic/map projection coordinate system, whose individual cells can be geolocated using geolocation information supplied with the data but cannot be geolocated from the grid properties alone + + + + + + + + + indication of whether or not control point(s) exists + + + + + indication of whether or not orientation parameters are available + + + + + description of parameters used to describe sensor orientation + + + + + terms which support grid data georeferencing + + + + + reference providing description of the parameters + + + + + + + + + + + + + + + + + information about grid spatial objects in the resource + + + + + + + + + number of independent spatial-temporal axes + + + + + information about spatial-temporal axis properties + + + + + identification of grid data as point or cell + + + + + indication of whether or not parameters for transformation between image coordinates and geographic or map coordinates exist (are available) + + + + + + + + + + + + + + + + point in a pixel corresponding to the Earth location of the pixel + + + + + point in a pixel corresponding to the Earth location of the pixel + + + + + point halfway between the lower left and the upper right of the pixel + + + + + the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value + + + + + next corner counterclockwise from the lower left + + + + + next corner counterclockwise from the lower right + + + + + next corner counterclockwise from the upper right + + + + + + + + + + + + + degree of complexity of the spatial relationships + + + + + + + + + + + + + information about the vector spatial objects in the resource + + + + + + + + + code which identifies the degree of complexity of the spatial relationships + + + + + information about the geometric objects used in the resource + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/msr/2.0/spatialRepresentationImagery.xsd b/inst/extdata/schemas/19115/-3/msr/2.0/spatialRepresentationImagery.xsd new file mode 100644 index 00000000..1d1ec882 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/msr/2.0/spatialRepresentationImagery.xsd @@ -0,0 +1,120 @@ + + + + Name: SpatialRepresentation +Position: 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Description: extends georectified grid description to include associated checkpoints +shortName: IGeorect + + + + + + + + + + + + + + + + + + + + + Description: Description of information provided in metadata that allows the geographic or map location raster points to be located +FGDC: Georeferencing_Description +shortName: IGeoref + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/srv/.DS_Store b/inst/extdata/schemas/19115/-3/srv/.DS_Store new file mode 100644 index 00000000..4289a731 Binary files /dev/null and b/inst/extdata/schemas/19115/-3/srv/.DS_Store differ diff --git a/inst/extdata/schemas/19115/-3/srv/2.0/codelists.html b/inst/extdata/schemas/19115/-3/srv/2.0/codelists.html new file mode 100644 index 00000000..b8053059 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/srv/2.0/codelists.html @@ -0,0 +1,91 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: Codelists from the Metadata for Services (srv) Namespace
Scope: Codelists from the Metadata for Services (srv) Namespace
Field of application: ISO TC211 Metadata Standards
Version: 0.1
Date: 2017-09-10
Number of CodeLists: 2
Number of items: 6 +
+

Codelists

+ SV_CouplingType + : +

Description: + type of coupling between service and associated data (if exists) +
CodeSpace: http://standards.iso.org/iso/19115/-3/srv/2.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ loose + + + service instance is loosely coupled with a data instance, i.e. no MD_DataIdentification class has to be described + +
+ mixed + + + service instance is mixed coupled with a data instance, i.e. MD_DataIdentification describes the associated data instance + and additionally the service instance might work with other external data instances + +
+ tight + + + service instance is tightly coupled with a data instance, i.e. MD_DataIdentification class MUST be described + +
top

+ SV_ParameterDirection + : +

Description: + class of information to which the referencing entity applies +
CodeSpace: http://standards.iso.org/iso/19115/-3/srv/2.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ in + + + the parameter is an input parameter to the service instance + +
+ out + + + the parameter is an output parameter to the service instance + +
+ in/out + + + the parameter is both an input and output parameter to the service instance + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/-3/srv/2.0/codelists.xml b/inst/extdata/schemas/19115/-3/srv/2.0/codelists.xml new file mode 100644 index 00000000..773c1d07 --- /dev/null +++ b/inst/extdata/schemas/19115/-3/srv/2.0/codelists.xml @@ -0,0 +1,340 @@ + + + + + Codelists from the Metadata for Services (srv) Namespace + + + Codelists from the Metadata for Services (srv) Namespace + + + ISO TC211 Metadata Standards + + + 0.1 + + + 2017-09-10 + + + + + eng + + + UTF-8 + + + + + + + + DCPList + + + DCPList + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + XML + + + XML + + + Extensible Markup Language + + + Extensible Markup Language + + + + + + + CORBA + + + CORBA + + + Common Object Request Broker Architecture + + + Common Object Request Broker Architecture + + + + + + + JAVA + + + JAVA + + + Object-oriented programming language + + + Object-oriented programming language + + + + + + + COM + + + COM + + + Component Object Model + + + Component Object Model + + + + + + + SQL + + + SQL + + + Structured Query Language + + + Structured Query Language + + + + + + + SOAP + + + SOAP + + + Simple Object Access Protocol + + + Simple Object Access Protocol + + + + + + + Z3950 + + + Z3950 + + + ISO 23950 + + + ISO 23950 + + + + + + + HTTP + + + HTTP + + + HyperText Transfer Protocol + + + HyperText Transfer Protocol + + + + + + + FTP + + + FTP + + + File Transfer Protocol + + + File Transfer Protocol + + + + + + + WebServices + + + WebServices + + + Web service + + + Web service + + + + + + + + + SV_CouplingType + + + SV_CouplingType + + + type of coupling between service and associated data (if exists) + + + type of coupling between service and associated data (if exists) + + + + + loose + + + loose + + + service instance is loosely coupled with a data instance, i.e. no MD_DataIdentification class has to be described + + + service instance is loosely coupled with a data instance, i.e. no MD_DataIdentification class has to be described + + + + + + + mixed + + + mixed + + + service instance is mixed coupled with a data instance, i.e. MD_DataIdentification describes the associated data instance and additionally the service instance might work with other external data instances + + + service instance is mixed coupled with a data instance, i.e. MD_DataIdentification describes the associated data instance and additionally the service instance might work with other external data instances + + + + + + + tight + + + tight + + + service instance is tightly coupled with a data instance, i.e. MD_DataIdentification class MUST be described + + + service instance is tightly coupled with a data instance, i.e. MD_DataIdentification class MUST be described + + + + + + + + + SV_ParameterDirection + + + SV_ParameterDirection + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + in + + + in + + + the parameter is an input parameter to the service instance + + + the parameter is an input parameter to the service instance + + + + + + + out + + + out + + + the parameter is an output parameter to the service instance + + + the parameter is an output parameter to the service instance + + + + + + + in/out + + + in/out + + + the parameter is both an input and output parameter to the service instance + + + the parameter is both an input and output parameter to the service instance + + + + + + diff --git a/inst/extdata/schemas/19115/-3/srv/2.0/serviceInformation.xsd b/inst/extdata/schemas/19115/-3/srv/2.0/serviceInformation.xsd new file mode 100644 index 00000000..e15245dc --- /dev/null +++ b/inst/extdata/schemas/19115/-3/srv/2.0/serviceInformation.xsd @@ -0,0 +1,272 @@ + + + + + + + + + class of information to which the referencing entity applies + + + + + + + + + + + links a given operationName (mandatory attribute of SV_OperationMetadata) with a data set identified by an 'identifier' + + + + + + + + + scoped identifier of the resource in the context of the given service instance NOTE: name of the resources (i.e. dataset) as it is used by a service instance (e.g. layer name or featureTypeName). + + + + + reference to the dataset on which the service operates + + + + + + + + + + + + + + + + + + class of information to which the referencing entity applies + + + + + + + + + + + Operation Chain Information + + + + + + + + + the name, as used by the service for this chain + + + + + a narrative explanation of the services in the chain and resulting output + + + + + + + + + + + + + + + + + describes the signature of one and only one method provided by the service + + + + + + + + + a unique identifier for this interface + + + + + distributed computing platforms on which the operation has been implemented + + + + + free text description of the intent of the operation and the results of the operation + + + + + the name used to invoke this interface within the context of the DCP. The name is identical for all DCPs. + + + + + handle for accessing the service interface + + + + + + + + + + + + + + + + + + parameter information + + + + + + + + + the name, as used by the service for this parameter + + + + + indication if the parameter is an input to the service, an output or both + + + + + a narrative explanation of the role of the parameter + + + + + indication if the parameter is required + + + + + indication if more than one value of the parameter may be provided + + + + + + + + + + + + + + + + class of information to which the referencing entity applies + + + + + class of information to which the referencing entity applies + + + + + the parameter is an input parameter to the service instance + + + + + the parameter is an output parameter to the service instance + + + + + the parameter is both an input and output parameter to the service instance + + + + + + + + + + + + + identification of capabilities which a service provider makes available to a service user through a set of interfaces that define a behaviour - See ISO 19119 for further information + + + + + + + + + a service type name, E.G. 'discovery', 'view', 'download', 'transformation', or 'invoke' + + + + + provide for searching based on the version of serviceType. For example, we may only be interested in OGC Catalogue V1.1 services. If version is maintained as a separate attribute, users can easily search for all services of a type regardless of the version + + + + + information about the availability of the service, including, 'fees' 'planned' 'available date and time' 'ordering instructions' 'turnaround' + + + + + type of coupling between service and associated data (if exists) + + + + + further description of the data coupling in the case of tightly coupled services + + + + + provides a reference to the dataset on which the service operates + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/srv/2.0/srv.sch b/inst/extdata/schemas/19115/-3/srv/2.0/srv.sch new file mode 100644 index 00000000..2245073f --- /dev/null +++ b/inst/extdata/schemas/19115/-3/srv/2.0/srv.sch @@ -0,0 +1,333 @@ + + + + + + + + The service identification does not contain chain or operation. + L'identification du service ne contient ni chaîne d'opérations, ni opération. + + + The service identification contains the following + number of chains: . + and number of operations: . + + L'identification du service contient + le nombre de chaînes d'opérations suivant : . + le nombre d'opérations : . + + + + Service identification MUST contains chain or operations + L'identification du service DOIT contenir des chaînes d'opérations + ou des opérations + + + + + + + + + + + + + + + + + + + + + The service identification MUST specify coupling type + when coupled resource exist + L'identification du service DOIT + définir un type de couplage lorsqu'une ressource est couplée. + + + Number of coupled resources: . + Coupling type: "". + + Nombre de ressources couplées : . + Type de couplage : "". + + + + Service identification MUST specify coupling type + when coupled resource exist + L'identification du service DOIT + définir un type de couplage lorsqu'une ressource est couplée + + + + + + + + + + + + + + + + + + The service identification define operatedDataset. + No operatesOn can be specified. + L'identification du service utilise operatedDataset. + OperatesOn ne peut être utilisé dans ce cas. + + Service identification only use operated dataset. + L'identification du service n'utilise que operatedDataset. + + + + Service identification MUST not use + both operatedDataset and operatesOn + L'identification du service NE DOIT PAS + utiliser en même temps operatedDataset et operatesOn + + + + + + + + + + + + + + + + + The service identification define operatesOn. + No operatedDataset can be specified. + L'identification du service utilise operatesOn. + OperatedDataset ne peut être utilisé dans ce cas. + + The service identification only use operates on. + L'identification du service n'utilise que + des éléments de type operatesOn. + + + + Service identification MUST not use + both operatesOn and operatedDataset + L'identification du service NE DOIT PAS + utiliser en même temps operatesOn et operatedDataset + + + + + + + + + + + + + + + + + + The coupled resource does not contains a resource + nor a resource reference. + La ressource couplée ne contient ni une ressource + ni une référence à une ressource. + + The coupled resource contains a resource or a resource reference. + La ressource couplée contient une ressource ou une référence + à une ressource. + + + + Coupled resource MUST contains + a resource or a resource reference + Une ressource couplée DOIT + définir une ressource ou une référence à une ressource + + + + + + + + + + + + + + + + + + + + + + The coupled resource contains both a resource + and a resource reference. + La ressource couplée utilise à la fois une ressource + et une référence à une ressource. + + The coupled resource contains only resources. + La ressource couplée contient uniquement des ressources. + + + + Coupled resource MUST not use + both resource and resource reference + Une ressource couplée NE DOIT PAS + utiliser en même temps une ressource et une référence + à une ressource + + + + + + + + + + + + + + + + + The coupled resource contains both a resource + and a resource reference. + La ressource couplée utilise à la fois une ressource + et une référence à une ressource. + + The coupled resource contains only resource references. + La ressource couplée contient uniquement des références à des ressources. + + + + Coupled resource MUST not use + both resource and resource reference + Une ressource couplée NE DOIT PAS + utiliser en même temps une ressource et une référence + à une ressource + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/-3/srv/2.0/srv.xsd b/inst/extdata/schemas/19115/-3/srv/2.0/srv.xsd new file mode 100644 index 00000000..9f51fedb --- /dev/null +++ b/inst/extdata/schemas/19115/-3/srv/2.0/srv.xsd @@ -0,0 +1,6 @@ + + + + + + diff --git a/inst/extdata/schemas/19115/resources/.DS_Store b/inst/extdata/schemas/19115/resources/.DS_Store new file mode 100644 index 00000000..1d58fc1a Binary files /dev/null and b/inst/extdata/schemas/19115/resources/.DS_Store differ diff --git a/inst/extdata/schemas/19115/resources/Codelists/.DS_Store b/inst/extdata/schemas/19115/resources/Codelists/.DS_Store new file mode 100644 index 00000000..5426725b Binary files /dev/null and b/inst/extdata/schemas/19115/resources/Codelists/.DS_Store differ diff --git a/inst/extdata/schemas/19115/resources/Codelists/cat/.DS_Store b/inst/extdata/schemas/19115/resources/Codelists/cat/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19115/resources/Codelists/cat/.DS_Store differ diff --git a/inst/extdata/schemas/19115/resources/Codelists/cat/codelists.html b/inst/extdata/schemas/19115/resources/Codelists/cat/codelists.html new file mode 100644 index 00000000..79dfe889 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/cat/codelists.html @@ -0,0 +1,3817 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: ISO 19115-1 Codelists
Scope: Codelists for description of metadata datasets compliant with ISO/TC 211 19115-1.
Field of application: Codelists used in ISO 19115-3 metadata records
Version: 1.1
Date: 2017-09-10
Number of CodeLists: 29
Number of items: 342 +
+

Codelists

+ CI_DateTypeCode + : +

Description: + identification of when a given event occurred +
CodeSpace: http://standards.iso.org/iso/19115/-3/cit/1.0
Number of items: 16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ creation + + + date identifies when the resource was brought into existence + +
+ publication + + + date identifies when the resource was issued + +
+ revision + + + date identifies when the resource was examined or re-examined and improved or amended + +
+ expiry + + + date identifies when resource expires + +
+ lastUpdate + + + date identifies when resource was last updated + +
+ lastRevision + + + date identifies when resource was last reviewed + +
+ nextUpdate + + + date identifies when resource will be next updated + +
+ unavailable + + + date identifies when resource became not available or obtainable + +
+ inForce + + + date identifies when resource became in force + +
+ adopted + + + date identifies when resource was adopted + +
+ deprecated + + + date identifies when resource was deprecated + +
+ superseded + + + date identifies when resource was superseded or replaced by another resource + +
+ validityBegins + + + time at which the data are considered to become valid. NOTE: There could be quite a delay between creation and validity begins + +
+ validityExpires + + + time at which the data are no longer considered to be valid + +
+ released + + + the date that the resource shall be released for public access + +
+ distribution + + + date identifies when an instance of the resource was distributed + +
top

+ CI_OnLineFunctionCode + : +

Description: + function performed by the resource +
CodeSpace: http://standards.iso.org/iso/19115/-3/cit/1.0
Number of items: 11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ download + + + online instructions for transferring data from one storage device or system to another + +
+ information + + + online information about the resource + +
+ offlineAccess + + + online instructions for requesting the resource from the provider + +
+ order + + + online order process for obtaining the resource + +
+ search + + + online search interface for seeking out information about the resource + +
+ completeMetadata + + + complete metadata provided + +
+ browseGraphic + + + browse graphic provided + +
+ upload + + + online resource upload capability provided + +
+ emailService + + + online email service provided + +
+ browsing + + + online browsing provided + +
+ fileAccess + + + online file access provided + +
top

+ CI_PresentationFormCode + : +

Description: + mode in which the data are represented +
CodeSpace: http://standards.iso.org/iso/19115/-3/cit/1.0
Number of items: 21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ documentDigital + + + digital representation of a primarily textual item (can contain illustrations also) + +
+ documentHardcopy + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + +
+ imageDigital + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment + of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + +
+ imageHardcopy + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment + of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic + material, or other media for use directly by the human user + +
+ mapDigital + + + map represented in raster or vector form + +
+ mapHardcopy + + + map printed on paper, photographic material, or other media for use directly by the human user + +
+ modelDigital + + + multi-dimensional digital representation of a feature, process, etc. + +
+ modelHardcopy + + + 3-dimensional, physical model + +
+ profileDigital + + + vertical cross-section in digital form + +
+ profileHardcopy + + + vertical cross-section printed on paper, etc. + +
+ tableDigital + + + digital representation of facts or figures systematically displayed, especially in columns + +
+ tableHardcopy + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, + or other media + +
+ videoDigital + + + digital video recording + +
+ videoHardcopy + + + video recording on film + +
+ audioDigital + + + digital audio recording + +
+ audioHardcopy + + + audio recording delivered by analog media, such as a magnetic tape + +
+ multimediaDigital + + + information representation using simultaneously various digital modes for text, sound, image + +
+ multimediaHardcopy + + + information representation using simultaneously various analog modes for text, sound, image + +
+ physicalSample + + + a physical object, e.g. Rock or mineral sample, microscope slide + +
+ diagramDigital + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital + format + +
+ diagramHardcopy + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, + phototographic material, or other media + +
top

+ CI_RoleCode + : +

Description: + function performed by the responsible party +
CodeSpace: http://standards.iso.org/iso/19115/-3/cit/1.0
Number of items: 20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ resourceProvider + + + party that supplies the resource + +
+ custodian + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the + resource + +
+ owner + + + party that owns the resource + +
+ user + + + party who uses the resource + +
+ distributor + + + party who distributes the resource + +
+ originator + + + party who created the resource + +
+ pointOfContact + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + +
+ principalInvestigator + + + key party responsible for gathering information and conducting research + +
+ processor + + + party who has processed the data in a manner such that the resource has been modified + +
+ publisher + + + party who published the resource + +
+ author + + + party who authored the resource + +
+ sponsor + + + party who speaks for the resource + +
+ coAuthor + + + party who jointly authors the resource + +
+ collaborator + + + party who assists with the generation of the resource other than the principal investigator + +
+ editor + + + party who reviewed or modified the resource to improve the content + +
+ mediator + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + +
+ rightsHolder + + + party owning or managing rights over the resource + +
+ contributor + + + party contributing to the resource + +
+ funder + + + party providing monetary support for the resource + +
+ stakeholder + + + party who has an interest in the resource or the use of the resource + +
top

+ CI_TelephoneTypeCode + : +

Description: + type of telephone +
CodeSpace: http://standards.iso.org/iso/19115/-3/cit/1.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ voice + + + telephone provides voice service + +
+ fax + + + telephone provides facsimile service + +
+ sms + + + telephone provides sms service + +
top

+ DS_AssociationTypeCode + : +

Description: + justification for the correlation of two resources +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ crossReference + + + reference from one resource to another + +
+ largerWorkCitation + + + reference to a master resource of which this one is a part + +
+ partOfSeamlessDatabase + + + part of same structured set of data held in a computer + +
+ stereoMate + + + part of a set of imagery that when used together, provides three-dimensional images + +
+ isComposedOf + + + reference to resources that are parts of this resource + +
+ collectiveTitle + + + common title for a collection of resources. NOTE: title identifies elements of a series collectively, combined with information + about what volumes are available at the source cite + +
+ series + + + associated through a common heritage such as produced to a common product specification + +
+ dependency + + + associated through a dependency + +
+ revisionOf + + + resource is a revision of associated resource + +
top

+ DCPList + : +

Description: + class of information to which the referencing entity applies +
CodeSpace: http://standards.iso.org/iso/19115/-3/srv/2.0
Number of items: 10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ XML + + + Extensible Markup Language + +
+ CORBA + + + Common Object Request Broker Architecture + +
+ JAVA + + + Object-oriented programming language + +
+ COM + + + Component Object Model + +
+ SQL + + + Structured Query Language + +
+ SOAP + + + Simple Object Access Protocol + +
+ Z3950 + + + ISO 23950 + +
+ HTTP + + + HyperText Transfer Protocol + +
+ FTP + + + File Transfer Protocol + +
+ WebServices + + + Web service + +
top

+ DS_InitiativeTypeCode + : +

Description: + type of aggregation activity in which resources are related +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ campaign + + + series of organized planned actions + +
+ collection + + + accumulation of resources assembled for a specific purpose + +
+ exercise + + + specific performance of a function or group of functions + +
+ experiment + + + process designed to find if something is effective or valid + +
+ investigation + + + search or systematic inquiry + +
+ mission + + + specific operation of a data collection system + +
+ sensor + + + device or piece of equipment which detects or records + +
+ operation + + + action that is part of a series of actions + +
+ platform + + + vehicle or other support base that holds a sensor + +
+ process + + + method of doing something involving a number of steps + +
+ program + + + specific planned activity + +
+ project + + + organized undertaking, research, or development + +
+ study + + + examination or investigation + +
+ task + + + piece of work + +
+ trial + + + process of testing to discover or demonstrate something + +
top

+ MD_CellGeometryCode + : +

Description: + code indicating the geometry represented by the grid cell value +
CodeSpace: http://standards.iso.org/iso/19115/-3/msr/1.0
Number of items: 4 + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ point + + + each cell represents a point + +
+ area + + + each cell represents an area + +
+ voxel + + + each cell represents a volumetric measurement on a regular grid in three dimensional space + +
+ stratum + + + height range for a single point vertical profile + +
top

+ MD_ClassificationCode + : +

Description: + name of the handling restrictions on the resource +
CodeSpace: http://standards.iso.org/iso/19115/-3/mco/1.0
Number of items: 9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ unclassified + + + available for general disclosure + +
+ restricted + + + not for general disclosure + +
+ confidential + + + available for someone who can be entrusted with information + +
+ secret + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + +
+ topSecret + + + of the highest secrecy + +
+ SBU + + + although unclassified, requires strict controls over its distribution + +
+ forOfficialUseOnly + + + unclassified information that is to be used only for official purposes determined by the designating body + +
+ protected + + + compromise of the information could cause damage + +
+ limitedDistribution + + + desimination limited by designating body + +
top

+ MD_CoverageContentTypeCode + : +

Description: + specific type of information represented in the cell +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrc/1.0
Number of items: 8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ image + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + +
+ thematicClassification + + + code value with no quantitative meaning, used to represent a physical quantity + +
+ physicalMeasurement + + + value in physical units of the quantity being measured + +
+ auxillaryInformation + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the + dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + +
+ qualityInformation + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + +
+ referenceInformation + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids + of latitude/longitude used to geolocate the physical measurements). + +
+ modelResult + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + +
+ coordinate + + + data used to provide coordinate axis values + +
top

+ MD_DatatypeCode + : +

Description: + datatype of element or entity +
CodeSpace: http://standards.iso.org/iso/19115/-3/mex/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ class + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behaviour + +
+ codelist + + + flexible enumeration useful for expressing a long list of values, can be extended + +
+ enumeration + + + data type whose instances form a list of named literal values, not extendable + +
+ codelistElement + + + permissible value for a codelist or enumeration + +
+ abstractClass + + + class that cannot be directly instantiated + +
+ aggregateClass + + + class that is composed of classes it is connected to by an aggregate relationship + +
+ specifiedClass + + + subclass that may be substituted for its superclass + +
+ datatypeClass + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, + encoding or persistent storage + +
+ interfaceClass + + + named set of operations that characterize the behaviour of an element + +
+ unionClass + + + class describing a selection of one of the specified types + +
+ metaClass + + + class whose instances are classes + +
+ typeClass + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A + type may have attributes and associations + +
+ characterString + + + textual information + +
+ integer + + + numerical field + +
+ association + + + semantic relationship between two classes that involves connections among their instances + +
top

+ MD_DimensionNameTypeCode + : +

Description: + name of the dimension +
CodeSpace: http://standards.iso.org/iso/19115/-3/msr/1.0
Number of items: 8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ row + + + ordinate (y) axis + +
+ column + + + abscissa (x) axis + +
+ vertical + + + vertical (z) axis + +
+ track + + + along the direction of motion of the scan point + +
+ crossTrack + + + perpendicular to the direction of motion of the scan point + +
+ line + + + scan line of a sensor + +
+ sample + + + element along a scan line + +
+ time + + + duration + +
top

+ MD_GeometricObjectTypeCode + : +

Description: + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset +
CodeSpace: http://standards.iso.org/iso/19115/-3/msr/1.0
Number of items: 6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ complex + + + set of geometric primitives such that their boundaries can be represented as a union of other primitives + +
+ composite + + + connected set of curves, solids or surfaces + +
+ curve + + + bounded, 1-dimensional geometric primitive, representing the continuous image of a line + +
+ point + + + zero-dimensional geometric primitive, representing a position but not having an extent + +
+ solid + + + bounded, connected 3-dimensional geometric primitive, representing the continuous image of a region of space + +
+ surface + + + bounded, connected 2-dimensional geometric primitive, representing the continuous image of a region of a plane + +
top

+ MD_ImagingConditionCode + : +

Description: + code which indicates conditions which may affect the image +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrc/1.0
Number of items: 11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ blurredImage + + + portion of the image is blurred + +
+ cloud + + + portion of the image is partially obscured by cloud cover + +
+ degradingObliquity + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + +
+ fog + + + portion of the image is partially obscured by fog + +
+ heavySmokeOrDust + + + portion of the image is partially obscured by heavy smoke or dust + +
+ night + + + image was taken at night + +
+ rain + + + image was taken during rainfall + +
+ semiDarkness + + + image was taken during semi-dark conditions; twilight conditions + +
+ shadow + + + portion of the image is obscured by shadow + +
+ snow + + + portion of the image is obscured by snow + +
+ terrainMasking + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct + the collection path between the collector(s) and the subject(s) of interest + +
top

+ MD_KeywordTypeCode + : +

Description: + methods used to group similar keywords +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ discipline + + + keyword identifies a branch of instruction or specialized learning + +
+ place + + + keyword identifies a location + +
+ stratum + + + keyword identifies the layer(s) of any deposited substance or levels within an ordered system + +
+ temporal + + + keyword identifies a time period related to the resource + +
+ theme + + + keyword identifies a particular subject or topic + +
+ dataCentre + + + keyword identifies a repository or archive that manages and distributes data + +
+ featureType + + + keyword identifies a resource containing or about a collection of feature instances with common characteristics + +
+ instrument + + + keyword identifies a device used to measure or compare physical properties + +
+ platform + + + keyword identifies a structure upon which an instrument is mounted + +
+ process + + + keyword identifies a series of actions or natural occurrences + +
+ project + + + keyword identifies an endeavour undertaken to create or modify a product or service + +
+ service + + + keyword identifies an activity carried out by one party for the benefit of another + +
+ product + + + keyword identifies a type of product + +
+ subTopicCategory + + + refinement of a topic category for the purpose of geographic data classification + +
+ taxon + + + keyword identifies a taxonomy of the resource + +
top

+ MD_MaintenanceFrequencyCode + : +

Description: + frequency with which modifications and deletions are made to the data after it is first produced +
CodeSpace: http://standards.iso.org/iso/19115/-3/mmi/1.0
Number of items: 15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ continual + + + resource is repeatedly and frequently updated + +
+ daily + + + resource is updated each day + +
+ weekly + + + resource is updated on a weekly basis + +
+ fortnightly + + + resource is updated every two weeks + +
+ monthly + + + resource is updated each month + +
+ quarterly + + + resource is updated every three months + +
+ biannually + + + resource is updated twice each year + +
+ annually + + + resource is updated every year + +
+ asNeeded + + + resource is updated as deemed necessary + +
+ irregular + + + resource is updated in intervals that are uneven in duration + +
+ notPlanned + + + there are no plans to update the data + +
+ unknown + + + frequency of maintenance for the data is not known + +
+ periodic + + + resource is updated at regular intervals + +
+ semimonthly + + + resource updated twice a monthly + +
+ biennially + + + resource is updated every 2 years + +
top

+ MD_MediumFormatCode + : +

Description: + method used to write to the medium +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrd/1.0
Number of items: 7 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ cpio + + + Copy In / Out (UNIX file format and command) + +
+ tar + + + Tape Archive + +
+ highSierra + + + high sierra file system + +
+ iso9660 + + + information processing volume and file structure of CD-ROM + +
+ iso9660RockRidge + + + rock ridge interchange protocol (UNIX) + +
+ iso9660AppleHFS + + + hierarchical file system (Macintosh) + +
+ udf + + + universal disk format + +
top

+ MD_ObligationCode + : +

Description: + obligation of the element or entity +
CodeSpace: http://standards.iso.org/iso/19115/-3/mex/1.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ mandatory + + + element is always required + +
+ optional + + + element is not required + +
+ conditional + + + element is required when a specific condition is met + +
top

+ MD_PixelOrientationCode + : +

Description: + point in a pixel corresponding to the Earth location of the pixel +
CodeSpace: http://standards.iso.org/iso/19115/-3/msr/1.0
Number of items: 5 + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ center + + + point halfway between the lower left and the upper right of the pixel + +
+ lowerLeft + + + the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the + smallest x-value + +
+ lowerRight + + + next corner counterclockwise from the lower left + +
+ upperRight + + + next corner counterclockwise from the lower right + +
+ upperLeft + + + next corner counterclockwise from the upper right + +
top

+ MD_ProgressCode + : +

Description: + status of the resource +
CodeSpace: http://standards.iso.org/iso/19115/-3/mcc/1.0
Number of items: 18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ completed + + + has been completed + +
+ historicalArchive + + + stored in an offline storage facility + +
+ obsolete + + + no longer relevant + +
+ onGoing + + + continually being updated + +
+ planned + + + fixed date has been established upon or by which the resource will be created or updated + +
+ required + + + needs to be generated or updated + +
+ underDevelopment + + + currently in the process of being created + +
+ final + + + progress concluded and no changes will be accepted + +
+ pending + + + committed to, but not yet addressed + +
+ retired + + + item is no longer recommended for use. It has not been superseded by another item + +
+ superseded + + + replaced by new + +
+ tentative + + + provisional changes likely before resource becomes final or complete + +
+ valid + + + acceptable under specific conditions + +
+ accepted + + + agreed to by sponsor + +
+ notAccepted + + + rejected by sponsor + +
+ withdrawn + + + removed from consideration + +
+ proposed + + + suggested that development needs to be undertaken + +
+ deprecated + + + resource superseded and will become obsolete, use only for historical purposes + +
top

+ MD_ReferenceSystemTypeCode + : +

Description: + defines type of reference system used +
CodeSpace: http://standards.iso.org/iso/19115/-3/mrs/1.0
Number of items: 28 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ compoundEngineeringParametric + + + compound statio-parametric coordinate reference system containing an engineering coordinate reference system and a parametric + reference system. e.g. [local] x, y, pressure + +
+ compoundEngineeringParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing an engineering, a parametric, and a temporal coordinate + reference system. e.g. [local] x, y, pressure, time + +
+ compoundEngineeringTemporal + + + compound spatio-temporal coordinate reference system containing an engineering and a temporal coordinate reference system. + e.g. [local] x, y, time + +
+ compoundEngineeringVertical + + + compound spatial reference system containing a horizontal engineering coordinate reference system and a vertical coordinate + reference system. e.g. [local] x, y, height + +
+ compoundEngineeringVerticalTemporal + + + compound spatio-temporal coordinate reference system containing an engineering, a vertical, and a temporal coordinate reference + system. e.g. [local] x, y, height, time + +
+ compoundGeodeticParametric + + + compound statio-parametric coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference + system and a parametric reference system. e.g. latitude, longitude, pressure + +
+ compoundGeodeticParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a parametric + and a temporal coordinate reference system. e.g. latitude, longitude, pressure, time + +
+ compoundGeographic2DTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference + system and a temporal reference system. e.g. latitude, longitude, time + +
+ compoundGeographic2DVertical + + + compound coordinate reference system in which one constituent coordinate reference system is a horizontal geodetic coordinate + reference system and one is a vertical coordinate reference system. e.g. latitude, longitude, [gravity-related] height or + depth + +
+ compoundGeographicVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a vertical, and a temporal + coordinate reference system. e.g. latitude, longitude, height, time + +
+ compoundGeographic3DTemporal + + + compound spatio-temporal coordinate reference system containing a 3 dimensional geographic and a temporal coordinate reference + system. e.g. latitude, longitude, ellipsoidal height, time + +
+ compoundProjected2DParametric + + + compound statio-parametric coordinate reference system containing a projected horizontal coordinate reference system and a + parametric reference system. e.g. easting, northing, density + +
+ compoundProjected2DParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a projected horizontal, a parametric, and a temporal + coordinate reference system. e.g. easting, northing, density, time + +
+ compoundProjectedTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal and a temporal coordinate reference + system. e.g. easting, northing, time + +
+ compoundProjectedVertical + + + compound spatial reference system containing a horizontal projected coordinate reference system and a vertical coordinate + reference system. e.g. easting, northing, [gravity-related] height or depth + +
+ compoundProjectedVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal, a vertical, and a temporal coordinate + reference system. e.g. easting, northing, height, time + +
+ engineering + + + coordinate reference system based on an engineering datum (datum describing the relationship of a coordinate system to a local + reference). e.g. [local] x,y + +
+ engineeringDesign + + + engineering coordinate reference system in which the base representation of a moving object is specified. e.g. [local] x,y + +
+ engineeringImage + + + coordinate reference system based on an image datum (engineering datum which defines the relationship of a coordinate system + to an image). e.g. row, column + +
+ geodeticGeocentric + + + geodetic CRS having a Cartesian 3D coordinate system. e.g. [geocentric] X,Y,Z + +
+ geodeticGeographic2D + + + geodetic CRS having an ellipsoidal 2D coordinate system. e.g. latitude, longitude + +
+ geodeticGeographic3D + + + geodetic CRS having an ellipsoidal 3D coordinate system. e.g. latitude, longitude, ellipsoidal height + +
+ geographicIdentifier + + + spatial reference in the form of a label or code that identifies a location. e.g. post code + +
+ linear + + + set of Linear Referencing Methods and the policies, records and procedures for implementing them. reference system that identifies + a location by reference to a segment of a linear geographic feature and distance along that segment from a given point. e.g. + x km along road + +
+ parametric + + + coordinate reference system based on a parametric datum (datum describing the relationship of a parametric coordinate system + to an object). e.g. pressure + +
+ projected + + + coordinate reference system derived from a two-dimensional geodetic coordinate reference system by applying a map projection. + e.g. easting, northing + +
+ temporal + + + reference system against which time is measured. e.g. time + +
+ vertical + + + one-dimensional coordinate reference system based on a vertical datum (datum describing the relation of gravity-related heights + or depths to the Earth). e.g. [gravity-related] height or depth + +
top

+ MD_RestrictionCode + : +

Description: + limitation(s) placed upon the access or use of the data +
CodeSpace: http://standards.iso.org/iso/19115/-3/mco/1.0
Number of items: 17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ copyright + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, + or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, + distributor + +
+ patent + + + government has granted exclusive right to make, sell, use or license an invention or discovery + +
+ patentPending + + + produced or sold information awaiting a patent + +
+ trademark + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner + or manufacturer + +
+ licence + + + formal permission to do something + +
+ intellectualPropertyRights + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + +
+ restricted + + + withheld from general circulation or disclosure + +
+ otherRestrictions + + + limitation not listed + +
+ unrestricted + + + no constraints exist + +
+ licenceUnrestricted + + + formal permission not required to use the resource + +
+ licenceEndUser + + + formal permission required for a person or an entity to use the resource and that may differ from the person that orders or + purchases it + +
+ licenceDistributor + + + formal permission required for a person or an entity to commercialize or distribute the resource + +
+ private + + + protects rights of individual or organisations from observation, intrusion, or attention of others + +
+ statutory + + + prescribed by law + +
+ confidential + + + not available to the public contains information that could be prejudicial to a commercial, industrial, or national interest + +
+ SBU + + + although unclassified, requires strict controls over its distribution. + +
+ in-confidence + + + with trust + +
top

+ MD_ScopeCode + : +

Description: + class of information to which the referencing entity applies +
CodeSpace: http://standards.iso.org/iso/19115/-3/mcc/1.0
Number of items: 26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ attribute + + + information applies to the attribute value + +
+ attributeType + + + information applies to the characteristic of a feature + +
+ collectionHardware + + + information applies to the collection hardware class + +
+ collectionSession + + + information applies to the collection session + +
+ dataset + + + information applies to the dataset + +
+ series + + + information applies to the series + +
+ nonGeographicDataset + + + information applies to non-geographic data + +
+ dimensionGroup + + + information applies to a dimension group + +
+ feature + + + information applies to a feature + +
+ featureType + + + information applies to a feature type + +
+ propertyType + + + information applies to a property type + +
+ fieldSession + + + information applies to a field session + +
+ software + + + information applies to a computer program or routine + +
+ service + + + information applies to a capability which a service provider entity makes available to a service user entity through a set + of interfaces that define a behaviour, such as a use case + +
+ model + + + information applies to a copy or imitation of an existing or hypothetical object + +
+ tile + + + information applies to a tile, a spatial subset of geographic data + +
+ metadata + + + information applies to metadata + +
+ initiative + + + information applies to an initiative + +
+ sample + + + information applies to a sample + +
+ document + + + information applies to a document + +
+ repository + + + information applies to a repository + +
+ aggregate + + + information applies to an aggregate resource + +
+ product + + + metadata describing an ISO 19131 data product specification + +
+ collection + + + information applies to an unstructured set + +
+ coverage + + + information applies to a coverage + +
+ application + + + information resource hosted on a specific set of hardware and accessible over a network + +
top

+ MD_SpatialRepresentationTypeCode + : +

Description: + method used to represent geographic information in the resource +
CodeSpace: http://standards.iso.org/iso/19115/-3/mcc/1.0
Number of items: 6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ vector + + + vector data are used to represent geographic data + +
+ grid + + + grid data are used to represent geographic data + +
+ textTable + + + textual or tabular data are used to represent geographic data + +
+ tin + + + triangulated irregular network + +
+ stereoModel + + + three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images + +
+ video + + + scene from a video recording + +
top

+ MD_TopicCategoryCode + : +

Description: + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. + Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between + general categories and the user is encouraged to select the one most appropriate. +
CodeSpace: http://standards.iso.org/iso/19115/-3/mri/1.0
Number of items: 21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ farming + + + rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests + and diseases affecting crops and livestock + +
+ biota + + + flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, + wetlands, habitat + +
+ boundaries + + + legal land descriptions, maritime boundaries. Examples: political and administrative boundaries, territorial seas, EEZ, port + security zones + +
+ climatologyMeteorologyAtmosphere + + + processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, + precipitation + +
+ economy + + + economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, + forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and + gas + +
+ elevation + + + height above or below a vertical datum. Examples: altitude, bathymetry, digital elevation models, slope, derived products + +
+ environment + + + environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental + impact assessment, monitoring environmental risk, nature reserves, landscape + +
+ geoscientificInformation + + + information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing + with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity + information, soils, permafrost, hydrogeology, erosion + +
+ health + + + health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance + abuse, mental and physical health, health services + +
+ imageryBaseMapsEarthCover + + + base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations + +
+ intelligenceMilitary + + + military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection + +
+ inlandWaters + + + inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization + plans, dams, currents, floods, water quality, hydrologic information + +
+ location + + + positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place + names + +
+ oceans + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tsunamis, coastal information, + reefs + +
+ planningCadastre + + + information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, + land ownership + +
+ society + + + characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, + manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census + information + +
+ structure + + + man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + +
+ transportation + + + means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical + charts, vehicle or vessel location, aeronautical charts, railways + +
+ utilitiesCommunication + + + energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar + and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, + data communication, telecommunication, radio, communication networks + +
+ extraTerrestrial + + + region more than 100 km above the surface of the Earth + +
+ disaster + + + Information related to disasters. Examples: site of the disaster, evacuation zone, disaster-prevention facility, disaster + relief activities + +
top

+ MD_TopologyLevelCode + : +

Description: + degree of complexity of the spatial relationships +
CodeSpace: http://standards.iso.org/iso/19115/-3/msr/1.0
Number of items: 9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ geometryOnly + + + geometry objects without any additional structure which describes topology + +
+ topology1D + + + 1-dimensional topological complex; commonly called 'chain-node' topology + +
+ planarGraph + + + 1-dimensional topological complex that is planar. (A planar graph is a graph that can be drawn in a plane in such a way that + no two edges intersect except at a vertex.) + +
+ fullPlanarGraph + + + 2-dimensional topological complex that is planar. (A 2-dimensional topological complex is commonly called 'full topology' + in a cartographic 2D environment.) + +
+ surfaceGraph + + + 1-dimensional topological complex that is isomorphic to a subset of a surface. (A geometric complex is isomorphic to a topological + complex if their elements are in a one-to-one, dimensional-and boundary-preserving correspondence to one another.) + +
+ fullSurfaceGraph + + + 2-dimensional topological complex that is isomorphic to a subset of a surface + +
+ topology3D + + + 3-dimensional topological complex. (A topological complex is a collection of topological primitives that are closed under + the boundary operations.) + +
+ fullTopology3D + + + complete coverage of a 3D Euclidean coordinate space + +
+ abstract + + + topological complex without any specified geometric realisation + +
top

+ SV_CouplingType + : +

Description: + type of coupling between service and associated data (if exists) +
CodeSpace: http://standards.iso.org/iso/19115/-3/srv/2.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ loose + + + service instance is loosely coupled with a data instance, i.e. no MD_DataIdentification class has to be described + +
+ mixed + + + service instance is mixed coupled with a data instance, i.e. MD_DataIdentification describes the associated data instance + and additionally the service instance might work with other external data instances + +
+ tight + + + service instance is tightly coupled with a data instance, i.e. MD_DataIdentification class MUST be described + +
top

+ SV_ParameterDirection + : +

Description: + class of information to which the referencing entity applies +
CodeSpace: http://standards.iso.org/iso/19115/-3/srv/2.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ in + + + the parameter is an input parameter to the service instance + +
+ out + + + the parameter is an output parameter to the service instance + +
+ in/out + + + the parameter is both an input and output parameter to the service instance + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/Codelists/cat/codelists.xml b/inst/extdata/schemas/19115/resources/Codelists/cat/codelists.xml new file mode 100644 index 00000000..28584041 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/cat/codelists.xml @@ -0,0 +1,5978 @@ + + + + + ISO 19115-1 Codelists + + + Codelists for description of metadata datasets compliant with ISO/TC 211 19115-1. + + + Codelists used in ISO 19115-3 metadata records + + + 1.1 + + + 2017-09-10 + + + + + CI_DateTypeCode + + + CI_DateTypeCode + + + identification of when a given event occurred + + + identification of when a given event occurred + + + + + creation + + + creation + + + date identifies when the resource was brought into existence + + + date identifies when the resource was brought into existence + + + + + + + publication + + + publication + + + date identifies when the resource was issued + + + date identifies when the resource was issued + + + + + + + revision + + + revision + + + date identifies when the resource was examined or re-examined and improved or amended + + + date identifies when the resource was examined or re-examined and improved or amended + + + + + + + expiry + + + expiry + + + date identifies when resource expires + + + date identifies when resource expires + + + + + + + lastUpdate + + + lastUpdate + + + date identifies when resource was last updated + + + date identifies when resource was last updated + + + + + + + lastRevision + + + lastRevision + + + date identifies when resource was last reviewed + + + date identifies when resource was last reviewed + + + + + + + nextUpdate + + + nextUpdate + + + date identifies when resource will be next updated + + + date identifies when resource will be next updated + + + + + + + unavailable + + + unavailable + + + date identifies when resource became not available or obtainable + + + date identifies when resource became not available or obtainable + + + + + + + inForce + + + inForce + + + date identifies when resource became in force + + + date identifies when resource became in force + + + + + + + adopted + + + adopted + + + date identifies when resource was adopted + + + date identifies when resource was adopted + + + + + + + deprecated + + + deprecated + + + date identifies when resource was deprecated + + + date identifies when resource was deprecated + + + + + + + superseded + + + superseded + + + date identifies when resource was superseded or replaced by another resource + + + date identifies when resource was superseded or replaced by another resource + + + + + + + validityBegins + + + validityBegins + + + time at which the data are considered to become valid. NOTE: There could be quite a delay between creation and validity begins + + + time at which the data are considered to become valid. NOTE: There could be quite a delay between creation and validity begins + + + + + + + validityExpires + + + validityExpires + + + time at which the data are no longer considered to be valid + + + time at which the data are no longer considered to be valid + + + + + + + released + + + released + + + the date that the resource shall be released for public access + + + the date that the resource shall be released for public access + + + + + + + distribution + + + distribution + + + date identifies when an instance of the resource was distributed + + + date identifies when an instance of the resource was distributed + + + + + + + + + CI_OnLineFunctionCode + + + CI_OnLineFunctionCode + + + function performed by the resource + + + function performed by the resource + + + + + download + + + download + + + online instructions for transferring data from one storage device or system to another + + + online instructions for transferring data from one storage device or system to another + + + + + + + information + + + information + + + online information about the resource + + + online information about the resource + + + + + + + offlineAccess + + + offlineAccess + + + online instructions for requesting the resource from the provider + + + online instructions for requesting the resource from the provider + + + + + + + order + + + order + + + online order process for obtaining the resource + + + online order process for obtaining the resource + + + + + + + search + + + search + + + online search interface for seeking out information about the resource + + + online search interface for seeking out information about the resource + + + + + + + completeMetadata + + + completeMetadata + + + complete metadata provided + + + complete metadata provided + + + + + + + browseGraphic + + + browseGraphic + + + browse graphic provided + + + browse graphic provided + + + + + + + upload + + + upload + + + online resource upload capability provided + + + online resource upload capability provided + + + + + + + emailService + + + emailService + + + online email service provided + + + online email service provided + + + + + + + browsing + + + browsing + + + online browsing provided + + + online browsing provided + + + + + + + fileAccess + + + fileAccess + + + online file access provided + + + online file access provided + + + + + + + + + CI_PresentationFormCode + + + CI_PresentationFormCode + + + mode in which the data are represented + + + mode in which the data are represented + + + + + documentDigital + + + documentDigital + + + digital representation of a primarily textual item (can contain illustrations also) + + + digital representation of a primarily textual item (can contain illustrations also) + + + + + + + documentHardcopy + + + documentHardcopy + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + + + + + + + imageDigital + + + imageDigital + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + + + + + + + imageHardcopy + + + imageHardcopy + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + + + + + + + mapDigital + + + mapDigital + + + map represented in raster or vector form + + + map represented in raster or vector form + + + + + + + mapHardcopy + + + mapHardcopy + + + map printed on paper, photographic material, or other media for use directly by the human user + + + map printed on paper, photographic material, or other media for use directly by the human user + + + + + + + modelDigital + + + modelDigital + + + multi-dimensional digital representation of a feature, process, etc. + + + multi-dimensional digital representation of a feature, process, etc. + + + + + + + modelHardcopy + + + modelHardcopy + + + 3-dimensional, physical model + + + 3-dimensional, physical model + + + + + + + profileDigital + + + profileDigital + + + vertical cross-section in digital form + + + vertical cross-section in digital form + + + + + + + profileHardcopy + + + profileHardcopy + + + vertical cross-section printed on paper, etc. + + + vertical cross-section printed on paper, etc. + + + + + + + tableDigital + + + tableDigital + + + digital representation of facts or figures systematically displayed, especially in columns + + + digital representation of facts or figures systematically displayed, especially in columns + + + + + + + tableHardcopy + + + tableHardcopy + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, or other media + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, or other media + + + + + + + videoDigital + + + videoDigital + + + digital video recording + + + digital video recording + + + + + + + videoHardcopy + + + videoHardcopy + + + video recording on film + + + video recording on film + + + + + + + audioDigital + + + audioDigital + + + digital audio recording + + + digital audio recording + + + + + + + audioHardcopy + + + audioHardcopy + + + audio recording delivered by analog media, such as a magnetic tape + + + audio recording delivered by analog media, such as a magnetic tape + + + + + + + multimediaDigital + + + multimediaDigital + + + information representation using simultaneously various digital modes for text, sound, image + + + information representation using simultaneously various digital modes for text, sound, image + + + + + + + multimediaHardcopy + + + multimediaHardcopy + + + information representation using simultaneously various analog modes for text, sound, image + + + information representation using simultaneously various analog modes for text, sound, image + + + + + + + physicalSample + + + physicalSample + + + a physical object, e.g. Rock or mineral sample, microscope slide + + + a physical object, e.g. Rock or mineral sample, microscope slide + + + + + + + diagramDigital + + + diagramDigital + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital format + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital format + + + + + + + diagramHardcopy + + + diagramHardcopy + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, phototographic material, or other media + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, phototographic material, or other media + + + + + + + + + CI_RoleCode + + + CI_RoleCode + + + function performed by the responsible party + + + function performed by the responsible party + + + + + resourceProvider + + + resourceProvider + + + party that supplies the resource + + + party that supplies the resource + + + + + + + custodian + + + custodian + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the resource + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the resource + + + + + + + owner + + + owner + + + party that owns the resource + + + party that owns the resource + + + + + + + user + + + user + + + party who uses the resource + + + party who uses the resource + + + + + + + distributor + + + distributor + + + party who distributes the resource + + + party who distributes the resource + + + + + + + originator + + + originator + + + party who created the resource + + + party who created the resource + + + + + + + pointOfContact + + + pointOfContact + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + + + + + + + principalInvestigator + + + principalInvestigator + + + key party responsible for gathering information and conducting research + + + key party responsible for gathering information and conducting research + + + + + + + processor + + + processor + + + party who has processed the data in a manner such that the resource has been modified + + + party who has processed the data in a manner such that the resource has been modified + + + + + + + publisher + + + publisher + + + party who published the resource + + + party who published the resource + + + + + + + author + + + author + + + party who authored the resource + + + party who authored the resource + + + + + + + sponsor + + + sponsor + + + party who speaks for the resource + + + party who speaks for the resource + + + + + + + coAuthor + + + coAuthor + + + party who jointly authors the resource + + + party who jointly authors the resource + + + + + + + collaborator + + + collaborator + + + party who assists with the generation of the resource other than the principal investigator + + + party who assists with the generation of the resource other than the principal investigator + + + + + + + editor + + + editor + + + party who reviewed or modified the resource to improve the content + + + party who reviewed or modified the resource to improve the content + + + + + + + mediator + + + mediator + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + + + + + + + rightsHolder + + + rightsHolder + + + party owning or managing rights over the resource + + + party owning or managing rights over the resource + + + + + + + contributor + + + contributor + + + party contributing to the resource + + + party contributing to the resource + + + + + + + funder + + + funder + + + party providing monetary support for the resource + + + party providing monetary support for the resource + + + + + + + stakeholder + + + stakeholder + + + party who has an interest in the resource or the use of the resource + + + party who has an interest in the resource or the use of the resource + + + + + + + + + CI_TelephoneTypeCode + + + CI_TelephoneTypeCode + + + type of telephone + + + type of telephone + + + + + voice + + + voice + + + telephone provides voice service + + + telephone provides voice service + + + + + + + fax + + + fax + + + telephone provides facsimile service + + + telephone provides facsimile service + + + + + + + sms + + + sms + + + telephone provides sms service + + + telephone provides sms service + + + + + + + + + DS_AssociationTypeCode + + + DS_AssociationTypeCode + + + justification for the correlation of two resources + + + justification for the correlation of two resources + + + + + crossReference + + + crossReference + + + reference from one resource to another + + + reference from one resource to another + + + + + + + largerWorkCitation + + + largerWorkCitation + + + reference to a master resource of which this one is a part + + + reference to a master resource of which this one is a part + + + + + + + partOfSeamlessDatabase + + + partOfSeamlessDatabase + + + part of same structured set of data held in a computer + + + part of same structured set of data held in a computer + + + + + + + stereoMate + + + stereoMate + + + part of a set of imagery that when used together, provides three-dimensional images + + + part of a set of imagery that when used together, provides three-dimensional images + + + + + + + isComposedOf + + + isComposedOf + + + reference to resources that are parts of this resource + + + reference to resources that are parts of this resource + + + + + + + collectiveTitle + + + collectiveTitle + + + common title for a collection of resources. NOTE: title identifies elements of a series collectively, combined with information about what volumes are available at the source cite + + + common title for a collection of resources. NOTE: title identifies elements of a series collectively, combined with information about what volumes are available at the source cite + + + + + + + series + + + series + + + associated through a common heritage such as produced to a common product specification + + + associated through a common heritage such as produced to a common product specification + + + + + + + dependency + + + dependency + + + associated through a dependency + + + associated through a dependency + + + + + + + revisionOf + + + revisionOf + + + resource is a revision of associated resource + + + resource is a revision of associated resource + + + + + + + + + DCPList + + + DCPList + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + XML + + + XML + + + Extensible Markup Language + + + Extensible Markup Language + + + + + + + CORBA + + + CORBA + + + Common Object Request Broker Architecture + + + Common Object Request Broker Architecture + + + + + + + JAVA + + + JAVA + + + Object-oriented programming language + + + Object-oriented programming language + + + + + + + COM + + + COM + + + Component Object Model + + + Component Object Model + + + + + + + SQL + + + SQL + + + Structured Query Language + + + Structured Query Language + + + + + + + SOAP + + + SOAP + + + Simple Object Access Protocol + + + Simple Object Access Protocol + + + + + + + Z3950 + + + Z3950 + + + ISO 23950 + + + ISO 23950 + + + + + + + HTTP + + + HTTP + + + HyperText Transfer Protocol + + + HyperText Transfer Protocol + + + + + + + FTP + + + FTP + + + File Transfer Protocol + + + File Transfer Protocol + + + + + + + WebServices + + + WebServices + + + Web service + + + Web service + + + + + + + + + DS_InitiativeTypeCode + + + DS_InitiativeTypeCode + + + type of aggregation activity in which resources are related + + + type of aggregation activity in which resources are related + + + + + campaign + + + campaign + + + series of organized planned actions + + + series of organized planned actions + + + + + + + collection + + + collection + + + accumulation of resources assembled for a specific purpose + + + accumulation of resources assembled for a specific purpose + + + + + + + exercise + + + exercise + + + specific performance of a function or group of functions + + + specific performance of a function or group of functions + + + + + + + experiment + + + experiment + + + process designed to find if something is effective or valid + + + process designed to find if something is effective or valid + + + + + + + investigation + + + investigation + + + search or systematic inquiry + + + search or systematic inquiry + + + + + + + mission + + + mission + + + specific operation of a data collection system + + + specific operation of a data collection system + + + + + + + sensor + + + sensor + + + device or piece of equipment which detects or records + + + device or piece of equipment which detects or records + + + + + + + operation + + + operation + + + action that is part of a series of actions + + + action that is part of a series of actions + + + + + + + platform + + + platform + + + vehicle or other support base that holds a sensor + + + vehicle or other support base that holds a sensor + + + + + + + process + + + process + + + method of doing something involving a number of steps + + + method of doing something involving a number of steps + + + + + + + program + + + program + + + specific planned activity + + + specific planned activity + + + + + + + project + + + project + + + organized undertaking, research, or development + + + organized undertaking, research, or development + + + + + + + study + + + study + + + examination or investigation + + + examination or investigation + + + + + + + task + + + task + + + piece of work + + + piece of work + + + + + + + trial + + + trial + + + process of testing to discover or demonstrate something + + + process of testing to discover or demonstrate something + + + + + + + + + MD_CellGeometryCode + + + MD_CellGeometryCode + + + code indicating the geometry represented by the grid cell value + + + code indicating the geometry represented by the grid cell value + + + + + point + + + point + + + each cell represents a point + + + each cell represents a point + + + + + + + area + + + area + + + each cell represents an area + + + each cell represents an area + + + + + + + voxel + + + voxel + + + each cell represents a volumetric measurement on a regular grid in three dimensional space + + + each cell represents a volumetric measurement on a regular grid in three dimensional space + + + + + + + stratum + + + stratum + + + height range for a single point vertical profile + + + height range for a single point vertical profile + + + + + + + + + MD_ClassificationCode + + + MD_ClassificationCode + + + name of the handling restrictions on the resource + + + name of the handling restrictions on the resource + + + + + unclassified + + + unclassified + + + available for general disclosure + + + available for general disclosure + + + + + + + restricted + + + restricted + + + not for general disclosure + + + not for general disclosure + + + + + + + confidential + + + confidential + + + available for someone who can be entrusted with information + + + available for someone who can be entrusted with information + + + + + + + secret + + + secret + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + + + + + + + topSecret + + + topSecret + + + of the highest secrecy + + + of the highest secrecy + + + + + + + SBU + + + SBU + + + although unclassified, requires strict controls over its distribution + + + although unclassified, requires strict controls over its distribution + + + + + + + forOfficialUseOnly + + + forOfficialUseOnly + + + unclassified information that is to be used only for official purposes determined by the designating body + + + unclassified information that is to be used only for official purposes determined by the designating body + + + + + + + protected + + + protected + + + compromise of the information could cause damage + + + compromise of the information could cause damage + + + + + + + limitedDistribution + + + limitedDistribution + + + desimination limited by designating body + + + desimination limited by designating body + + + + + + + + + MD_CoverageContentTypeCode + + + MD_CoverageContentTypeCode + + + specific type of information represented in the cell + + + specific type of information represented in the cell + + + + + image + + + image + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + + + + + + + thematicClassification + + + thematicClassification + + + code value with no quantitative meaning, used to represent a physical quantity + + + code value with no quantitative meaning, used to represent a physical quantity + + + + + + + physicalMeasurement + + + physicalMeasurement + + + value in physical units of the quantity being measured + + + value in physical units of the quantity being measured + + + + + + + auxillaryInformation + + + auxillaryInformation + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + + + + + + + qualityInformation + + + qualityInformation + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + + + + + + + referenceInformation + + + referenceInformation + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical measurements). + + + reference information used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical measurements). + + + + + + + modelResult + + + modelResult + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + + + + + + + coordinate + + + coordinate + + + data used to provide coordinate axis values + + + data used to provide coordinate axis values + + + + + + + + + MD_DatatypeCode + + + MD_DatatypeCode + + + datatype of element or entity + + + datatype of element or entity + + + + + class + + + class + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behaviour + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behaviour + + + + + + + codelist + + + codelist + + + flexible enumeration useful for expressing a long list of values, can be extended + + + flexible enumeration useful for expressing a long list of values, can be extended + + + + + + + enumeration + + + enumeration + + + data type whose instances form a list of named literal values, not extendable + + + data type whose instances form a list of named literal values, not extendable + + + + + + + codelistElement + + + codelistElement + + + permissible value for a codelist or enumeration + + + permissible value for a codelist or enumeration + + + + + + + abstractClass + + + abstractClass + + + class that cannot be directly instantiated + + + class that cannot be directly instantiated + + + + + + + aggregateClass + + + aggregateClass + + + class that is composed of classes it is connected to by an aggregate relationship + + + class that is composed of classes it is connected to by an aggregate relationship + + + + + + + specifiedClass + + + specifiedClass + + + subclass that may be substituted for its superclass + + + subclass that may be substituted for its superclass + + + + + + + datatypeClass + + + datatypeClass + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, encoding or persistent storage + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, encoding or persistent storage + + + + + + + interfaceClass + + + interfaceClass + + + named set of operations that characterize the behaviour of an element + + + named set of operations that characterize the behaviour of an element + + + + + + + unionClass + + + unionClass + + + class describing a selection of one of the specified types + + + class describing a selection of one of the specified types + + + + + + + metaClass + + + metaClass + + + class whose instances are classes + + + class whose instances are classes + + + + + + + typeClass + + + typeClass + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A type may have attributes and associations + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A type may have attributes and associations + + + + + + + characterString + + + characterString + + + textual information + + + textual information + + + + + + + integer + + + integer + + + numerical field + + + numerical field + + + + + + + association + + + association + + + semantic relationship between two classes that involves connections among their instances + + + semantic relationship between two classes that involves connections among their instances + + + + + + + + + MD_DimensionNameTypeCode + + + MD_DimensionNameTypeCode + + + name of the dimension + + + name of the dimension + + + + + row + + + row + + + ordinate (y) axis + + + ordinate (y) axis + + + + + + + column + + + column + + + abscissa (x) axis + + + abscissa (x) axis + + + + + + + vertical + + + vertical + + + vertical (z) axis + + + vertical (z) axis + + + + + + + track + + + track + + + along the direction of motion of the scan point + + + along the direction of motion of the scan point + + + + + + + crossTrack + + + crossTrack + + + perpendicular to the direction of motion of the scan point + + + perpendicular to the direction of motion of the scan point + + + + + + + line + + + line + + + scan line of a sensor + + + scan line of a sensor + + + + + + + sample + + + sample + + + element along a scan line + + + element along a scan line + + + + + + + time + + + time + + + duration + + + duration + + + + + + + + + MD_GeometricObjectTypeCode + + + MD_GeometricObjectTypeCode + + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + + + + + complex + + + complex + + + set of geometric primitives such that their boundaries can be represented as a union of other primitives + + + set of geometric primitives such that their boundaries can be represented as a union of other primitives + + + + + + + composite + + + composite + + + connected set of curves, solids or surfaces + + + connected set of curves, solids or surfaces + + + + + + + curve + + + curve + + + bounded, 1-dimensional geometric primitive, representing the continuous image of a line + + + bounded, 1-dimensional geometric primitive, representing the continuous image of a line + + + + + + + point + + + point + + + zero-dimensional geometric primitive, representing a position but not having an extent + + + zero-dimensional geometric primitive, representing a position but not having an extent + + + + + + + solid + + + solid + + + bounded, connected 3-dimensional geometric primitive, representing the continuous image of a region of space + + + bounded, connected 3-dimensional geometric primitive, representing the continuous image of a region of space + + + + + + + surface + + + surface + + + bounded, connected 2-dimensional geometric primitive, representing the continuous image of a region of a plane + + + bounded, connected 2-dimensional geometric primitive, representing the continuous image of a region of a plane + + + + + + + + + MD_ImagingConditionCode + + + MD_ImagingConditionCode + + + code which indicates conditions which may affect the image + + + code which indicates conditions which may affect the image + + + + + blurredImage + + + blurredImage + + + portion of the image is blurred + + + portion of the image is blurred + + + + + + + cloud + + + cloud + + + portion of the image is partially obscured by cloud cover + + + portion of the image is partially obscured by cloud cover + + + + + + + degradingObliquity + + + degradingObliquity + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + + + + + + + fog + + + fog + + + portion of the image is partially obscured by fog + + + portion of the image is partially obscured by fog + + + + + + + heavySmokeOrDust + + + heavySmokeOrDust + + + portion of the image is partially obscured by heavy smoke or dust + + + portion of the image is partially obscured by heavy smoke or dust + + + + + + + night + + + night + + + image was taken at night + + + image was taken at night + + + + + + + rain + + + rain + + + image was taken during rainfall + + + image was taken during rainfall + + + + + + + semiDarkness + + + semiDarkness + + + image was taken during semi-dark conditions; twilight conditions + + + image was taken during semi-dark conditions; twilight conditions + + + + + + + shadow + + + shadow + + + portion of the image is obscured by shadow + + + portion of the image is obscured by shadow + + + + + + + snow + + + snow + + + portion of the image is obscured by snow + + + portion of the image is obscured by snow + + + + + + + terrainMasking + + + terrainMasking + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + + + + + + + + + MD_KeywordTypeCode + + + MD_KeywordTypeCode + + + methods used to group similar keywords + + + methods used to group similar keywords + + + + + discipline + + + discipline + + + keyword identifies a branch of instruction or specialized learning + + + keyword identifies a branch of instruction or specialized learning + + + + + + + place + + + place + + + keyword identifies a location + + + keyword identifies a location + + + + + + + stratum + + + stratum + + + keyword identifies the layer(s) of any deposited substance or levels within an ordered system + + + keyword identifies the layer(s) of any deposited substance or levels within an ordered system + + + + + + + temporal + + + temporal + + + keyword identifies a time period related to the resource + + + keyword identifies a time period related to the resource + + + + + + + theme + + + theme + + + keyword identifies a particular subject or topic + + + keyword identifies a particular subject or topic + + + + + + + dataCentre + + + dataCentre + + + keyword identifies a repository or archive that manages and distributes data + + + keyword identifies a repository or archive that manages and distributes data + + + + + + + featureType + + + featureType + + + keyword identifies a resource containing or about a collection of feature instances with common characteristics + + + keyword identifies a resource containing or about a collection of feature instances with common characteristics + + + + + + + instrument + + + instrument + + + keyword identifies a device used to measure or compare physical properties + + + keyword identifies a device used to measure or compare physical properties + + + + + + + platform + + + platform + + + keyword identifies a structure upon which an instrument is mounted + + + keyword identifies a structure upon which an instrument is mounted + + + + + + + process + + + process + + + keyword identifies a series of actions or natural occurrences + + + keyword identifies a series of actions or natural occurrences + + + + + + + project + + + project + + + keyword identifies an endeavour undertaken to create or modify a product or service + + + keyword identifies an endeavour undertaken to create or modify a product or service + + + + + + + service + + + service + + + keyword identifies an activity carried out by one party for the benefit of another + + + keyword identifies an activity carried out by one party for the benefit of another + + + + + + + product + + + product + + + keyword identifies a type of product + + + keyword identifies a type of product + + + + + + + subTopicCategory + + + subTopicCategory + + + refinement of a topic category for the purpose of geographic data classification + + + refinement of a topic category for the purpose of geographic data classification + + + + + + + taxon + + + taxon + + + keyword identifies a taxonomy of the resource + + + keyword identifies a taxonomy of the resource + + + + + + + + + MD_MaintenanceFrequencyCode + + + MD_MaintenanceFrequencyCode + + + frequency with which modifications and deletions are made to the data after it is first produced + + + frequency with which modifications and deletions are made to the data after it is first produced + + + + + continual + + + continual + + + resource is repeatedly and frequently updated + + + resource is repeatedly and frequently updated + + + + + + + daily + + + daily + + + resource is updated each day + + + resource is updated each day + + + + + + + weekly + + + weekly + + + resource is updated on a weekly basis + + + resource is updated on a weekly basis + + + + + + + fortnightly + + + fortnightly + + + resource is updated every two weeks + + + resource is updated every two weeks + + + + + + + monthly + + + monthly + + + resource is updated each month + + + resource is updated each month + + + + + + + quarterly + + + quarterly + + + resource is updated every three months + + + resource is updated every three months + + + + + + + biannually + + + biannually + + + resource is updated twice each year + + + resource is updated twice each year + + + + + + + annually + + + annually + + + resource is updated every year + + + resource is updated every year + + + + + + + asNeeded + + + asNeeded + + + resource is updated as deemed necessary + + + resource is updated as deemed necessary + + + + + + + irregular + + + irregular + + + resource is updated in intervals that are uneven in duration + + + resource is updated in intervals that are uneven in duration + + + + + + + notPlanned + + + notPlanned + + + there are no plans to update the data + + + there are no plans to update the data + + + + + + + unknown + + + unknown + + + frequency of maintenance for the data is not known + + + frequency of maintenance for the data is not known + + + + + + + periodic + + + periodic + + + resource is updated at regular intervals + + + resource is updated at regular intervals + + + + + + + semimonthly + + + semimonthly + + + resource updated twice a monthly + + + resource updated twice a monthly + + + + + + + biennially + + + biennially + + + resource is updated every 2 years + + + resource is updated every 2 years + + + + + + + + + MD_MediumFormatCode + + + MD_MediumFormatCode + + + method used to write to the medium + + + method used to write to the medium + + + + + cpio + + + cpio + + + Copy In / Out (UNIX file format and command) + + + Copy In / Out (UNIX file format and command) + + + + + + + tar + + + tar + + + Tape Archive + + + Tape Archive + + + + + + + highSierra + + + highSierra + + + high sierra file system + + + high sierra file system + + + + + + + iso9660 + + + iso9660 + + + information processing volume and file structure of CD-ROM + + + information processing volume and file structure of CD-ROM + + + + + + + iso9660RockRidge + + + iso9660RockRidge + + + rock ridge interchange protocol (UNIX) + + + rock ridge interchange protocol (UNIX) + + + + + + + iso9660AppleHFS + + + iso9660AppleHFS + + + hierarchical file system (Macintosh) + + + hierarchical file system (Macintosh) + + + + + + + udf + + + udf + + + universal disk format + + + universal disk format + + + + + + + + + MD_ObligationCode + + + MD_ObligationCode + + + obligation of the element or entity + + + obligation of the element or entity + + + + + mandatory + + + mandatory + + + element is always required + + + element is always required + + + + + + + optional + + + optional + + + element is not required + + + element is not required + + + + + + + conditional + + + conditional + + + element is required when a specific condition is met + + + element is required when a specific condition is met + + + + + + + + + MD_PixelOrientationCode + + + MD_PixelOrientationCode + + + point in a pixel corresponding to the Earth location of the pixel + + + point in a pixel corresponding to the Earth location of the pixel + + + + + center + + + center + + + point halfway between the lower left and the upper right of the pixel + + + point halfway between the lower left and the upper right of the pixel + + + + + + + lowerLeft + + + lowerLeft + + + the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value + + + the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value + + + + + + + lowerRight + + + lowerRight + + + next corner counterclockwise from the lower left + + + next corner counterclockwise from the lower left + + + + + + + upperRight + + + upperRight + + + next corner counterclockwise from the lower right + + + next corner counterclockwise from the lower right + + + + + + + upperLeft + + + upperLeft + + + next corner counterclockwise from the upper right + + + next corner counterclockwise from the upper right + + + + + + + + + MD_ProgressCode + + + MD_ProgressCode + + + status of the resource + + + status of the resource + + + + + completed + + + completed + + + has been completed + + + has been completed + + + + + + + historicalArchive + + + historicalArchive + + + stored in an offline storage facility + + + stored in an offline storage facility + + + + + + + obsolete + + + obsolete + + + no longer relevant + + + no longer relevant + + + + + + + onGoing + + + onGoing + + + continually being updated + + + continually being updated + + + + + + + planned + + + planned + + + fixed date has been established upon or by which the resource will be created or updated + + + fixed date has been established upon or by which the resource will be created or updated + + + + + + + required + + + required + + + needs to be generated or updated + + + needs to be generated or updated + + + + + + + underDevelopment + + + underDevelopment + + + currently in the process of being created + + + currently in the process of being created + + + + + + + final + + + final + + + progress concluded and no changes will be accepted + + + progress concluded and no changes will be accepted + + + + + + + pending + + + pending + + + committed to, but not yet addressed + + + committed to, but not yet addressed + + + + + + + retired + + + retired + + + item is no longer recommended for use. It has not been superseded by another item + + + item is no longer recommended for use. It has not been superseded by another item + + + + + + + superseded + + + superseded + + + replaced by new + + + replaced by new + + + + + + + tentative + + + tentative + + + provisional changes likely before resource becomes final or complete + + + provisional changes likely before resource becomes final or complete + + + + + + + valid + + + valid + + + acceptable under specific conditions + + + acceptable under specific conditions + + + + + + + accepted + + + accepted + + + agreed to by sponsor + + + agreed to by sponsor + + + + + + + notAccepted + + + notAccepted + + + rejected by sponsor + + + rejected by sponsor + + + + + + + withdrawn + + + withdrawn + + + removed from consideration + + + removed from consideration + + + + + + + proposed + + + proposed + + + suggested that development needs to be undertaken + + + suggested that development needs to be undertaken + + + + + + + deprecated + + + deprecated + + + resource superseded and will become obsolete, use only for historical purposes + + + resource superseded and will become obsolete, use only for historical purposes + + + + + + + + + MD_ReferenceSystemTypeCode + + + MD_ReferenceSystemTypeCode + + + defines type of reference system used + + + defines type of reference system used + + + + + compoundEngineeringParametric + + + compoundEngineeringParametric + + + compound statio-parametric coordinate reference system containing an engineering coordinate reference system and a parametric reference system. e.g. [local] x, y, pressure + + + compound statio-parametric coordinate reference system containing an engineering coordinate reference system and a parametric reference system. e.g. [local] x, y, pressure + + + + + + + compoundEngineeringParametricTemporal + + + compoundEngineeringParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing an engineering, a parametric, and a temporal coordinate reference system. e.g. [local] x, y, pressure, time + + + compound statio-parametric-temporal coordinate reference system containing an engineering, a parametric, and a temporal coordinate reference system. e.g. [local] x, y, pressure, time + + + + + + + compoundEngineeringTemporal + + + compoundEngineeringTemporal + + + compound spatio-temporal coordinate reference system containing an engineering and a temporal coordinate reference system. e.g. [local] x, y, time + + + compound spatio-temporal coordinate reference system containing an engineering and a temporal coordinate reference system. e.g. [local] x, y, time + + + + + + + compoundEngineeringVertical + + + compoundEngineeringVertical + + + compound spatial reference system containing a horizontal engineering coordinate reference system and a vertical coordinate reference system. e.g. [local] x, y, height + + + compound spatial reference system containing a horizontal engineering coordinate reference system and a vertical coordinate reference system. e.g. [local] x, y, height + + + + + + + compoundEngineeringVerticalTemporal + + + compoundEngineeringVerticalTemporal + + + compound spatio-temporal coordinate reference system containing an engineering, a vertical, and a temporal coordinate reference system. e.g. [local] x, y, height, time + + + compound spatio-temporal coordinate reference system containing an engineering, a vertical, and a temporal coordinate reference system. e.g. [local] x, y, height, time + + + + + + + compoundGeodeticParametric + + + compoundGeodeticParametric + + + compound statio-parametric coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a parametric reference system. e.g. latitude, longitude, pressure + + + compound statio-parametric coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a parametric reference system. e.g. latitude, longitude, pressure + + + + + + + compoundGeodeticParametricTemporal + + + compoundGeodeticParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a parametric and a temporal coordinate reference system. e.g. latitude, longitude, pressure, time + + + compound statio-parametric-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a parametric and a temporal coordinate reference system. e.g. latitude, longitude, pressure, time + + + + + + + compoundGeographic2DTemporal + + + compoundGeographic2DTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a temporal reference system. e.g. latitude, longitude, time + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a temporal reference system. e.g. latitude, longitude, time + + + + + + + compoundGeographic2DVertical + + + compoundGeographic2DVertical + + + compound coordinate reference system in which one constituent coordinate reference system is a horizontal geodetic coordinate reference system and one is a vertical coordinate reference system. e.g. latitude, longitude, [gravity-related] height or depth + + + compound coordinate reference system in which one constituent coordinate reference system is a horizontal geodetic coordinate reference system and one is a vertical coordinate reference system. e.g. latitude, longitude, [gravity-related] height or depth + + + + + + + compoundGeographicVerticalTemporal + + + compoundGeographicVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a vertical, and a temporal coordinate reference system. e.g. latitude, longitude, height, time + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a vertical, and a temporal coordinate reference system. e.g. latitude, longitude, height, time + + + + + + + compoundGeographic3DTemporal + + + compoundGeographic3DTemporal + + + compound spatio-temporal coordinate reference system containing a 3 dimensional geographic and a temporal coordinate reference system. e.g. latitude, longitude, ellipsoidal height, time + + + compound spatio-temporal coordinate reference system containing a 3 dimensional geographic and a temporal coordinate reference system. e.g. latitude, longitude, ellipsoidal height, time + + + + + + + compoundProjected2DParametric + + + compoundProjected2DParametric + + + compound statio-parametric coordinate reference system containing a projected horizontal coordinate reference system and a parametric reference system. e.g. easting, northing, density + + + compound statio-parametric coordinate reference system containing a projected horizontal coordinate reference system and a parametric reference system. e.g. easting, northing, density + + + + + + + compoundProjected2DParametricTemporal + + + compoundProjected2DParametricTemporal + + + compound statio-parametric-temporal coordinate reference system containing a projected horizontal, a parametric, and a temporal coordinate reference system. e.g. easting, northing, density, time + + + compound statio-parametric-temporal coordinate reference system containing a projected horizontal, a parametric, and a temporal coordinate reference system. e.g. easting, northing, density, time + + + + + + + compoundProjectedTemporal + + + compoundProjectedTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal and a temporal coordinate reference system. e.g. easting, northing, time + + + compound spatio-temporal coordinate reference system containing a projected horizontal and a temporal coordinate reference system. e.g. easting, northing, time + + + + + + + compoundProjectedVertical + + + compoundProjectedVertical + + + compound spatial reference system containing a horizontal projected coordinate reference system and a vertical coordinate reference system. e.g. easting, northing, [gravity-related] height or depth + + + compound spatial reference system containing a horizontal projected coordinate reference system and a vertical coordinate reference system. e.g. easting, northing, [gravity-related] height or depth + + + + + + + compoundProjectedVerticalTemporal + + + compoundProjectedVerticalTemporal + + + compound spatio-temporal coordinate reference system containing a projected horizontal, a vertical, and a temporal coordinate reference system. e.g. easting, northing, height, time + + + compound spatio-temporal coordinate reference system containing a projected horizontal, a vertical, and a temporal coordinate reference system. e.g. easting, northing, height, time + + + + + + + engineering + + + engineering + + + coordinate reference system based on an engineering datum (datum describing the relationship of a coordinate system to a local reference). e.g. [local] x,y + + + coordinate reference system based on an engineering datum (datum describing the relationship of a coordinate system to a local reference). e.g. [local] x,y + + + + + + + engineeringDesign + + + engineeringDesign + + + engineering coordinate reference system in which the base representation of a moving object is specified. e.g. [local] x,y + + + engineering coordinate reference system in which the base representation of a moving object is specified. e.g. [local] x,y + + + + + + + engineeringImage + + + engineeringImage + + + coordinate reference system based on an image datum (engineering datum which defines the relationship of a coordinate system to an image). e.g. row, column + + + coordinate reference system based on an image datum (engineering datum which defines the relationship of a coordinate system to an image). e.g. row, column + + + + + + + geodeticGeocentric + + + geodeticGeocentric + + + geodetic CRS having a Cartesian 3D coordinate system. e.g. [geocentric] X,Y,Z + + + geodetic CRS having a Cartesian 3D coordinate system. e.g. [geocentric] X,Y,Z + + + + + + + geodeticGeographic2D + + + geodeticGeographic2D + + + geodetic CRS having an ellipsoidal 2D coordinate system. e.g. latitude, longitude + + + geodetic CRS having an ellipsoidal 2D coordinate system. e.g. latitude, longitude + + + + + + + geodeticGeographic3D + + + geodeticGeographic3D + + + geodetic CRS having an ellipsoidal 3D coordinate system. e.g. latitude, longitude, ellipsoidal height + + + geodetic CRS having an ellipsoidal 3D coordinate system. e.g. latitude, longitude, ellipsoidal height + + + + + + + geographicIdentifier + + + geographicIdentifier + + + spatial reference in the form of a label or code that identifies a location. e.g. post code + + + spatial reference in the form of a label or code that identifies a location. e.g. post code + + + + + + + linear + + + linear + + + set of Linear Referencing Methods and the policies, records and procedures for implementing them. reference system that identifies a location by reference to a segment of a linear geographic feature and distance along that segment from a given point. e.g. x km along road + + + set of Linear Referencing Methods and the policies, records and procedures for implementing them. reference system that identifies a location by reference to a segment of a linear geographic feature and distance along that segment from a given point. e.g. x km along road + + + + + + + parametric + + + parametric + + + coordinate reference system based on a parametric datum (datum describing the relationship of a parametric coordinate system to an object). e.g. pressure + + + coordinate reference system based on a parametric datum (datum describing the relationship of a parametric coordinate system to an object). e.g. pressure + + + + + + + projected + + + projected + + + coordinate reference system derived from a two-dimensional geodetic coordinate reference system by applying a map projection. e.g. easting, northing + + + coordinate reference system derived from a two-dimensional geodetic coordinate reference system by applying a map projection. e.g. easting, northing + + + + + + + temporal + + + temporal + + + reference system against which time is measured. e.g. time + + + reference system against which time is measured. e.g. time + + + + + + + vertical + + + vertical + + + one-dimensional coordinate reference system based on a vertical datum (datum describing the relation of gravity-related heights or depths to the Earth). e.g. [gravity-related] height or depth + + + one-dimensional coordinate reference system based on a vertical datum (datum describing the relation of gravity-related heights or depths to the Earth). e.g. [gravity-related] height or depth + + + + + + + + + MD_RestrictionCode + + + MD_RestrictionCode + + + limitation(s) placed upon the access or use of the data + + + limitation(s) placed upon the access or use of the data + + + + + copyright + + + copyright + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor + + + + + + + patent + + + patent + + + government has granted exclusive right to make, sell, use or license an invention or discovery + + + government has granted exclusive right to make, sell, use or license an invention or discovery + + + + + + + patentPending + + + patentPending + + + produced or sold information awaiting a patent + + + produced or sold information awaiting a patent + + + + + + + trademark + + + trademark + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner or manufacturer + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner or manufacturer + + + + + + + licence + + + licence + + + formal permission to do something + + + formal permission to do something + + + + + + + intellectualPropertyRights + + + intellectualPropertyRights + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + + + + + + + restricted + + + restricted + + + withheld from general circulation or disclosure + + + withheld from general circulation or disclosure + + + + + + + otherRestrictions + + + otherRestrictions + + + limitation not listed + + + limitation not listed + + + + + + + unrestricted + + + unrestricted + + + no constraints exist + + + no constraints exist + + + + + + + licenceUnrestricted + + + licenceUnrestricted + + + formal permission not required to use the resource + + + formal permission not required to use the resource + + + + + + + licenceEndUser + + + licenceEndUser + + + formal permission required for a person or an entity to use the resource and that may differ from the person that orders or purchases it + + + formal permission required for a person or an entity to use the resource and that may differ from the person that orders or purchases it + + + + + + + licenceDistributor + + + licenceDistributor + + + formal permission required for a person or an entity to commercialize or distribute the resource + + + formal permission required for a person or an entity to commercialize or distribute the resource + + + + + + + private + + + private + + + protects rights of individual or organisations from observation, intrusion, or attention of others + + + protects rights of individual or organisations from observation, intrusion, or attention of others + + + + + + + statutory + + + statutory + + + prescribed by law + + + prescribed by law + + + + + + + confidential + + + confidential + + + not available to the public contains information that could be prejudicial to a commercial, industrial, or national interest + + + not available to the public contains information that could be prejudicial to a commercial, industrial, or national interest + + + + + + + SBU + + + SBU + + + although unclassified, requires strict controls over its distribution. + + + although unclassified, requires strict controls over its distribution. + + + + + + + in-confidence + + + in-confidence + + + with trust + + + with trust + + + + + + + + + MD_ScopeCode + + + MD_ScopeCode + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + attribute + + + attribute + + + information applies to the attribute value + + + information applies to the attribute value + + + + + + + attributeType + + + attributeType + + + information applies to the characteristic of a feature + + + information applies to the characteristic of a feature + + + + + + + collectionHardware + + + collectionHardware + + + information applies to the collection hardware class + + + information applies to the collection hardware class + + + + + + + collectionSession + + + collectionSession + + + information applies to the collection session + + + information applies to the collection session + + + + + + + dataset + + + dataset + + + information applies to the dataset + + + information applies to the dataset + + + + + + + series + + + series + + + information applies to the series + + + information applies to the series + + + + + + + nonGeographicDataset + + + nonGeographicDataset + + + information applies to non-geographic data + + + information applies to non-geographic data + + + + + + + dimensionGroup + + + dimensionGroup + + + information applies to a dimension group + + + information applies to a dimension group + + + + + + + feature + + + feature + + + information applies to a feature + + + information applies to a feature + + + + + + + featureType + + + featureType + + + information applies to a feature type + + + information applies to a feature type + + + + + + + propertyType + + + propertyType + + + information applies to a property type + + + information applies to a property type + + + + + + + fieldSession + + + fieldSession + + + information applies to a field session + + + information applies to a field session + + + + + + + software + + + software + + + information applies to a computer program or routine + + + information applies to a computer program or routine + + + + + + + service + + + service + + + information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case + + + information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case + + + + + + + model + + + model + + + information applies to a copy or imitation of an existing or hypothetical object + + + information applies to a copy or imitation of an existing or hypothetical object + + + + + + + tile + + + tile + + + information applies to a tile, a spatial subset of geographic data + + + information applies to a tile, a spatial subset of geographic data + + + + + + + metadata + + + metadata + + + information applies to metadata + + + information applies to metadata + + + + + + + initiative + + + initiative + + + information applies to an initiative + + + information applies to an initiative + + + + + + + sample + + + sample + + + information applies to a sample + + + information applies to a sample + + + + + + + document + + + document + + + information applies to a document + + + information applies to a document + + + + + + + repository + + + repository + + + information applies to a repository + + + information applies to a repository + + + + + + + aggregate + + + aggregate + + + information applies to an aggregate resource + + + information applies to an aggregate resource + + + + + + + product + + + product + + + metadata describing an ISO 19131 data product specification + + + metadata describing an ISO 19131 data product specification + + + + + + + collection + + + collection + + + information applies to an unstructured set + + + information applies to an unstructured set + + + + + + + coverage + + + coverage + + + information applies to a coverage + + + information applies to a coverage + + + + + + + application + + + application + + + information resource hosted on a specific set of hardware and accessible over a network + + + information resource hosted on a specific set of hardware and accessible over a network + + + + + + + + + MD_SpatialRepresentationTypeCode + + + MD_SpatialRepresentationTypeCode + + + method used to represent geographic information in the resource + + + method used to represent geographic information in the resource + + + + + vector + + + vector + + + vector data are used to represent geographic data + + + vector data are used to represent geographic data + + + + + + + grid + + + grid + + + grid data are used to represent geographic data + + + grid data are used to represent geographic data + + + + + + + textTable + + + textTable + + + textual or tabular data are used to represent geographic data + + + textual or tabular data are used to represent geographic data + + + + + + + tin + + + tin + + + triangulated irregular network + + + triangulated irregular network + + + + + + + stereoModel + + + stereoModel + + + three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images + + + three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images + + + + + + + video + + + video + + + scene from a video recording + + + scene from a video recording + + + + + + + + + MD_TopicCategoryCode + + + MD_TopicCategoryCode + + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between general categories and the user is encouraged to select the one most appropriate. + + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between general categories and the user is encouraged to select the one most appropriate. + + + + + farming + + + farming + + + rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock + + + rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock + + + + + + + biota + + + biota + + + flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat + + + flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat + + + + + + + boundaries + + + boundaries + + + legal land descriptions, maritime boundaries. Examples: political and administrative boundaries, territorial seas, EEZ, port security zones + + + legal land descriptions, maritime boundaries. Examples: political and administrative boundaries, territorial seas, EEZ, port security zones + + + + + + + climatologyMeteorologyAtmosphere + + + climatologyMeteorologyAtmosphere + + + processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation + + + processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation + + + + + + + economy + + + economy + + + economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas + + + economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas + + + + + + + elevation + + + elevation + + + height above or below a vertical datum. Examples: altitude, bathymetry, digital elevation models, slope, derived products + + + height above or below a vertical datum. Examples: altitude, bathymetry, digital elevation models, slope, derived products + + + + + + + environment + + + environment + + + environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape + + + environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape + + + + + + + geoscientificInformation + + + geoscientificInformation + + + information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion + + + information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion + + + + + + + health + + + health + + + health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services + + + health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services + + + + + + + imageryBaseMapsEarthCover + + + imageryBaseMapsEarthCover + + + base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations + + + base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations + + + + + + + intelligenceMilitary + + + intelligenceMilitary + + + military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection + + + military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection + + + + + + + inlandWaters + + + inlandWaters + + + inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrologic information + + + inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrologic information + + + + + + + location + + + location + + + positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place names + + + positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place names + + + + + + + oceans + + + oceans + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tsunamis, coastal information, reefs + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tsunamis, coastal information, reefs + + + + + + + planningCadastre + + + planningCadastre + + + information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, land ownership + + + information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, land ownership + + + + + + + society + + + society + + + characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information + + + characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information + + + + + + + structure + + + structure + + + man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + + + man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + + + + + + + transportation + + + transportation + + + means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways + + + means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways + + + + + + + utilitiesCommunication + + + utilitiesCommunication + + + energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks + + + energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks + + + + + + + extraTerrestrial + + + extraTerrestrial + + + region more than 100 km above the surface of the Earth + + + region more than 100 km above the surface of the Earth + + + + + + + disaster + + + disaster + + + Information related to disasters. Examples: site of the disaster, evacuation zone, disaster-prevention facility, disaster relief activities + + + Information related to disasters. Examples: site of the disaster, evacuation zone, disaster-prevention facility, disaster relief activities + + + + + + + + + MD_TopologyLevelCode + + + MD_TopologyLevelCode + + + degree of complexity of the spatial relationships + + + degree of complexity of the spatial relationships + + + + + geometryOnly + + + geometryOnly + + + geometry objects without any additional structure which describes topology + + + geometry objects without any additional structure which describes topology + + + + + + + topology1D + + + topology1D + + + 1-dimensional topological complex; commonly called 'chain-node' topology + + + 1-dimensional topological complex; commonly called 'chain-node' topology + + + + + + + planarGraph + + + planarGraph + + + 1-dimensional topological complex that is planar. (A planar graph is a graph that can be drawn in a plane in such a way that no two edges intersect except at a vertex.) + + + 1-dimensional topological complex that is planar. (A planar graph is a graph that can be drawn in a plane in such a way that no two edges intersect except at a vertex.) + + + + + + + fullPlanarGraph + + + fullPlanarGraph + + + 2-dimensional topological complex that is planar. (A 2-dimensional topological complex is commonly called 'full topology' in a cartographic 2D environment.) + + + 2-dimensional topological complex that is planar. (A 2-dimensional topological complex is commonly called 'full topology' in a cartographic 2D environment.) + + + + + + + surfaceGraph + + + surfaceGraph + + + 1-dimensional topological complex that is isomorphic to a subset of a surface. (A geometric complex is isomorphic to a topological complex if their elements are in a one-to-one, dimensional-and boundary-preserving correspondence to one another.) + + + 1-dimensional topological complex that is isomorphic to a subset of a surface. (A geometric complex is isomorphic to a topological complex if their elements are in a one-to-one, dimensional-and boundary-preserving correspondence to one another.) + + + + + + + fullSurfaceGraph + + + fullSurfaceGraph + + + 2-dimensional topological complex that is isomorphic to a subset of a surface + + + 2-dimensional topological complex that is isomorphic to a subset of a surface + + + + + + + topology3D + + + topology3D + + + 3-dimensional topological complex. (A topological complex is a collection of topological primitives that are closed under the boundary operations.) + + + 3-dimensional topological complex. (A topological complex is a collection of topological primitives that are closed under the boundary operations.) + + + + + + + fullTopology3D + + + fullTopology3D + + + complete coverage of a 3D Euclidean coordinate space + + + complete coverage of a 3D Euclidean coordinate space + + + + + + + abstract + + + abstract + + + topological complex without any specified geometric realisation + + + topological complex without any specified geometric realisation + + + + + + + + + SV_CouplingType + + + SV_CouplingType + + + type of coupling between service and associated data (if exists) + + + type of coupling between service and associated data (if exists) + + + + + loose + + + loose + + + service instance is loosely coupled with a data instance, i.e. no MD_DataIdentification class has to be described + + + service instance is loosely coupled with a data instance, i.e. no MD_DataIdentification class has to be described + + + + + + + mixed + + + mixed + + + service instance is mixed coupled with a data instance, i.e. MD_DataIdentification describes the associated data instance and additionally the service instance might work with other external data instances + + + service instance is mixed coupled with a data instance, i.e. MD_DataIdentification describes the associated data instance and additionally the service instance might work with other external data instances + + + + + + + tight + + + tight + + + service instance is tightly coupled with a data instance, i.e. MD_DataIdentification class MUST be described + + + service instance is tightly coupled with a data instance, i.e. MD_DataIdentification class MUST be described + + + + + + + + + SV_ParameterDirection + + + SV_ParameterDirection + + + class of information to which the referencing entity applies + + + class of information to which the referencing entity applies + + + + + in + + + in + + + the parameter is an input parameter to the service instance + + + the parameter is an input parameter to the service instance + + + + + + + out + + + out + + + the parameter is an output parameter to the service instance + + + the parameter is an output parameter to the service instance + + + + + + + in/out + + + in/out + + + the parameter is both an input and output parameter to the service instance + + + the parameter is both an input and output parameter to the service instance + + + + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/.DS_Store b/inst/extdata/schemas/19115/resources/Codelists/gml/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19115/resources/Codelists/gml/.DS_Store differ diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CD_PixelinCell.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CD_PixelinCell.xml new file mode 100644 index 00000000..25d84148 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CD_PixelinCell.xml @@ -0,0 +1,25 @@ + + + Specification of the way the image grid is associated with the image data + attributes. + CD_PixelinCell + + + The origin of the image coordinate system is the centre of a grid cell or image + pixel. + cellCenter + + + + + The origin of the image coordinate system is the corner of a grid cell, or + half-way between the centres of adjacent image pixels. + cellCorner + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CI_DateTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_DateTypeCode.xml new file mode 100644 index 00000000..87547138 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_DateTypeCode.xml @@ -0,0 +1,123 @@ + + + identification of when a given event occurred + CI_DateTypeCode + + + date identifies when the resource was brought into existence + creation + + + + + date identifies when the resource was issued + publication + + + + + date identifies when the resource was examined or re-examined and improved or + amended + revision + + + + + date identifies when resource expires + expiry + + + + + date identifies when resource was last updated + lastUpdate + + + + + date identifies when resource was last reviewed + lastRevision + + + + + date identifies when resource will be next updated + nextUpdate + + + + + date identifies when resource became not available or obtainable + unavailable + + + + + date identifies when resource became in force + inForce + + + + + date identifies when resource was adopted + adopted + + + + + date identifies when resource was deprecated + deprecated + + + + + date identifies when resource was superseded or replaced by another + resource + superseded + + + + + time at which the data is considered to become valid. Note: There could be quite + a delay between creation and validity begins + validityBegins + + + + + time at which the data is no longer considered to be valid + validityExpires + + + + + the date that the resource shall be released for public access + released + + + + + date identifies when an instance of the resource was distributed + distribution + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CI_OnLineFunctionCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_OnLineFunctionCode.xml new file mode 100644 index 00000000..094a036b --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_OnLineFunctionCode.xml @@ -0,0 +1,70 @@ + + function performed by the resource + CI_OnLineFunctionCode + + + online instructions for transferring data from one storage device or system to another + download + + + + + online information about the resource + information + + + + + online instructions for requesting the resource from the provider + offlineAccess + + + + + online order process for obtaining the resource + order + + + + + online search interface for seeking out information about the resource + search + + + + + complete metadata provided + completeMetadata + + + + + browse graphic provided + browseGraphic + + + + + online resource upload capability provided + upload + + + + + online email service provided + emailService + + + + + online browsing provided + browsing + + + + + online file access provided + fileAccess + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CI_PresentationFormCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_PresentationFormCode.xml new file mode 100644 index 00000000..9e52cb65 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_PresentationFormCode.xml @@ -0,0 +1,130 @@ + + mode in which the data is represented + CI_PresentationFormCode + + + digital representation of a primarily textual item (can contain illustrations also) + documentDigital + + + + + representation of a primarily textual item (can contain illustrations also) on paper, photographic material, or other media + documentHardcopy + + + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + imageDigital + + + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + imageHardcopy + + + + + map represented in raster or vector form + mapDigital + + + + + map printed on paper, photographic material, or other media for use directly by the human user + mapHardcopy + + + + + multi-dimensional digital representation of a feature, process, etc. + modelDigital + + + + + 3-dimensional, physical model + modelHardcopy + + + + + vertical cross-section in digital form + profileDigital + + + + + vertical cross-section printed on paper, etc. + profileHardcopy + + + + + digital representation of facts or figures systematically displayed, especially in columns + tableDigital + + + + + representation of facts or figures systematically displayed, especially in columns, printed on paper, photographic material, or other media + tableHardcopy + + + + + digital video recording + videoDigital + + + + + video recording on film + videoHardcopy + + + + + digital audio recording + audioDigital + + + + + audio recording delivered by analog media, such as a magnetic tape + audioHardcopy + + + + + information representation using simultaneously various digital modes for text, sound, image + multimediaDigital + + + + + information representation using simultaneously various analog modes for text, sound, image + multimediaHardcopy + + + + + a physical object. Eg. Rock or mineral sample, microscope slide + physicalObject + + + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and recorded in digital format + diagramDigital + + + + + information represented graphically by charts such as pie chart, bar chart, and other type of diagrams and printed on paper, phototographic material, or other media + diagramHardcopy + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CI_RoleCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_RoleCode.xml new file mode 100644 index 00000000..481eceef --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_RoleCode.xml @@ -0,0 +1,124 @@ + + function performed by the responsible party + CI_RoleCode + + + party that supplies the resource + resourceProvider + + + + + party that accepts accountability and responsibility for the resource and ensures appropriate care and maintenance of the resource + custodian + + + + + party that owns the resource + owner + + + + + party who uses the resource + user + + + + + party who distributes the resource + distributor + + + + + party who created the resource + originator + + + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + pointOfContact + + + + + key party responsible for gathering information and conducting research + principalInvestigator + + + + + party who has processed the data in a manner such that the resource has been modified + processor + + + + + party who published the resource + publisher + + + + + party who authored the resource + author + + + + + party who speaks for the resource + sponsor + + + + + party who jointly authors the resource + coAuthor + + + + + party who assists with the generation of the resource other than the principal investigator + collaborator + + + + + party who reviewed or modified the resource to improve the content + editor + + + + + a class of entity that mediates access to the resource and for whom the resource is intended or useful + mediator + + + + + party owning or managing rights over the resource + rightsHolder + + + + + party contributing to the resource + contributor + + + + + party providing monetary support for the resource + funder + + + + + party who has an interest in the resource or the use of the resource + stakeholder + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CI_TelephoneTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_TelephoneTypeCode.xml new file mode 100644 index 00000000..2ba6a978 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CI_TelephoneTypeCode.xml @@ -0,0 +1,25 @@ + + + type of telephone + CI_TelephoneTypeCode + + + telephone provides voice service + voice + + + + + telephone provides facsimile service + fax + + + + + telephone provides sms service + sms + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CS_AxisDirection.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CS_AxisDirection.xml new file mode 100644 index 00000000..3fe08940 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CS_AxisDirection.xml @@ -0,0 +1,179 @@ + + The direction of positive increase in the coordinate value for a coordinate system axis. + + CS_AxisDirection + + + Axis positive direction is north. In a geodetic or projected CRS, north is defined through the geodetic datum. In an engineering CRS, north may be defined with respect to an engineering object rather than a geographical direction. + north + + + + + Axis positive direction is approximately north-north-east. + northNorthEast + + + + + Axis positive direction is approximately north-east. + northEast + + + + + Axis positive direction is approximately east-north-east. + eastNorthEast + + + + + Axis positive direction is Pi/2 radians clockwise from north. + east + + + + + Axis positive direction is approximately east-south-east. + eastSouthEast + + + + + Axis positive direction is approximately south-east. + southEast + + + + + Axis positive direction is approximately south-south-east. + southSouthEast + + + + + Axis positive direction is Pi radians clockwise from north. + south + + + + + Axis positive direction is approximately south-south-west. + southSouthWest + + + + + Axis positive direction is approximately south-west. + southWest + + + + + Axis positive direction is approximately west-south-west. + westSouthWest + + + + + Axis positive direction is 3Pi/2 radians clockwise from north. + west + + + + + Axis positive direction is approximately west-north-west. + westNorthWest + + + + + Axis positive direction is approximately north-west. + northWest + + + + + Axis positive direction is approximately north-north-west. + northNorthWest + + + + + Axis positive direction is up relative to gravity. + up + + + + + Axis positive direction is down relative to gravity. + down + + + + + Axis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator with the prime meridian. + geocentricX + + + + + Axis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator and the meridian Pi/2 radians eastwards from the prime meridian. + geocentricY + + + + + Axis positive direction is from the centre of the modelled earth parallel to its rotation axis and towards its north pole. + geocentricZ + + + + + Axis positive direction is towards higher pixel column. + columnPositive + + + + + Axis positive direction is towards lower pixel column. + columnNegative + + + + + Axis positive direction is towards higher pixel row. + rowPositive + + + + + Axis positive direction is towards lower pixel row. + rowNegative + + + + + Axis positive direction is right in display. + displayRight + + + + + Axis positive direction is left in display. + displayLeft + + + + + Axis positive direction is towards top of approximately vertical display surface. + displayUp + + + + + Axis positive direction is towards bottom of approximately vertical display surface. + displayDown + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CS_RangeMeaning.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/CS_RangeMeaning.xml new file mode 100644 index 00000000..eff1455d --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CS_RangeMeaning.xml @@ -0,0 +1,17 @@ + + Meaning of the axis value range specified through minimumValue and maximumValue. + + CS_RangeMeaning + + + Any value between and including minimumValue and maximumValue is valid. + exact + + + + + The axis is continuous with values wrapping around at the minimumValue and maximumValue. Values with the same meaning repeat modulo the difference between maximumValue and minimumValue. + wraparound + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/CodelistDictionary-v32.xsl b/inst/extdata/schemas/19115/resources/Codelists/gml/CodelistDictionary-v32.xsl new file mode 100644 index 00000000..6bbeba47 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/CodelistDictionary-v32.xsl @@ -0,0 +1,70 @@ + + + + + + + + + Codelist ' + <xsl:value-of select="/gml:Dictionary/gml:identifier"/> + ' + + + +

+ Codelist ' + + ' +

+ +

+ +

+
+ + + + + + + + + + + + + + +
+ Value + +
+
+ Documentation +
+ + +
+
+ + + +
+ NOTE: + +
+ + + +
+
+ + +
+
\ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/DCPList.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/DCPList.xml new file mode 100644 index 00000000..ca8acb7e --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/DCPList.xml @@ -0,0 +1,65 @@ + + + distributed computing platforms on which the operation has been implemented + DCPList + + + XML + XML + + + + + Common Object Request Broker Architecture + CORBA + + + + + Object-oriented programming language + JAVA + + + + + Component Object Model + COM + + + + + Structured Query Language + SQL + + + + + Simple Object Access Protocol + SOAP + + + + + ISO 23950 + Z3950 + + + + + HyperText Transfer Protocol + HTTP + + + + + File Transfer Protocol + FTP + + + + + Web Service + WebServices + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/DS_AssociationTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/DS_AssociationTypeCode.xml new file mode 100644 index 00000000..3475fdac --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/DS_AssociationTypeCode.xml @@ -0,0 +1,59 @@ + + justification for the correlation of two resources + DS_AssociationTypeCode + + + reference from one resource to another + crossReference + + + + + reference to a master resource of which this one is a part + largerWorkCitation + + + + + part of same structured set of data held in a computer + partOfSeamlessDatabase + + + + + part of a set of imagery that when used together, provides three-dimensional images + stereoMate + + + + + reference to resources that are parts of this data set + isComposedOf + + + + + common title with holdings note NOTE: title identifies elements of a series collectively, combined with information about what volumes are available at the source cited + collectiveTitle + + + + + associated through a common heritage such as produced to a common product specification + series + + + + + associate through a dependency + dependency + + + + + + + revisionOf + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/DS_InitiativeTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/DS_InitiativeTypeCode.xml new file mode 100644 index 00000000..a30d85f1 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/DS_InitiativeTypeCode.xml @@ -0,0 +1,94 @@ + + type of aggregation activity in which resources are related + DS_InitiativeTypeCode + + + series of organized planned actions + campaign + + + + + accumulation of resources assembled for a specific purpose + collection + + + + + specific performance of a function or group of functions + exercise + + + + + process designed to find if something is effective or valid + experiment + + + + + search or systematic inquiry + investigation + + + + + specific operation of a data collection system + mission + + + + + device or piece of equipment which detects or records + sensor + + + + + action that is part of a series of actions + operation + + + + + vehicle or other support base that holds a sensor + platform + + + + + method of doing something involving a number of steps + process + + + + + specific planned activity + program + + + + + organized undertaking, research, or development + project + + + + + examination or investigation + study + + + + + piece of work + task + + + + + process of testing to discover or demonstrate something + trial + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/FC_RoleType.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/FC_RoleType.xml new file mode 100644 index 00000000..76e91a06 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/FC_RoleType.xml @@ -0,0 +1,23 @@ + + Code list for the classifications of roles. + + FC_RoleType + + + Indicates an ordinary association + ordinary + + + + + Indicates a UML aggregation (part role). + aggregation + + + + + Indicates a UML composition (part role). + composition + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_CellGeometryTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_CellGeometryTypeCode.xml new file mode 100644 index 00000000..ea816dad --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_CellGeometryTypeCode.xml @@ -0,0 +1,31 @@ + + + code indicating the geometry represented by the grid cell value + MD_CellGeometryTypeCode + + + each cell represents a point + point + + + + + each cell represents an area + area + + + + + each cell represents a volumetric measurement on a regular grid in three dimensional space + voxel + + + + + height range for a single point vertical profile + stratum + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ClassificationCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ClassificationCode.xml new file mode 100644 index 00000000..68ce6cd4 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ClassificationCode.xml @@ -0,0 +1,60 @@ + + name of the handling restrictions on the resource + MD_ClassificationCode + + + available for general disclosure + unclassified + + + + + not for general disclosure + restricted + + + + + available for someone who can be entrusted with information + confidential + + + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + secret + + + + + of the highest secrecy + topSecret + + + + + although unclassified, requires strict controls over its distribution + sensitiveButUnclassified + + + + + unclassified information that may be exempt from mandatory release to the public + forOfficialUseOnly + + + + + + + protected + + + + + + + limitedDistribution + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_CoverageContentTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_CoverageContentTypeCode.xml new file mode 100644 index 00000000..7dc59385 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_CoverageContentTypeCode.xml @@ -0,0 +1,53 @@ + + specific type of information represented in the cell + MD_CoverageContentTypeCode + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + image + + + + + code value with no quantitative meaning, used to represent a physical quantity + thematicClassification + + + + + value in physical units of the quantity being measured + physicalMeasurement + + + + + data, usually a physical measurement, used to support the calculation of the primary physicalMeasurement coverages in the dataset (e.g. grid of aerosol optical thickness used in the calculation of a sea surface temperature product). + auxilliaryInformation + + + + + data used to characterize the quality of the physicalMeasurement coverages in the dataset. Typically included in a gmi:QE_CoverageResult. + qualityInformation + + + + + reference intofmation used to support the calculation or use of the physicalMeasurement coverages in the dataset (e.g. grids of latitude/longitude used to geolocate the physical measurements). + referenceInformation + + + + + resources with values that are calculated using a model rather than being observed or calculated from observations. + modelResult + + + + + + + coordinate + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_DatatypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_DatatypeCode.xml new file mode 100644 index 00000000..89ddb09e --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_DatatypeCode.xml @@ -0,0 +1,94 @@ + + datatype of element or entity + MD_DatatypeCode + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behaviour + class + + + + + flexible enumeration useful for expressing a long list of values, can be extended + codelist + + + + + data type whose instances form a list of named literal values, not extendable + enumeration + + + + + permissible value for a codelist or enumeration + codelistElement + + + + + class that cannot be directly instantiated + abstractClass + + + + + class that is composed of classes it is connected to by an aggregate relationship + aggregateClass + + + + + subclass that may be substituted for its superclass + specifiedClass + + + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, encoding or persistent storage + datatypeClass + + + + + named set of operations that characterize the behaviour of an element + interfaceClass + + + + + class describing a selection of one of the specified types + unionClass + + + + + class whose instances are classes + metaClass + + + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A type may have attributes and associations + typeClass + + + + + free text field + characterString + + + + + numerical field + integer + + + + + semantic relationship between two classes that involves connections among their instances + association + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_DimensionNameTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_DimensionNameTypeCode.xml new file mode 100644 index 00000000..2fee9d1d --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_DimensionNameTypeCode.xml @@ -0,0 +1,52 @@ + + name of the dimension + MD_DimensionNameTypeCode + + + ordinate (y) axis + row + + + + + abscissa (x) axis + column + + + + + vertical (z) axis + vertical + + + + + along the direction of motion of the scan point + track + + + + + perpendicular to the direction of motion of the scan point + crossTrack + + + + + scan line of a sensor + line + + + + + element along a scan line + sample + + + + + duration + time + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_GeometricObjectTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_GeometricObjectTypeCode.xml new file mode 100644 index 00000000..7757ca01 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_GeometricObjectTypeCode.xml @@ -0,0 +1,40 @@ + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + MD_GeometricObjectTypeCode + + + set of geometric primitives such that their boundaries can be represented as a union of other primitives + complex + + + + + connected set of curves, solids or surfaces + composite + + + + + bounded, 1-dimensional geometric primitive, representing the continuous image of a line + curve + + + + + zero-dimensional geometric primitive, representing a position but not having an extent + point + + + + + bounded, connected 3-dimensional geometric primitive, representing the continuous image of a region of space + solid + + + + + bounded, connected 2-dimensional geometric primitive, representing the continuous image of a region of a plane + surface + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ImagingConditionCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ImagingConditionCode.xml new file mode 100644 index 00000000..9c08e713 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ImagingConditionCode.xml @@ -0,0 +1,70 @@ + + code which indicates conditions which may affect the image + MD_ImagingConditionCode + + + portion of the image is blurred + blurredImage + + + + + portion of the image is partially obscured by cloud cover + cloud + + + + + acute angle between the plane of the ecliptic (the plane of the Earth's orbit) and the plane of the celestial equator + degradingObliquity + + + + + portion of the image is partially obscured by fog + fog + + + + + portion of the image is partially obscured by heavy smoke or dust + heavySmokeOrDust + + + + + image was taken at night + night + + + + + image was taken during rainfall + rain + + + + + image was taken during semi-dark conditions-twilight conditions + semiDarkness + + + + + portion of the image is obscured by shadow + shadow + + + + + portion of the image is obscured by snow + snow + + + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + terrainMasking + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_KeywordTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_KeywordTypeCode.xml new file mode 100644 index 00000000..11c21420 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_KeywordTypeCode.xml @@ -0,0 +1,94 @@ + + methods used to group similar keywords + MD_KeywordTypeCode + + + keyword identifies a branch of instruction or specialized learning + discipline + + + + + keyword identifies a location + place + + + + + keyword identifies the layer(s) of any deposited substance or levels within an ordered system + stratum + + + + + keyword identifies a time period related to the resource + temporal + + + + + keyword identifies a particular subject or topic + theme + + + + + keyword identifies a a repository or archive that manages and distributes data + dataCentre + + + + + keyword identifies a resource containing or about a collection of feature instances with common characteristics + featureType + + + + + keyword identifies a device used to measure or compare physical properties + instrument + + + + + keyword identifies a structure upon which an instrument is mounted + platform + + + + + keyword identifies a series of actions or natural occurrences + process + + + + + keyword identifies an endeavour undertaken to create or modify a product or service + project + + + + + keyword identifies an activity carried out by one party for the benefit of another + service + + + + + keyword identifies a type of product + product + + + + + refinement of a topic category for the purpose of geographic data classification + subTopicCategory + + + + + keyword identifies a taxonomy of the resource + taxon + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_MaintenanceFrequencyCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_MaintenanceFrequencyCode.xml new file mode 100644 index 00000000..f348e516 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_MaintenanceFrequencyCode.xml @@ -0,0 +1,94 @@ + + frequency with which modifications and deletions are made to the data after it is first produced + MD_MaintenanceFrequencyCode + + + resource is repeatedly and frequently updated + continual + + + + + resource is updated each day + daily + + + + + resource is updated on a weekly basis + weekly + + + + + resource is updated every two weeks + fortnightly + + + + + resource is updated each month + monthly + + + + + resource is updated every three months + quarterly + + + + + resource is updated twice each year + biannually + + + + + resource is updated every year + annually + + + + + resource is updated as deemed necessary + asNeeded + + + + + resource is updated in intervals that are uneven in duration + irregular + + + + + there are no plans to update the data + notPlanned + + + + + frequency of maintenance for the data is not known + unknown + + + + + resource is updated at regular intervals + periodic + + + + + resource updated twice a monthl + semimonthly + + + + + resource is updated every 2 years + biennially + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_MediumFormatCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_MediumFormatCode.xml new file mode 100644 index 00000000..838b30e2 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_MediumFormatCode.xml @@ -0,0 +1,46 @@ + + method used to write to the medium + MD_MediumFormatCode + + + CoPy In / Out (UNIX file format and command) + cpio + + + + + Tape ARchive + tar + + + + + high sierra file system + highSierra + + + + + information processing - volume and file structure of CD-ROM + iso9660 + + + + + rock ridge interchange protocol (UNIX) + iso9660RockRidge + + + + + hierarchical file system (Macintosh) + iso9660AppleHFS + + + + + universal disk format + udf + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ObligationCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ObligationCode.xml new file mode 100644 index 00000000..e37cde21 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ObligationCode.xml @@ -0,0 +1,22 @@ + + obligation of the element or entity + MD_ObligationCode + + + element is always required + mandatory + + + + + element is not required + optional + + + + + element is required when a specific condition is met + conditional + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_PixelOrientationCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_PixelOrientationCode.xml new file mode 100644 index 00000000..4cb15816 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_PixelOrientationCode.xml @@ -0,0 +1,34 @@ + + point in a pixel corresponding to the Earth location of the pixel + MD_PixelOrientationCode + + + point halfway between the lower left and the upper right of the pixel + centre + + + + + the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value + lowerLeft + + + + + next corner counterclockwise from the lower left + lowerRight + + + + + next corner counterclockwise from the lower right + upperRight + + + + + next corner counterclockwise from the upper right + upperLeft + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ProgressCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ProgressCode.xml new file mode 100644 index 00000000..7f142b5c --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ProgressCode.xml @@ -0,0 +1,114 @@ + + + status of the resource + MD_ProgressCode + + + has been completed + completed + + + + + stored in an offline storage facility + historicalArchive + + + + + no longer relevant + obsolete + + + + + continually being updated + onGoing + + + + + fixed date has been established upon or by which the resource will be created or updated + planned + + + + + needs to be generated or updated + required + + + + + currently in the process of being created + underDevelopment + + + + + progress concluded and no changes will be accepted + final + + + + + committed to, but not yet addressed + pending + + + + + item is no longer recommended for use. It has not been superseded by another item + retired + + + + + replaced by new + superseded + + + + + provisional changes likely before resource becomes final or complete + tentative + + + + + acceptable under specific conditions + valid + + + + + agreed to by sponsor + accepted + + + + + rejected by sponsor + notAccepted + + + + + removed from consideration + withdrawn + + + + + suggested that development needs to be undertaken + proposed + + + + + resource superseded and will become obsolete, use only for historical purposes + deprecated + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ReferenceSystemTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ReferenceSystemTypeCode.xml new file mode 100644 index 00000000..197983fd --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ReferenceSystemTypeCode.xml @@ -0,0 +1,173 @@ + + + defines type of reference system used + MD_ReferenceSystemTypeCode + + + compound statio-parametric coordinate reference system containing an engineering coordinate reference system and a parametric reference system. e.g. [local] x, y, pressure + compoundEngineeringParametric + + + + + compound statio-parametric-temporal coordinate reference system containing an engineering, a parametric, and a temporal coordinate reference system. e.g. [local] x, y, pressure, time + compoundEngineeringParametricTemporal + + + + + compound spatio-temporal coordinate reference system containing an engineering and a temporal coordinate reference system. e.g. [local] x, y, time + compoundEngineeringTemporal + + + + + compound spatial reference system containing a horizontal engineering coordinate reference system and a vertical coordinate reference system. e.g. [local] x, y, height + compoundEngineeringVertical + + + + + compound spatio-temporal coordinate reference system containing an engineering, a vertical, and a temporal coordinate reference system. e.g. [local] x, y, height, time + compoundEngineeringVerticalTemporal + + + + + compound statio-parametric coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a parametric reference system. e.g. latitude, longitude, pressure + compoundGeodeticParametric + + + + + compound statio-parametric-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a parametric and a temporal coordinate reference system. e.g. latitude, longitude, pressure, time + compoundGeodeticParametricTemporal + + + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal coordinate reference system and a temporal reference system. e.g. latitude, longitude, time + compoundGeographic2DTemporal + + + + + compound coordinate reference system in which one constituent coordinate reference system is a horizontal geodetic coordinate reference system and one is a vertical coordinate reference system. e.g. latitude, longitude, [gravity-related] height or depth + compoundGeographic2DVertical + + + + + compound spatio-temporal coordinate reference system containing a 2 dimensional geographic horizontal, a vertical, and a temporal coordinate reference system. e.g. latitude, longitude, height, time + compoundGeographicVerticalTemporal + + + + + compound spatio-temporal coordinate reference system containing a 3 dimensional geographic and a temporal coordinate reference system. e.g. latitude, longitude, ellipsoidal height, time + compoundGeographic3DTemporal + + + + + compound statio-parametric coordinate reference system containing a projected horizontal coordinate reference system and a parametric reference system. e.g. easting, northing, density + compoundProjected2DParametric + + + + + compound statio-parametric-temporal coordinate reference system containing a projected horizontal, a parametric, and a temporal coordinate reference system. e.g. easting, northing, density, time + compoundProjected2DParametricTemporal + + + + + compound spatio-temporal coordinate reference system containing a projected horizontal and a temporal coordinate reference system. e.g. easting, northing, time + compoundProjectedTemporal + + + + + compound spatial reference system containing a horizontal projected coordinate reference system and a vertical coordinate reference system. e.g. easting, northing, [gravity-related] height or depth + compoundProjectedVertical + + + + + compound spatio-temporal coordinate reference system containing a projected horizontal, a vertical, and a temporal coordinate reference system. e.g. easting, northing, height, time + compoundProjectedVerticalTemporal + + + + + coordinate reference system based on an engineering datum (datum describing the relationship of a coordinate system to a local reference). e.g. [local] x,y + engineering + + + + + engineering coordinate reference system in which the base representation of a moving object is specified. e.g. [local] x,y + engineeringDesign + + + + + coordinate reference system based on an image datum (engineering datum which defines the relationship of a coordinate system to an image). e.g. row, column + engineeringImage + + + + + geodetic CRS having a Cartesian 3D coordinate system. e.g. [geocentric] X,Y,Z + geodeticGeocentric + + + + + geodetic CRS having an ellipsoidal 2D coordinate system. e.g. latitude, longitude + geodeticGeographic2D + + + + + geodetic CRS having an ellipsoidal 3D coordinate system. e.g. latitude, longitude, ellipsoidal height + geodeticGeographic3D + + + + + spatial reference in the form of a label or code that identifies a location. e.g. post code + geographicIdentifier + + + + + set of Linear Referencing Methods and the policies, records and procedures for implementing them. reference system that identifies a location by reference to a segment of a linear geographic feature and distance along that segment from a given point. e.g. x km along road + linear + + + + + coordinate reference system based on a parametric datum (datum describing the relationship of a parametric coordinate system to an object). e.g. pressure + parametric + + + + + coordinate reference system derived from a two-dimensional geodetic coordinate reference system by applying a map projection. e.g. easting, northing + projected + + + + + reference system against which time is measured. e.g. time + temporal + + + + + one-dimensional coordinate reference system based on a vertical datum (datum describing the relation of gravity-related heights or depths to the Earth). e.g. [gravity-related] height or depth + vertical + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_RestrictionCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_RestrictionCode.xml new file mode 100644 index 00000000..559dd0f7 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_RestrictionCode.xml @@ -0,0 +1,106 @@ + + limitation(s) placed upon the access or use of the data + MD_RestrictionCode + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor + copyright + + + + + government has granted exclusive right to make, sell, use or license an invention or discovery + patent + + + + + produced or sold information awaiting a patent + patentPending + + + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner or manufacturer + trademark + + + + + formal permission to do something + licence + + + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + intellectualPropertyRights + + + + + withheld from general circulation or disclosure + restricted + + + + + limitation not listed + otherRestrictions + + + + + no constraints exist + unrestricted + + + + + formal permission not required to use the resource + licenceUnrestricted + + + + + formal permission required for a person or an entity to use the resource and that may differ from the person that orders or purchases it + licenceEndUser + + + + + formal permission required for a person or an entity to commercialize or distribute the resource + licenceDistributor + + + + + protects rights of individual or organisations from observation, intrusion, or attention of other s + private + + + + + prescribed by law + statutory + + + + + not available to the public contains information that could be prejudicial to a commercial, industrial, or national interest + confidential + + + + + although unclassified, requires strict controls over its distribution. + sensitiveButUnclassified + + + + + with trust + in-confidence + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ScopeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ScopeCode.xml new file mode 100644 index 00000000..1c4515bb --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_ScopeCode.xml @@ -0,0 +1,160 @@ + + class of information to which the referencing entity applies + MD_ScopeCode + + + information applies to the attribute value + attribute + + + + + information applies to the characteristic of a feature + attributeType + + + + + information applies to the collection hardware class + collectionHardware + + + + + information applies to the collection session + collectionSession + + + + + information applies to the dataset + dataset + + + + + information applies to the series + series + + + + + information applies to non-geographic data + nonGeographicDataset + + + + + information applies to a dimension group + dimensionGroup + + + + + information applies to a feature + feature + + + + + information applies to a feature type + featureType + + + + + information applies to a property type + propertyType + + + + + information applies to a field session + fieldSession + + + + + information applies to a computer program or routine + software + + + + + information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case + service + + + + + information applies to a copy or imitation of an existing or hypothetical object + model + + + + + information applies to a tile, a spatial subset of geographic data + tile + + + + + information applies to metadata + metadata + + + + + information applies to an initiative + initiative + + + + + information applies to a sample + sample + + + + + information applies to a document + document + + + + + information applies to a repository + repository + + + + + information applies to an aggregate resource + aggregate + + + + + metadata describing an ISO 19131 data product specification + product + + + + + information applies to an unstructured set + collection + + + + + information applies to a coverage + coverage + + + + + information resource hosted on a specific set of hardware and accessible over a network + application + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_SpatialRepresentationTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_SpatialRepresentationTypeCode.xml new file mode 100644 index 00000000..e400ce86 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_SpatialRepresentationTypeCode.xml @@ -0,0 +1,40 @@ + + method used to represent geographic information in the resource + MD_SpatialRepresentationTypeCode + + + vector data is used to represent geographic data + vector + + + + + grid data is used to represent geographic data + grid + + + + + textual or tabular data is used to represent geographic data + textTable + + + + + triangulated irregular network + tin + + + + + three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images + stereoModel + + + + + scene from a video recording + video + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_TopicCategoryCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_TopicCategoryCode.xml new file mode 100644 index 00000000..7b098bfb --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_TopicCategoryCode.xml @@ -0,0 +1,131 @@ + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. NOTE: It is understood there are overlaps between general categories and the user is encouraged to select the one most appropriate. + MD_TopicCategoryCode + + + rearing of animals and/or cultivation of plantsExamples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock + farming + + + + + flora and/or fauna in natural environment Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat + biota + + + + + legal land descriptions Examples: political and administrative boundaries + boundaries + + + + + processes and phenomena of the atmosphere Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation + climatologyMeteorologyAtmosphere + + + + + economic activities, conditions and employment Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas + economy + + + + + height above or below a vertical datumExamples: altitude, bathymetry, digital elevation models, slope, derived products + elevation + + + + + environmental resources, protection and conservation Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape + environment + + + + + information pertaining to earth sciences Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth's rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion + geoscientificInformation + + + + + health, health services, human ecology, and safety Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services + health + + + + + base maps Examples: land cover, topographic maps, imagery, unclassified images, annotations + imageryBaseMapsEarthCover + + + + + military bases, structures, activities Examples: barracks, training grounds, military transportation, information collection + intelligenceMilitary + + + + + inland water features, drainage systems and their characteristics Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrographic charts + inlandWaters + + + + + positional information and services Examples: addresses, geodetic networks, control points, postal zones and services, place names + location + + + + + features and characteristics of salt water bodies (excluding inland waters) Examples: tides, tidal waves, coastal information, reefs + oceans + + + + + information used for appropriate actions for future use of the land Examples: land use maps, zoning maps, cadastral surveys, land ownership + planningCadastre + + + + + characteristics of society and cultures Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information + society + + + + + man-made construction Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + structure + + + + + means and aids for conveying persons and/or goods Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways + transportation + + + + + energy, water and waste systems and communications infrastructure and servicesExamples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks + utilitiesCommunication + + + + + region more than 100 km above the surface of the Earth + extraTerrestrial + + + + + + + disaster + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MD_TopologyLevelCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_TopologyLevelCode.xml new file mode 100644 index 00000000..d9ea3589 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MD_TopologyLevelCode.xml @@ -0,0 +1,58 @@ + + degree of complexity of the spatial relationships + MD_TopologyLevelCode + + + geometry objects without any additional structure which describes topology + geometryOnly + + + + + 1-dimensional topological complex - commonly called 'chain-node' topology + topology1D + + + + + 1-dimensional topological complex that is planar. (A planar graph is a graph that can be drawn in a plane in such a way that no two edges intersect except at a vertex.) + planarGraph + + + + + 2-dimensional topological complex that is planar. (A 2-dimensional topological complex is commonly called 'full topology' in a cartographic 2D environment.) + fullPlanarGraph + + + + + 1-dimensional topological complex that is isomorphic to a subset of a surface. (A geometric complex is isomorphic to a topological complex if their elements are in a one-to-one, dimensional-and boundary-preserving correspondence to one another.) + surfaceGraph + + + + + 2-dimensional topological complex that is isomorphic to a subset of a surface + fullSurfaceGraph + + + + + 3-dimensional topological complex. (A topological complex is a collection of topological primitives that are closed under the boundary operations.) + topology3D + + + + + complete coverage of a 3D Euclidean coordinate space + fullTopology3D + + + + + topological complex without any specified geometric realisation + abstract + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_BandDefinition.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_BandDefinition.xml new file mode 100644 index 00000000..f5d746f7 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_BandDefinition.xml @@ -0,0 +1,48 @@ + + Description: Designation of criterion for defining maximum and minimum wavelengths for a spectral band +FGDC: Band_Boundry_Definition +shortName: BndDef + + MI_BandDefinition + + + Description: TBD +FGDC: 3db +Code: 001 + 3db + + + + + Description: width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak +FGDC: half maximum +Code: 002 + halfMaximum + + + + + Description: wavelength difference between the upper and lower bounds at the 50% (-3db) points of the sensor spectral response +FGDC: 50 % +definitionSource: STDI-0002, VERSION 2.1, 16 November 2000 +Code: 003 + fiftyPercent + + + + + Description: TBD +FGDC: 1/e +Code: 004 + oneOverE + + + + + Description: TBD +FGDC: equivalent width +Code: 005 + equivalentWidth + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_ContextCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_ContextCode.xml new file mode 100644 index 00000000..3c0229ea --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_ContextCode.xml @@ -0,0 +1,26 @@ + + Description: context of activation +shortName: CntxtCode + MI_ContextCode + + + Description: Event related to a specific collection +Code: 001 + acquisition + + + + + Description: Event related to general collection +Code: 002 + pass + + + + + Description: Event related to a navigational manoeuvre +Code: 003 + wayPoint + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_GeometryTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_GeometryTypeCode.xml new file mode 100644 index 00000000..aa653fe2 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_GeometryTypeCode.xml @@ -0,0 +1,33 @@ + + Description: geometric description of collection +shortName: GeoTypeCode + MI_GeometryTypeCode + + + Description: collection of a geographic area definded by a polygon (coverage) +Code: 003 + areal + + + + + Description: series of linear collections grouped by way points +Code: 004 + strip + + + + + + + linear + + + + + + + point + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_ObjectiveTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_ObjectiveTypeCode.xml new file mode 100644 index 00000000..13d41a93 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_ObjectiveTypeCode.xml @@ -0,0 +1,27 @@ + + Description: temporal persistence of collection objective +shortName: ObjTypeCode + + MI_ObjectiveTypeCode + + + Description: single instance of collection +Code: 001 + instantaneousCollection + + + + + Description: multiple instances of collection +Code: 002 + persistentView + + + + + Description: comparative collection +Code: 003 + survey + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_OperationTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_OperationTypeCode.xml new file mode 100644 index 00000000..ff7ced95 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_OperationTypeCode.xml @@ -0,0 +1,26 @@ + + + + MI_OperationTypeCode + + + + + real + + + + + + + simulated + + + + + + + synthetic + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_PolarisationOrientationCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_PolarisationOrientationCode.xml new file mode 100644 index 00000000..a05d64d3 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_PolarisationOrientationCode.xml @@ -0,0 +1,48 @@ + + Description: polarisation of the antenna relative to the waveform +shortName: PolarOrienCode + + MI_PolarisationOrientationCode + + + Description: TBD +Code: 001 + horizontal + + + + + Description: TBD +Code: 002 + vertical + + + + + Description: TBD +Code: 003 + leftCircular + + + + + Description: TBD +Code: 004 + rightCircular + + + + + Description: TBD +Code: 005 + theta + + + + + Description: TBD +Code: 006 + phi + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_PriorityCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_PriorityCode.xml new file mode 100644 index 00000000..67333936 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_PriorityCode.xml @@ -0,0 +1,34 @@ + + Description: ordered list of priorities +shortName: PriCode + + MI_PriorityCode + + + Description: of decisive importance +Code: 001 + critical + + + + + Description: requires resources to be made available +Code: 002 + highImportance + + + + + Description: normal operation priority +Code: 003 + mediumImportance + + + + + Description: to be completed when resources are available +Code: 004 + lowImportance + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_SensorTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_SensorTypeCode.xml new file mode 100644 index 00000000..b26b07e7 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_SensorTypeCode.xml @@ -0,0 +1,11 @@ + + <UsedBy> +<NameSpace>ISO 19115-2 Metadata - Imagery</NameSpace> +<Class>MI_Instrument</Class> +<Package>Acquisition information - Imagery</Package> +<Attribute>type</Attribute> +<Type>MI_SensorTypeCode</Type> +<UsedBy> + + MI_SensorTypeCode + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_SequenceCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_SequenceCode.xml new file mode 100644 index 00000000..7c4f3a96 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_SequenceCode.xml @@ -0,0 +1,27 @@ + + Description: temporal relation of activation +shortName: SeqCode + + MI_SequenceCode + + + Description: Beginning of a collection +Code: 001 + start + + + + + Description: End of a collection +Code: 002 + end + + + + + Description: Collection without a significant duration +Code: 003 + instantaneous + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_TransferFunctionTypeCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_TransferFunctionTypeCode.xml new file mode 100644 index 00000000..8f130b02 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_TransferFunctionTypeCode.xml @@ -0,0 +1,27 @@ + + Description: transform function to be used when scaling a physical value for a given element +shortName: XfrFuncTypeCode + + MI_TransferFunctionTypeCode + + + Description: TBD +Code: 001 + linear + + + + + Description: TBD +Code: 002 + logarithmic + + + + + Description: TBD +Code: 003 + exponential + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/MI_TriggerCode.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_TriggerCode.xml new file mode 100644 index 00000000..fbe5e564 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/MI_TriggerCode.xml @@ -0,0 +1,27 @@ + + Description: mechanism of activation +shortName: TriggerCode + + MI_TriggerCode + + + Description: Event due to external stimuli +Code: 001 + automatic + + + + + Description: Event manually instigated +Code: 002 + manual + + + + + Description: Event instigated by planned stimuli +Code: 003 + preProgrammed + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/RE_AmendmentType.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_AmendmentType.xml new file mode 100644 index 00000000..1f49c69b --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_AmendmentType.xml @@ -0,0 +1,23 @@ + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_AmendmentInformation</Class> +<Attribute>amendmentType</Attribute> +<Type>RE_AmendmentType</Type> +<UsedBy> + RE_AmendmentType + + + + + supersession + + + + + + + retirement + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/RE_DecisionStatus.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_DecisionStatus.xml new file mode 100644 index 00000000..42448d45 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_DecisionStatus.xml @@ -0,0 +1,30 @@ + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_ProposalManagementInformation</Class> +<Attribute>status</Attribute> +<Type>RE_DecisionStatus</Type> +<UsedBy> + RE_DecisionStatus + + + + + pending + + + + + + + tentative + + + + + + + final + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/RE_Disposition.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_Disposition.xml new file mode 100644 index 00000000..92c3eeb1 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_Disposition.xml @@ -0,0 +1,30 @@ + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_ProposalManagementInformation</Class> +<Attribute>disposition[0..1]</Attribute> +<Type>RE_Disposition</Type> +<UsedBy> + RE_Disposition + + + + + withdrawn + + + + + + + accepted + + + + + + + notAccepted + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/RE_ItemStatus.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_ItemStatus.xml new file mode 100644 index 00000000..5f359db6 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/RE_ItemStatus.xml @@ -0,0 +1,37 @@ + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_RegisterItem</Class> +<Attribute>status</Attribute> +<Type>RE_ItemStatus</Type> +<UsedBy> + RE_ItemStatus + + + + + notValid + + + + + + + valid + + + + + + + superseded + + + + + + + retired + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/SC_DerivedCRSType.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/SC_DerivedCRSType.xml new file mode 100644 index 00000000..6bcf8329 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/SC_DerivedCRSType.xml @@ -0,0 +1,31 @@ + + The type of the derived CRS, according to the classification of principal CRS types. + + SC_DerivedCRSType + + + A coordinate reference system based on a geodetic datum; provides an accurate representation of the geometry of geographic features for a large portion of the earth's surface. + geodetic + + + + + A coordinate reference system used for recording of heights or depths. Vertical CRSs make use of the direction of gravity to define the concept of height or depth, but the relationship with gravity may not be straightforward. + vertical + + + + + A contextually local coordinate reference system; which can be divided into two broad categories: +- earth-fixed systems applied to engineering activities on or near the surface of the earth; +- CRSs on moving platforms such as road vehicles, vessels, aircraft or spacecraft. + engineering + + + + + An engineering coordinate reference system applied to locations in images. + image + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/SV_CouplingType.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/SV_CouplingType.xml new file mode 100644 index 00000000..a0705d51 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/SV_CouplingType.xml @@ -0,0 +1,23 @@ + + + type of coupling between service and associated data (if exists) + SV_CouplingType + + + service instance is loosely coupled with a data instance, i.e. no MD_DataIdentification class has to be described + loose + + + + + service instance is mixed coupled with a data instance, i.e. MD_DataIdentification describes the associated data instance and additionally the service instance might work with other external data instances + mixed + + + + + service instance is tightly coupled with a data instance, i.e. MD_DataIdentification class MUST be described + tight + + + diff --git a/inst/extdata/schemas/19115/resources/Codelists/gml/SV_ParameterDirection.xml b/inst/extdata/schemas/19115/resources/Codelists/gml/SV_ParameterDirection.xml new file mode 100644 index 00000000..a4aa7afe --- /dev/null +++ b/inst/extdata/schemas/19115/resources/Codelists/gml/SV_ParameterDirection.xml @@ -0,0 +1,22 @@ + + class of information to which the referencing entity applies + SV_ParameterDirection + + + the parameter is an input parameter to the service instance + in + + + + + the parameter is an output parameter to the service instance + out + + + + + the parameter is both an input and output parameter to the service instance + in/out + + + diff --git a/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/ISONamespaceInformation.xml b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/ISONamespaceInformation.xml new file mode 100644 index 00000000..48a05aa8 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/ISONamespaceInformation.xml @@ -0,0 +1,840 @@ + + + + + CATalogue + catalogue + Elements for codelist catalogues, and example catalogues. + Catalog, Code List Item, uom Item, CRS Item + cat + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + 7.4.4 + + + Citation and responsible party information + citation-metadata + Utility elements for citation, identification, and web linkage of resources. + <<Leaf>> Citation + cit + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.6.2 + + + Citation and responsible party information + citation-metadata + Utility elements for citation, identification, and web linkage of resources. + <<Leaf>> Citation + cit + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals AMENDMENT 1 + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.6.2 + + + Data Quality Common Classes + data-quality-common + abstract classes shared by multiple namespaces and is required in order to enable modularization of the XML implementation. + Data Quality + dqc + 1.0 + http://standards.iso.org/iso + ISO/TS 19115-3, Clause 8 + 19157 + Geographic Information - Data Quality + 19157-2 + Geographic Metadata — Part 2: XML schema implementation + 6.4 + + + Data Quality Measures + quality-measures + Elements for describing data quality measures. + Data Quality + dqm + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19157 + Geographic Information - Data Quality + 19157-2 + Geographic information — Data Quality — Part 2: XML schema implementation + 6.5 + + + Feature Catalog Common + feature-catalog-common + abstract classes shared by multiple namespaces and is required in order to enable modularization of the XML implementation. + + fcc + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19110 + Geographic information -- Methodology for feature cataloguing + 19110 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + Geographic COmmon + geographic-common + Elements for describing basic types from ISO/TS 19103 and conceptual elements from ISO 19118 required in XML implementations of ISO metadata standards. + None + gco + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + + Geospatial Common eXtension + extended-types + Elements for xml implementation, from ISO 19139 updated for compatibility with 19115-3. + <<Leaf>> Extended Types + gcx + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 7.2 + + + Geospatial EXtent + geospatial-extent + Elements for specifying geospatial properties of a resource, including extent and spatial reference systems. + <<Leaf>> Extent + gex + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.6.1 + + + General Feature Catalog + feature-catalog + ISO 19110:2005 defines the methodology for cataloguing feature types and specifies how the classification of feature types is organized into a feature catalogue and presented to the users of a set of geographic data. ISO 19110:2005 is applicable to creating catalogues of feature types in previously uncatalogued domains and to revising existing feature catalogues to comply with standard practice. ISO 19110:2005 applies to the cataloguing of feature types that are represented in digital + form. Its principles can be extended to the cataloguing of other forms of geographic data. + + gfc + 1.1 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19110 + Geographic information -- Methodology for feature cataloguing + 19110 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + Geography Markup Language + geography-markup + Elements for describing geographic features required in XML implementations of ISO metadata standards. + None + gml + 3.2 + http://www.opengis.net/gml/3.2 + ISO/TS 19136 + 19136 + Geographic information -- Geography Markup Language (GML) + 19118 + ISO 19118:2011 Geographic information -- Encoding + + + Geographic Markup Wrappers + geographic-wrappers + Wrappers for gml dependencies. + None + gmw + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + + Geographic Spatial Referencing + geographic-spatial-referencing + Elements for describing basic types from ISO/TS 19111 required in XML implementations of ISO metadata standards. + None + gsr + 1.0 + http://www.isotc211.org/2005/gsr + ISO/TS 19139:2007, Clause 9 and implementation approach from ISO/TS19115-3, Clause 8 + 19139 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 19139-2005 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 9.6 + + + Geographic Spatial Schema + geographic-spatial + Elements for describing basic types from ISO/TS 19107 required in XML implementations of ISO metadata standards. + None + gss + 1.0 + http://www.isotc211.org/2005/gss + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19139 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 19139-2005 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 9.4 + + + Geographic Temporal Schema + geographic-temporal + Elements for describing basic types from ISO/TS 19108 required in XML implementations of ISO metadata standards. + None + gts + 1.0 + http://www.isotc211.org/2005/gts + ISO/TS 19139:2007, Clause 9 and implementation approach from ISO/TS19115-3, Clause 8 + 19139 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 19139-2005 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 9.5 + + + Language localization + language-localization + Elements for cultural and linguistic adapatiblity. + <<Leaf>> Language + lan + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + 7.3 + + + Metadata for Acquisition + Information related to acquisition platforms, instruments, operations and other details. + Acquisition Details + mac + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-2 + Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data + 19115-3 + A.2.5 + + + Metadata for Acquisition + Information related to acquisition platforms, instruments, operations and other details. + Acquisition Details + mac + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-2 + Geographic Information - Metadata - Part 2: Extensions for acquisition and processing + 19115-3 + 6.3.2 + + + + Metadata for Application Schema + application-schema + Elements for referencing Application Schema. + <<Leaf>> Application Schema + mas + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.13 + + + Metadata Common Classes + common-classes + abstract classes shared by multiple namespaces and is required in order to enable modularization of the XML implementation. + <<Leaf>> + mcc + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.6.4 + + + Metadata for Constraints + constraints + Elements for describing resource and metadata constraints. + <<Leaf>> Constraints + mco + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.4 + + + Metadata for Data and Services with Geospatial Common Extensions + metadata-extended-types-instance + This namespace contains all classes needed for a complete metadata record for any resource and enables the use of FileName, MimeType, and Anchor elements (gex). + Implementation Model Only + md1 + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + A.2.3.4 + + + Metadata for Data and Services with Geospatial Common Extensions + metadata-extended-types-instance + This namespace contains all classes needed for a complete metadata record for any resource and enables the use of FileName, MimeType, and Anchor elements (gex). + Implementation Model Only + md1 + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + A.2.3.4 + + + Metadata with Extended Schema + extended-metadata-instance + This namespace contains all classes needed for a complete metadata record for any resource and enables the description of schema extensions (MD_MetadataExtensionInformation) elements (mex). + Implementation Model Only + md2 + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + A.2.3.5 + + + Metadata with Extended Schema + extended-metadata-instance + This namespace contains all classes needed for a complete metadata record for any resource and enables the description of schema extensions (MD_MetadataExtensionInformation) elements (mex). + Implementation Model Only + md2 + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + A.2.3.5 + + + MetaData Application + metadata-application + Elements to represent resources that may be aggregated and described by metadata records (DS_*) + <<Leaf>> Metadata Application + mda + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.2 + + + MetaData Application + metadata-application + Elements to represent resources that may be aggregated and described by metadata records (DS_*) + <<Leaf>> Metadata Application + mda + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.2 + + + Metadata Base + metadata-base + Mandatory elements for describing resources that are not services. This namespace is used for metadata records that include only mandatory elements. + + mdb + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.2 + + + Metadata Base + metadata-base + Mandatory elements for describing resources that are not services. This namespace is used for metadata records that include only mandatory elements. + + mdb + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.2 + + + Metadata for Data Quality + data-quality + Elements for describing the quality of resources. + Data Quality + mdq + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19157 + Geographic Information - Data Quality + 19157-2 + Geographic information — Data Quality — Part 2: XML schema implementation + 6.4 + + + Metadata for Data and Services + metadata-data-or-services + This namespace contains all classes needed for a complete metadata record for any resource. It is used for metadata records that do not include geospatial common extensions (gex), extenbsions to the schema (mex), data series (DS_*) elements (mda) or metadata for data transfer (mdt). + <<Leaf>> + mds + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.2 + + + Metadata for Data and Services + metadata-data-or-services + This namespace contains all classes needed for a complete metadata record for any resource. It is used for metadata records that do not include geospatial common extensions (gex), extenbsions to the schema (mex), data series (DS_*) elements (mda) or metadata for data transfer (mdt). + <<Leaf>> + mds + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.2 + + + Metadata for Data Transfer + data-transfer + This namespace contains all classes needed for a complete metadata record for any resource and enables the description of data transfer (MX_*) elements. This is the most inclusive of the ISO 19115-3 namespaces so it should be used in situations where all 19115-3 capabilities are required. + <<Leaf>> Metadata-based Data Transfers + mdt + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 7.4.2, 7.4.3 + + + Metadata for Data Transfer + data-transfer + This namespace contains all classes needed for a complete metadata record for any resource and enables the description of data transfer (MX_*) elements. This is the most inclusive of the ISO 19115-3 namespaces so it should be used in situations where all 19115-3 capabilities are required. + <<Leaf>> Metadata-based Data Transfers + mdt + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 7.4.2, 7.4.3 + + + Metadata with Schema Extensions + metadata-extension + Elements describing extensions to metadata standards. + <<Leaf>> Metadata Extension + mex + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.12 + + + Metadata for Imagery Content + Information related to content of imagery and gridded data. + Content Information + mic + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-2 + Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data + 19115-4 + A.2.4 + + + Metadata for Imagery Linege + Information related to lineage and processing of imagery and gridded data. + Content Information + mil + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-2 + Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data + 19115-4 + A.2.2.2 + + + Metadata for Imagery Spatial Representation + Information related to spatial representations of imagery and gridded data. + SpatialRepresentation Information + mis + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-2 + Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data + 19115-4 + A.2.3 + + + Metadata for Maintenance Information + maintenance-information + Elements describing resource and metadata maintenance. + <<Leaf>> Maintenance + mmi + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.6 + + + Metadata for Portrayal Catalog + portrayal-catalog + Elements for referencing portrayal catalogs. + <<Leaf>> Portrayal Catalog + mpc + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.10 + + + Metadata for Resource Content + resource-content + Elements for describing resource structure and content. + <<Leaf>> Resource Content + mrc + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.9 + + + Metadata for Resource Content + resource-content + Elements for describing resource structure and content. + <<Leaf>> Resource Content + mrc + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals AMENDMENT 1 + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.9 + + + Metadata for Resource Distribution + resource-distribution + Elements specifying how a resource is accessed. + <<Leaf>> Distribution Information + mrd + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.11 + + + Metadata for Resource Identification + resource-identification + Elements for identifying resources. + <<Leaf>> Identification Information + mri + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.3 + + + Metadata for Resource Lineage + lineage + Elements for describing resource lineage. + <<Leaf>> + mrl + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.5 + + + Metadata for Resource Lineage + lineage + Elements for describing resource lineage. + <<Leaf>> + mrl + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 2: Extensions for acquisition and processing + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.3.3 + + + Metadata for Reference System + reference-system + Elements for describing Reference Systems. + <<Leaf>> Reference System + mrs + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.8 + + + Metadata for Spatial Representation + spatial-representation + Elements for describing spatial representations of resources. + <<Leaf>> Spatial Representation + msr + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.7 + + + Metadata for Spatial Representation + spatial-representation + Elements for describing spatial representations of resources. + <<Leaf>> Spatial Representation + msr + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals AMENDMENT 1 + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.7 + + + Procedures for Registration + registration-common + abstract classes shared by multiple namespaces and is required in order to enable modularization of the XML implementation. + + pre + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19135 + Geographic information -- Procedures for item registration + 19135-2 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + Referencing By Coordinates + reference-coordinate + ISO 19111:2007 defines the conceptual schema for the description of spatial referencing by coordinates, optionally extended to spatio-temporal referencing. It describes the minimum data required to define one-, two- and three-dimensional spatial coordinate reference systems with an extension to merged spatial-temporal reference systems. It allows additional descriptive information to be provided. It also describes the information required to change coordinates from one coordinate + reference system to another. + + rbc + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19111 + Geographic information -- Spatial referencing by coordinates + 19111 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + Referencing By Coordinates Common + coordinate-system-common + abstract classes shared by multiple namespaces and is required in order to enable modularization of the XML implementation. + + rce + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19111 + Geographic information -- Spatial referencing by coordinates + 19111 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + Registration Common + registration-common + abstract classes shared by multiple namespaces and is required in order to enable modularization of the XML implementation. + + reg + 1.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19135 + Geographic information -- Procedures for item registration + 19135-2 + Geographic information — Metadata — XML schema implementation for fundamental concepts + + + Metadata for Services + services + Elements for describing services. + <<Leaf>> Services + srv + 2.0 + http://standards.iso.org/iso + ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause 8 + 19115-1 + Geographic Information - Metadata - Part 1: Fundamentals + 19115-3 + Geographic information — Metadata — XML schema implementation for fundamental concepts + 6.5.14 + + + XML Linking Language (XLink) Version 1.0. W3C Recommendation + xlink + Elements for describing World Wide WEb links required in XML implementations of ISO metadata standards. + None + xlink + 1.0 + http://www.w3.org/1999/xlink + + 19139 + ISO/TS 19139 Geographic information - Metadata - XML schema implementation + 19139-2005 + + + diff --git a/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/NamespaceUpdates.md b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/NamespaceUpdates.md new file mode 100644 index 00000000..662068dd --- /dev/null +++ b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/NamespaceUpdates.md @@ -0,0 +1,100 @@ +# Namespace Updates - 2018-03-06 + +## Namespace Table +Five base namespaces have been updated to new versions: ./19115/-3/msr/2.0, ./19115/-3/mrc/2.0, ./19115/-3/mrl/2.0, ./19115/-3/mac/2.0, ./19115/-3/cit/2.0 + +### Update the XML file that contains information about the namespaces (__ISONamespaceInformation.xml__): +1. Version 2 of cit, mac, md1, md2, mda, mdb, mds, mdt, mrc, mrl, msr added + + +### Update the makeNamespaceTable.xsl that produces the HTML table of namespace information. +1. Include the version numbers in the imported namespaces + +## New Versions of Wrapper Namespaces +There are several namespaces that serve as wrappers for groups of namespaces that are used together. These need to be updated to import Version 2 of the appropriate namespaces. + +1. Metadata Base (mdb) imports cit. +2. Metadata for Data and Services (mds) imports mac, mrc, mrl, msr, mdb. In this case metadataDataServices.xsd only imports mds.xsd so no changes required there. +3. Metadata for Data and Services with Geospatial Common Extensions (md1) imports cit, mds. +4. Metadata with Extended Services (md2) imports cit, md1. +5. MetaData Application (mda) imports md2, mdb. +6. Metadata for Data Transfer (mdt) imports mda. + +### Version 2.0 Directories +The namespaces with the new versions are: + +ISOTC211-XML/XML/standards.iso.org/iso +find . -type d -name 2.0 -print +./19115/-3/cit/2.0 +./19115/-3/mac/2.0 +./19115/-3/md1/2.0 +./19115/-3/md2/2.0 +./19115/-3/mda/2.0 +./19115/-3/mdb/2.0 +./19115/-3/mds/2.0 +./19115/-3/mdt/2.0 +./19115/-3/mrc/2.0 +./19115/-3/mrl/2.0 +./19115/-3/msr/2.0 +./19115/-3/srv/2.0 + +## Creating the Namespace Summary +The namespace summary is an html file (standards.iso.org/iso/19115/-3/resources/namespaceSummary.html. It contains information from the standards.iso.org/iso/19115/-3/resources/namespaceInformationAndTools/ISONamespaceInformation.xml file converted to html using standards.iso.org/iso/19115/-3/resources/namespaceInformationAndTools/makdNamespaceTable.xsl. This xsl has several input parameters: + +__Parameter schemaRootDirectory__: +This is the root of the schema directories. +Example: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso + +__Parameter standard__: +This is a space delimited list of the schemaStandardNumbers to be included in the output. +Namespaces whose schemaStandardNumber is in this list will be included in the output. +Example: 19115-3 19157-2 19110 19111 19135 + +__Parameter workingVersionDate__: +This is the date associated with a working version of the schema. It is in the format /YYYY-MM-DD. +NOTE THE SLASH INCLUDED BEFORE THE DATE +Example: /2014-12-25 + +The output of this transform is written into standards.iso.org/iso/19115/-3/resources//namespaceSummary.html which is the summary of all namespaces. + +## Codelist files +The transform ISOTC211-XML/XML/standards.iso.org/iso/19115/resources/transforms/CT_CodelistCatalougue2HTML.xsl is used to create html versions of the codelist.xml files in each nemespace directory. This should be done before the index.html files are created so that the codelist.xml and codelist.html files will be included in the index files. + +## Sample XML files +Sample XML files are created for each namespace inorder to illustrate new capabilities and correct namespaces and schema locations. This should be done before the index.html files are created so that the sample files will be included in the index files. + +## index.html files +Run the xsl ISOTC211-XML/XML/standards.iso.org/iso/19115/resources/namespaceInformationAndTools/writeHTMLFiles.xsl on ISONamespaceInformation.xml to create index.html files in all of the namespace directories. The names of the files that are written are in writeHTMLFilesLog.html. + +## Zip files +The script XML/MaintenanceTools/makeAllZipFiles.sh creates all of the zip files in the repository. The names of the files are written into zipFileList.txt. This script should be run last so that all of the zip files are up-to-date. + +## Instance Document +The current instance document header is: + +``` + +``` + diff --git a/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/makeNamespaceTable.xsl b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/makeNamespaceTable.xsl new file mode 100644 index 00000000..f63783e8 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/makeNamespaceTable.xsl @@ -0,0 +1,220 @@ + + + + + + Title: Write Standard ISO Namespace Table + + Version:1.0 + Created on:February 27, 2013 + Revised on:August 4, 2014 + Revised on:February 28, 2018 + Revised on:March 10, 2018 - added header information + Author:rehabermann@me.com + This stylesheets reads ISOSchema.xml and uses writes standard namespace description files. + It assumes a schema directory hierarchy like + schemaRootDirectory/standard/version/namespace/version/workingVersionDate/namespace.xsd + The output is written into ../namespaceSummary.html (this location is specified externally in the + transform command or Oxygen Project file) + + + + + + + + + + + + + + + + + ISO Namespaces + + +

ISO TC211 Namespace Summary

+

This table summarizes the namespaces used in the XML implementation of ISO TC211 Standards for Geospatial Metadata. + The current official versions of these namespaces are located at standards.iso.org. Working versions + and information are at the ISO TC211 Git Repository.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Standard PrefixTitleVersionScopeStandard, ParagraphRequirements NameNamespace URIThumbnailUML PackageXML SchemaXML Schema IncludedImported Namespaces
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

+ + + +

+ + +
+
diff --git a/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/metadataCapabilitiesAndNamespaces.png b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/metadataCapabilitiesAndNamespaces.png new file mode 100644 index 00000000..057206ad Binary files /dev/null and b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/metadataCapabilitiesAndNamespaces.png differ diff --git a/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/sortISONamespaceInformation.xsl b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/sortISONamespaceInformation.xsl new file mode 100644 index 00000000..450bbf15 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/sortISONamespaceInformation.xsl @@ -0,0 +1,17 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/writeHTMLFiles.xsl b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/writeHTMLFiles.xsl new file mode 100644 index 00000000..4eacb05d --- /dev/null +++ b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/writeHTMLFiles.xsl @@ -0,0 +1,217 @@ + + + + + + Title: Write Standard ISO Namespace Description Files (namespace/index.html) + + Version:0.1 + Created on:February 27, 2013 + Modified on: January 4, 2014, 2014 + Author:thabermann@hdfgroup.org + This stylesheets reads ISONamespaceInformation.xml and writes standard namespace description files into a filesystem with the ISO namespace structure. + It assumes a schema directory hierarchy like schemaRootDirectory/standard/version/namespace/version/namespace.xsd + and writes index.html files into the namespace directories (schemaRootDirectory/standard/version/namespace/version/index.html) + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + <xsl:value-of select="concat(title,' (',$upperCasePrefix,') Version: ',version)"/> + + + +

+ +

+ + + +

Description

+

is an XML Schema implementation derived from ISO . It includes + The XML schema was encoded using the rules described in .

+ +

Sample XML files for

+ + + + + + + + + + +
+ +

CodeLists for

+ + + + + + + + +
+

XML Namespace for

+

The namespace URI for is .

+

XML Schema for

+

+ + + is the XML Schema document to be referenced by XML documents containing XML elements in the namespace or by XML Schema documents importing the namespace. This XML schema includes (indirectly) all the implemented concepts of the namespace, but it + does not contain the declaration of any types.

+

+ NOTE: The XML Schema for are available + here. A zip archive including all the XML Schema Implementations defined in ISO/TS 19115-3 and related standards is also + available. +

+ + + + + + +

Related XML Schema for

+ + +

+ + + implements the UML conceptual schema defined in . It was created using the encoding rules defined in ISO 19118, ISO + 19139, and the implementation approach described in ISO 19115-3 and contains the following classes (codeLists are bold): + + , + and + + + + + + + + +

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Related XML Namespaces for

The namespace imports these other namespaces: + + + + + + + + + + + + + + +
NameStandard PrefixNamespace LocationSchema Location
+ + +
+
+ +

No Related XML Namespaces for

+
+
+ +

Schematron Validation Rules for

Schematron rules for validating instance documents of the namespace are in . Other schematron rule sets that are + required for a complete validation are: + + , + and + +
+

Working Versions

When revisions to these schema become necessary, they will be managed in the ISO TC211 Git Repository.
+

+ + +
+
+
+
diff --git a/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/writeHTMLFilesLog.html b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/writeHTMLFilesLog.html new file mode 100644 index 00000000..6cd74001 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/namespaceInformationAndTools/writeHTMLFilesLog.html @@ -0,0 +1,44 @@ +Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/cat/1.0/cat.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/cat/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/cit/1.0/cit.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/cit/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/cit/2.0/cit.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/cit/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19157/-2/dqc/1.0/dqc.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19157/-2/dqc/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19157/-2/dqm/1.0/dqm.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19157/-2/dqm/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19110/fcc/1.0/fcc.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19110/fcc/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gco/1.0/gco.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gco/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gcx/1.0/gcx.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gcx/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gex/1.0/gex.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gex/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19110/gfc/1.1/gfc.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19110/gfc/1.1/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gmw/1.0/gmw.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/gmw/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/lan/1.0/lan.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/lan/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mac/1.0/mac.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mac/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mac/2.0/mac.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mac/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mas/1.0/mas.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mas/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mcc/1.0/mcc.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mcc/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mco/1.0/mco.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mco/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md1/1.0/md1.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md1/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md1/2.0/md1.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md1/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md2/1.0/md2.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md2/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md2/2.0/md2.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/md2/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mda/1.0/mda.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mda/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mda/2.0/mda.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mda/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdb/1.0/mdb.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdb/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdb/2.0/mdb.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdb/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19157/-2/mdq/1.0/mdq.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19157/-2/mdq/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mds/1.0/mds.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mds/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mds/2.0/mds.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mds/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdt/1.0/mdt.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdt/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdt/2.0/mdt.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mdt/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mex/1.0/mex.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mex/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mmi/1.0/mmi.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mmi/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mpc/1.0/mpc.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mpc/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrc/1.0/mrc.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrc/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrc/2.0/mrc.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrc/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrd/1.0/mrd.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrd/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mri/1.0/mri.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mri/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrl/1.0/mrl.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrl/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrl/2.0/mrl.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrl/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrs/1.0/mrs.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/mrs/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/msr/1.0/msr.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/msr/1.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/msr/2.0/msr.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/msr/2.0/index.html
Schema: /Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/srv/2.0/srv.xsd, +Output:/Users/tedhabermann/GitRepositories/ISOTC211-XML/XML/standards.iso.org/iso/19115/-3/srv/2.0/index.html
\ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/namespaceSummary.html b/inst/extdata/schemas/19115/resources/namespaceSummary.html new file mode 100644 index 00000000..c1fcaf3d --- /dev/null +++ b/inst/extdata/schemas/19115/resources/namespaceSummary.html @@ -0,0 +1,777 @@ + + + + ISO Namespaces + + +

ISO TC211 Namespace Summary

+

This table summarizes the namespaces used in the XML implementation of ISO TC211 Standards for Geospatial Metadata. + The current official versions of these namespaces are located at standards.iso.org. Working versions + and information are at the ISO TC211 Git Repository. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Standard PrefixTitleVersionScopeStandard, ParagraphRequirements NameNamespace URIThumbnailUML PackageXML SchemaXML Schema IncludedImported Namespaces
catCATalogue1.0Elements for codelist catalogues, and example catalogues.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 7.4.4cataloguehttp://standards.iso.org/iso/19115/-3/cat/1.0Catalog, Code List Item, uom Item, CRS Itemcat.xsdcatalogues.xsd codelistItem.xsd crsItem.xsd uomItem.xsd + lan.1.0, gco.1.0
citCitation and responsible party information1.0Utility elements for citation, identification, and web linkage of resources.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.6.2citation-metadatahttp://standards.iso.org/iso/19115/-3/cit/1.0<<Leaf>> Citationcit.xsdcitation.xsd + gco.1.0, mcc.1.0
citCitation and responsible party information2.0Utility elements for citation, identification, and web linkage of resources.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals AMENDMENT 1, 6.6.2citation-metadatahttp://standards.iso.org/iso/19115/-3/cit/2.0<<Leaf>> Citationcit.xsdcitation.xsd + gco.1.0, mcc.1.0
dqcData Quality Common Classes1.0abstract classes shared by multiple namespaces and is required in order to enable + modularization of the XML implementation. + ISO 19157, Geographic Information - Data Quality, 6.4data-quality-commonhttp://standards.iso.org/iso/19157/-2/dqc/1.0Data Qualitydqc.xsdabstract.xsd + gco.1.0
dqmData Quality Measures1.0Elements for describing data quality measures.ISO 19157, Geographic Information - Data Quality, 6.5quality-measureshttp://standards.iso.org/iso/19157/-2/dqm/1.0Data Qualitydqm.xsdqualityMeasures.xsd + cat.1.0, mcc.1.0, pre.1.0, gco.1.0
fccFeature Catalog Common1.0abstract classes shared by multiple namespaces and is required in order to enable + modularization of the XML implementation. + ISO 19110, Geographic information -- Methodology for feature cataloguingfeature-catalog-commonhttp://standards.iso.org/iso/19110/fcc/1.0fcc.xsdabstract.xsd + gco.1.0, cat.1.0
gcoGeographic COmmon1.0Elements for describing basic types from ISO/TS 19103 and conceptual elements from + ISO 19118 required in XML implementations of ISO metadata standards. + ISO 19115-1, ISO/TS 19139 Geographic information - Metadata - XML schema implementationgeographic-commonhttp://standards.iso.org/iso/19115/-3/gco/1.0Nonegco.xsdbaseTypes2014.xsd + xlink.1999
gcxGeospatial Common eXtension1.0Elements for xml implementation, from ISO 19139 updated for compatibility with 19115-3.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 7.2extended-typeshttp://standards.iso.org/iso/19115/-3/gcx/1.0<<Leaf>> Extended Typesgcx.xsdextendedTypes.xsd + gco.1.0, xlink.1999, mcc.1.0
gexGeospatial EXtent1.0Elements for specifying geospatial properties of a resource, including extent and + spatial reference systems. + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.6.1geospatial-extenthttp://standards.iso.org/iso/19115/-3/gex/1.0<<Leaf>> Extentgex.xsdextent.xsd + mcc.1.0, gco.1.0, gmw.1.0
gfcGeneral Feature Catalog1.1ISO 19110:2005 defines the methodology for cataloguing feature types and specifies + how the classification of feature types is organized into a feature catalogue and + presented to the users of a set of geographic data. ISO 19110:2005 is applicable to + creating catalogues of feature types in previously uncatalogued domains and to revising + existing feature catalogues to comply with standard practice. ISO 19110:2005 applies + to the cataloguing of feature types that are represented in digital + form. Its principles can be extended to the cataloguing of other forms of geographic + data. + ISO 19110, Geographic information -- Methodology for feature cataloguingfeature-cataloghttp://standards.iso.org/iso/19110/gfc/1.1gfc.xsdfeatureCatalogue.xsd + cit.1.0, fcc.1.0, lan.1.0, mcc.1.0, gco.1.0
gmwGeographic Markup Wrappers1.0Wrappers for gml dependencies.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentalsgeographic-wrappershttp://standards.iso.org/iso/19115/-3/gmw/1.0Nonegmw.xsdgmlWrapperTypes2014.xsd + gml, xlink.1999, baseTypes2014.1.0
lanLanguage localization1.0Elements for cultural and linguistic adapatiblity.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 7.3language-localizationhttp://standards.iso.org/iso/19115/-3/lan/1.0<<Leaf>> Languagelan.xsdlanguage.xsd + gco.1.0, cit.1.0
macMetadata for Acquisition1.0Information related to acquisition platforms, instruments, operations and other details.ISO 19115-2, Geographic Information - Metadata - Part 2: Extensions for imagery and + gridded data, A.2.5 + http://standards.iso.org/iso/19115/-3/mac/1.0Acquisition Detailsmac.xsdacquisitionInformationImagery.xsd + gco.1.0, gmw.1.0, mcc.1.0
macMetadata for Acquisition2.0Information related to acquisition platforms, instruments, operations and other details.ISO 19115-2, Geographic Information - Metadata - Part 2: Extensions for acquisition + and processing, 6.3.2 + http://standards.iso.org/iso/19115/-3/mac/2.0Acquisition Detailsmac.xsdacquisitionInformationImagery.xsd event.xsd + gco.1.0, gmw.1.0, mcc.1.0, lan.1.0
masMetadata for Application Schema1.0Elements for referencing Application Schema.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.13application-schemahttp://standards.iso.org/iso/19115/-3/mas/1.0<<Leaf>> Application Schemamas.xsdapplicationSchema.xsd + gco.1.0, mcc.1.0, cit.1.0
mccMetadata Common Classes1.0abstract classes shared by multiple namespaces and is required in order to enable + modularization of the XML implementation. + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.6.4common-classeshttp://standards.iso.org/iso/19115/-3/mcc/1.0<<Leaf>>mcc.xsdAbstractCommonClasses.xsd commonClasses.xsd + gco.1.0
mcoMetadata for Constraints1.0Elements for describing resource and metadata constraints.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.4constraintshttp://standards.iso.org/iso/19115/-3/mco/1.0<<Leaf>> Constraintsmco.xsdconstraints.xsd + gco.1.0, mcc.1.0
md1Metadata for Data and Services with Geospatial Common Extensions1.0This namespace contains all classes needed for a complete metadata record for any + resource and enables the use of FileName, MimeType, and Anchor elements (gex). + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, A.2.3.4metadata-extended-types-instancehttp://standards.iso.org/iso/19115/-3/md1/1.0Implementation Model Onlymd1.xsdmetadataWExtendedType.xsd + gcx.1.0, mds.1.0
md1Metadata for Data and Services with Geospatial Common Extensions2.0This namespace contains all classes needed for a complete metadata record for any + resource and enables the use of FileName, MimeType, and Anchor elements (gex). + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, A.2.3.4metadata-extended-types-instancehttp://standards.iso.org/iso/19115/-3/md1/2.0Implementation Model Onlymd1.xsdmetadataWExtendedType.xsd + gcx.1.0, mds.2.0
md2Metadata with Extended Schema1.0This namespace contains all classes needed for a complete metadata record for any + resource and enables the description of schema extensions (MD_MetadataExtensionInformation) + elements (mex). + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, A.2.3.5extended-metadata-instancehttp://standards.iso.org/iso/19115/-3/md2/1.0Implementation Model Onlymd2.xsdmetadataWithExtensions.xsd + cit.1.0, gcx.1.0, lan.1.0, mcc.1.0, md1.1.0, mex.1.0, mpc.1.0, mri.1.0
md2Metadata with Extended Schema2.0This namespace contains all classes needed for a complete metadata record for any + resource and enables the description of schema extensions (MD_MetadataExtensionInformation) + elements (mex). + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, A.2.3.5extended-metadata-instancehttp://standards.iso.org/iso/19115/-3/md2/2.0Implementation Model Onlymd2.xsdmetadataWithExtensions.xsd + cit.2.0, gcx.1.0, lan.1.0, mcc.1.0, md1.2.0, mex.1.0, mpc.1.0, mri.1.0
mdaMetaData Application1.0Elements to represent resources that may be aggregated and described by metadata records + (DS_*) + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.2metadata-applicationhttp://standards.iso.org/iso/19115/-3/mda/1.0<<Leaf>> Metadata Applicationmda.xsdmetadataApplication.xsd + md2.1.0, gco.1.0, mdb.1.0
mdaMetaData Application2.0Elements to represent resources that may be aggregated and described by metadata records + (DS_*) + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.2metadata-applicationhttp://standards.iso.org/iso/19115/-3/mda/2.0<<Leaf>> Metadata Applicationmda.xsdmetadataApplication.xsd + md2.2.0, gco.1.0, mdb.2.0
mdbMetadata Base1.0Mandatory elements for describing resources that are not services. This namespace + is used for metadata records that include only mandatory elements. + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.2metadata-basehttp://standards.iso.org/iso/19115/-3/mdb/1.0mdb.xsdmetadataBase.xsd + cit.1.0, dqc.1.0, lan.1.0, mcc.1.0, mri.1.0, gex.1.0, gco.1.0
mdbMetadata Base2.0Mandatory elements for describing resources that are not services. This namespace + is used for metadata records that include only mandatory elements. + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.2metadata-basehttp://standards.iso.org/iso/19115/-3/mdb/2.0mdb.xsdmetadataBase.xsd + cit.2.0, dqc.1.0, lan.1.0, mcc.1.0, mri.1.0, gex.1.0, gco.1.0
mdqMetadata for Data Quality1.0Elements for describing the quality of resources.ISO 19157, Geographic Information - Data Quality, 6.4data-qualityhttp://standards.iso.org/iso/19157/-2/mdq/1.0Data Qualitymdq.xsddataQualityElement.xsd dataQualityEvaluation.xsd dataQualityImagery.xsd dataQualityResult.xsd metaquality.xsd + dqc.1.0, gcx.1.0, mcc.1.0, gco.1.0, gmw.1.0, mrd.1.0
mdsMetadata for Data and Services1.0This namespace contains all classes needed for a complete metadata record for any + resource. It is used for metadata records that do not include geospatial common extensions + (gex), extenbsions to the schema (mex), data series (DS_*) elements (mda) or metadata + for data transfer (mdt). + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.2metadata-data-or-serviceshttp://standards.iso.org/iso/19115/-3/mds/1.0<<Leaf>>mds.xsdmetadataDataServices.xsd + fcc.1.0, gex.1.0, mac.1.0, mas.1.0, mco.1.0, mdb.1.0, mdq.1.0, mmi.1.0, mpc.1.0, mrc.1.0, + mrd.1.0, mrl.1.0, mrs.1.0, msr.1.0, srv.2.0 +
mdsMetadata for Data and Services2.0This namespace contains all classes needed for a complete metadata record for any + resource. It is used for metadata records that do not include geospatial common extensions + (gex), extenbsions to the schema (mex), data series (DS_*) elements (mda) or metadata + for data transfer (mdt). + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.2metadata-data-or-serviceshttp://standards.iso.org/iso/19115/-3/mds/2.0<<Leaf>>mds.xsdmetadataDataServices.xsd + fcc.1.0, gex.1.0, mac.2.0, mas.1.0, mco.1.0, mdb.2.0, mdq.1.0, mmi.1.0, mpc.1.0, mrc.2.0, + mrd.1.0, mrl.2.0, mrs.1.0, msr.2.0, srv.2.0 +
mdtMetadata for Data Transfer1.0This namespace contains all classes needed for a complete metadata record for any + resource and enables the description of data transfer (MX_*) elements. This is the + most inclusive of the ISO 19115-3 namespaces so it should be used in situations where + all 19115-3 capabilities are required. + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 7.4.2, 7.4.3data-transferhttp://standards.iso.org/iso/19115/-3/mdt/1.0<<Leaf>> Metadata-based Data Transfersmdt.xsdmetadataTransfer.xsd + cat.1.0, gcx.1.0, mda.1.0, gco.1.0
mdtMetadata for Data Transfer2.0This namespace contains all classes needed for a complete metadata record for any + resource and enables the description of data transfer (MX_*) elements. This is the + most inclusive of the ISO 19115-3 namespaces so it should be used in situations where + all 19115-3 capabilities are required. + ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 7.4.2, 7.4.3data-transferhttp://standards.iso.org/iso/19115/-3/mdt/2.0<<Leaf>> Metadata-based Data Transfersmdt.xsdmetadataTransfer.xsd + cat.1.0, gcx.1.0, mda.2.0, gco.1.0
mexMetadata with Schema Extensions1.0Elements describing extensions to metadata standards.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.12metadata-extensionhttp://standards.iso.org/iso/19115/-3/mex/1.0<<Leaf>> Metadata Extensionmex.xsdmetadataExtension.xsd + mcc.1.0, gco.1.0
mmiMetadata for Maintenance Information1.0Elements describing resource and metadata maintenance.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.6maintenance-informationhttp://standards.iso.org/iso/19115/-3/mmi/1.0<<Leaf>> Maintenancemmi.xsdmaintenance.xsd + mcc.1.0, gco.1.0
mpcMetadata for Portrayal Catalog1.0Elements for referencing portrayal catalogs.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.10portrayal-cataloghttp://standards.iso.org/iso/19115/-3/mpc/1.0<<Leaf>> Portrayal Catalogmpc.xsdportrayalCatalogue.xsd + gco.1.0, mcc.1.0
mrcMetadata for Resource Content1.0Elements for describing resource structure and content.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.9resource-contenthttp://standards.iso.org/iso/19115/-3/mrc/1.0<<Leaf>> Resource Contentmrc.xsdcontent.xsd contentInformationImagery.xsd + gco.1.0, fcc.1.0, lan.1.0, mcc.1.0, gmw.1.0
mrcMetadata for Resource Content2.0Elements for describing resource structure and content.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals AMENDMENT 1, 6.5.9resource-contenthttp://standards.iso.org/iso/19115/-3/mrc/2.0<<Leaf>> Resource Contentmrc.xsdcontent.xsd contentInformationImagery.xsd + gco.1.0, mac.2.0, fcc.1.0, lan.1.0, mcc.1.0, gmw.1.0
mrdMetadata for Resource Distribution1.0Elements specifying how a resource is accessed.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.11resource-distributionhttp://standards.iso.org/iso/19115/-3/mrd/1.0<<Leaf>> Distribution Informationmrd.xsddistribution.xsd + gco.1.0, mcc.1.0
mriMetadata for Resource Identification1.0Elements for identifying resources.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.3resource-identificationhttp://standards.iso.org/iso/19115/-3/mri/1.0<<Leaf>> Identification Informationmri.xsdidentification.xsd + lan.1.0, mcc.1.0, gco.1.0, gmw.1.0
mrlMetadata for Resource Lineage1.0Elements for describing resource lineage.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.5lineagehttp://standards.iso.org/iso/19115/-3/mrl/1.0<<Leaf>>mrl.xsdlineage.xsd lineageImagery.xsd + gco.1.0, mcc.1.0, gmw.1.0
mrlMetadata for Resource Lineage2.0Elements for describing resource lineage.ISO 19115-1, Geographic Information - Metadata - Part 2: Extensions for acquisition + and processing, 6.3.3 + lineagehttp://standards.iso.org/iso/19115/-3/mrl/2.0<<Leaf>>mrl.xsdlineage.xsd lineageImagery.xsd + gco.1.0, mcc.1.0, srv.2.1, gmw.1.0
mrsMetadata for Reference System1.0Elements for describing Reference Systems.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.8reference-systemhttp://standards.iso.org/iso/19115/-3/mrs/1.0<<Leaf>> Reference Systemmrs.xsdreferenceSystem.xsd + gco.1.0, mcc.1.0
msrMetadata for Spatial Representation1.0Elements for describing spatial representations of resources.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.7spatial-representationhttp://standards.iso.org/iso/19115/-3/msr/1.0<<Leaf>> Spatial Representationmsr.xsdspatialRepresentation.xsd spatialRepresentationImagery.xsd + gco.1.0, gmw.1.0, mcc.1.0, dqc.1.0
msrMetadata for Spatial Representation2.0Elements for describing spatial representations of resources.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals AMENDMENT 1, 6.5.7spatial-representationhttp://standards.iso.org/iso/19115/-3/msr/2.0<<Leaf>> Spatial Representationmsr.xsdspatialRepresentation.xsd spatialRepresentationImagery.xsd + gco.1.0, gmw.1.0, mcc.1.0, dqc.1.0
rbcReferencing By Coordinates1.0ISO 19111:2007 defines the conceptual schema for the description of spatial referencing + by coordinates, optionally extended to spatio-temporal referencing. It describes the + minimum data required to define one-, two- and three-dimensional spatial coordinate + reference systems with an extension to merged spatial-temporal reference systems. + It allows additional descriptive information to be provided. It also describes the + information required to change coordinates from one coordinate + reference system to another. + ISO 19111, Geographic information -- Spatial referencing by coordinatesreference-coordinatehttp://standards.iso.org/iso/19111/rbc/1.0rbc.xsdNo Other Schema +
rceReferencing By Coordinates Common1.0abstract classes shared by multiple namespaces and is required in order to enable + modularization of the XML implementation. + ISO 19111, Geographic information -- Spatial referencing by coordinatescoordinate-system-commonhttp://standards.iso.org/iso/19111/rce/1.0rce.xsdNo Other Schema +
srvMetadata for Services2.0Elements for describing services.ISO 19115-1, Geographic Information - Metadata - Part 1: Fundamentals, 6.5.14serviceshttp://standards.iso.org/iso/19115/-3/srv/2.0<<Leaf>> Servicessrv.xsdserviceInformation.xsd + gco.1.0, mcc.1.0, mri.1.0
+
+

Written by makeNamespaceTable Version: 2018-03-10 at 2018-03-10T10:24:13.31-07:00

+ + \ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/resources.zip b/inst/extdata/schemas/19115/resources/resources.zip new file mode 100644 index 00000000..68926f47 Binary files /dev/null and b/inst/extdata/schemas/19115/resources/resources.zip differ diff --git a/inst/extdata/schemas/19115/resources/transforms/.DS_Store b/inst/extdata/schemas/19115/resources/transforms/.DS_Store new file mode 100644 index 00000000..96cf5247 Binary files /dev/null and b/inst/extdata/schemas/19115/resources/transforms/.DS_Store differ diff --git a/inst/extdata/schemas/19115/resources/transforms/CT_CodelistCatalougue2HTML.xsl b/inst/extdata/schemas/19115/resources/transforms/CT_CodelistCatalougue2HTML.xsl new file mode 100644 index 00000000..07775343 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/CT_CodelistCatalougue2HTML.xsl @@ -0,0 +1,131 @@ + + + + + Created on: April 17, 2015 + Author: Ted Habermann + Updated on: September 10, 20175 + Added Catalog information and summary fields (counts of codelists and items), updated Version date + + + + + + + + +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions.

+

Catalog

+ Name:
+ Scope:
+ Field of application:
+ Version:
+ Date:
+ Number of CodeLists:
+ Number of items: +
+

Codelists

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Citation Information CodeLists +
CI_DateTypeCode | CI_OnLineFunctionCode | CI_PresentationFormCode | CI_RoleCode
+ Data Quality CodeLists +
+ DQ_EvaluationMethodTypeCode +
+ Dataset CodeLists +
DS_AssociationTypeCode | DS_InitiativeTypeCode
+ Metadata CodeLists +
MD_CellGeometryCode | MD_CharacterSetCode | MD_ClassificationCode | MD_CoverageContentTypeCode | MD_DatatypeCode | MD_DimensionNameTypeCode | MD_GeometricObjectTypeCode | MD_ImagingConditionCode | MD_KeywordTypeCode | MD_MaintenanceFrequencyCode | MD_MediumFormatCode | MD_MediumNameCode | MD_ObligationCode | MD_PixelOrientationCode | MD_ProgressCode | MD_RestrictionCode | MD_ScopeCode | MD_SpatialRepresentationTypeCode | MD_TopicCategoryCode | MD_TopologyLevelCode
+ Metadata for Grids and Images CodeLists +
MI_BandDefinition | MI_ContextCode | MI_GeometryTypeCode | MI_ObjectiveTypeCode | MI_OperationTypeCode | MI_PolarizationOrientationCode | MI_PriorityCode | MI_SequenceCode | MI_TransferFunctionTypeCode | MI_TriggerCode
+ Metadata Transfer CodeLists +
+ MX_ScopeCode +
+
+ + + + + + +

:

+ Description:
+ CodeSpace:
+ Number of items: + + + + + + + + + + + + + + +
EntryDefinition
+ + + +
+ top +
+
+ + +
+
diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/.DS_Store b/inst/extdata/schemas/19115/resources/transforms/ISO19139/.DS_Store new file mode 100644 index 00000000..4a62d05a Binary files /dev/null and b/inst/extdata/schemas/19115/resources/transforms/ISO19139/.DS_Store differ diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/fromISO19139.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/fromISO19139.xsl new file mode 100644 index 00000000..53219c39 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/fromISO19139.xsl @@ -0,0 +1,143 @@ + + + + + + + + + + Created on:March 8, 2014 + Translates from ISO 19139 for ISO 19115 and ISO 19139-2 for 19115-2 to ISO 19139-1 for ISO 19115-1 + + Version June 13, 2014 + + Converged the 19115-2 transform into 19115-1 namespaces + + + + Version August 7, 2014 + + Changed namespace dates to 2014-07-11 + Fixed DistributedComputingPlatform element + + + + Version August 15, 2014 + + Add multilingual metadata support by converting gmd:locale and copying gmd:PT_FreeText and element attributes (eg. gco:nilReason, xsi:type) for gmd:CharacterString elements (Author: + fx.prunayre@gmail.com). + + + + Version September 4, 2014 + + Added transform for MD_FeatureCatalogueDescription (problem identified by Tobias Spears + + + + Version February 5, 2015 + + Update to 2014-12-25 version + + + Author:thabermann@hdfgroup.org + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/CI_Citation.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/CI_Citation.xsl new file mode 100644 index 00000000..d04ea655 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/CI_Citation.xsl @@ -0,0 +1,118 @@ + + + + + + + + Created on:December 5, 2014 + These templates transform ISO 19139 CI_Citation XML content into ISO 19115-3 CI_Citation. They are designed to be imported as a template library + Version December 5, 2014 + Author:thabermann@hdfgroup.org + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/CI_ResponsibleParty.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/CI_ResponsibleParty.xsl new file mode 100644 index 00000000..a71055fb --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/CI_ResponsibleParty.xsl @@ -0,0 +1,196 @@ + + + + + + + + + Created on:December 5, 2014 + These templates transform ISO 19139 CI_Responsibility XML content into ISO 19115-3 CI_Responsibility They are designed to be imported as a template library + + Version December 5, 2014 + + Initial Version + + + Author:thabermann@hdfgroup.org + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/DQ.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/DQ.xsl new file mode 100644 index 00000000..067d0bcf --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/DQ.xsl @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/SRV.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/SRV.xsl new file mode 100644 index 00000000..73d07576 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/SRV.xsl @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/core.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/core.xsl new file mode 100644 index 00000000..5b68e50d --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/core.xsl @@ -0,0 +1,655 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/defaults.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/defaults.xsl new file mode 100644 index 00000000..0bbd0286 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/mapping/defaults.xsl @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mdb + + + gcx + + + gco + + + gml + + + gco + + + srv + + + lan + + + msr + + + mrl + + + mrc + + + mco + + + mcc + + + cit + + + mcc + + + mcc + + + + cit + + + mas + + + mac + + + mpc + + + mcc + + + mrs + + + mex + + + gex + + + msr + + + mcc + + + mrd + + + mri + + + mmi + + + + mri + + + mrc + + + mdq + + + mrl + + + mdq + + + mdb + + + mdb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/toISO19139.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/toISO19139.xsl new file mode 100644 index 00000000..ebebb754 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/toISO19139.xsl @@ -0,0 +1,862 @@ + + + + + More work required on: + + gmi:* not handled. + Filter all new elements (see last template). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gmx + + + gco + + + gml + + + gts + + + srv + + + gmd + + + gmd + + + gmd + + + gmd + + + gmd + + + + gmd + + + gmd + + + + gmd + + + gmd + + + gmd + + + gmd + + + gmd + + + gmd + + + gmd + + + gmd + + + gmd + + + srv + + + gmd + + + gmd + + + gmd + + + gmd + + + + + + + + + + \ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/create19115-3Namespaces.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/create19115-3Namespaces.xsl new file mode 100644 index 00000000..220ab019 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/create19115-3Namespaces.xsl @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/dateTime.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/dateTime.xsl new file mode 100644 index 00000000..87030ac2 --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/dateTime.xsl @@ -0,0 +1,60 @@ + + + + + + Created on:December 5, 2014 + These templates transform ISO 19139 DateTime XML content into ISO 19115-3 DateTime. + They are designed to be imported as a template library + Version December 5, 2014 + Author:thabermann@hdfgroup.org + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/multiLingualCharacterStrings.xsl b/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/multiLingualCharacterStrings.xsl new file mode 100644 index 00000000..65194a5e --- /dev/null +++ b/inst/extdata/schemas/19115/resources/transforms/ISO19139/utility/multiLingualCharacterStrings.xsl @@ -0,0 +1,91 @@ + + + + These utility templates transform CodeLists and CharacterStrings from ISO 19139 into ISO 19115-3. + Version August 8, 2015 + Author:thabermann@hdfgroup.org + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/srv/serviceMetadata.xsd b/inst/extdata/schemas/19119/srv/serviceMetadata.xsd similarity index 99% rename from inst/extdata/schemas/srv/serviceMetadata.xsd rename to inst/extdata/schemas/19119/srv/serviceMetadata.xsd index 6b673fb6..fa68d617 100644 --- a/inst/extdata/schemas/srv/serviceMetadata.xsd +++ b/inst/extdata/schemas/19119/srv/serviceMetadata.xsd @@ -8,8 +8,8 @@ - - + + diff --git a/inst/extdata/schemas/srv/serviceModel.xsd b/inst/extdata/schemas/19119/srv/serviceModel.xsd similarity index 99% rename from inst/extdata/schemas/srv/serviceModel.xsd rename to inst/extdata/schemas/19119/srv/serviceModel.xsd index b98eb067..a1ab3308 100644 --- a/inst/extdata/schemas/srv/serviceModel.xsd +++ b/inst/extdata/schemas/19119/srv/serviceModel.xsd @@ -9,8 +9,8 @@ - - + + diff --git a/inst/extdata/schemas/srv/srv.xsd b/inst/extdata/schemas/19119/srv/srv.xsd similarity index 100% rename from inst/extdata/schemas/srv/srv.xsd rename to inst/extdata/schemas/19119/srv/srv.xsd diff --git a/inst/extdata/schemas/19135/-2/.DS_Store b/inst/extdata/schemas/19135/-2/.DS_Store new file mode 100644 index 00000000..998b974e Binary files /dev/null and b/inst/extdata/schemas/19135/-2/.DS_Store differ diff --git a/inst/extdata/schemas/19135/-2/pre/.DS_Store b/inst/extdata/schemas/19135/-2/pre/.DS_Store new file mode 100644 index 00000000..33f77d08 Binary files /dev/null and b/inst/extdata/schemas/19135/-2/pre/.DS_Store differ diff --git a/inst/extdata/schemas/19135/-2/pre/1.0/.DS_Store b/inst/extdata/schemas/19135/-2/pre/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19135/-2/pre/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19135/-2/pre/1.0/abstract.xsd b/inst/extdata/schemas/19135/-2/pre/1.0/abstract.xsd new file mode 100644 index 00000000..6ee1f142 --- /dev/null +++ b/inst/extdata/schemas/19135/-2/pre/1.0/abstract.xsd @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19135/-2/pre/1.0/pre.png b/inst/extdata/schemas/19135/-2/pre/1.0/pre.png new file mode 100644 index 00000000..f46665ce Binary files /dev/null and b/inst/extdata/schemas/19135/-2/pre/1.0/pre.png differ diff --git a/inst/extdata/schemas/19135/-2/pre/1.0/pre.xsd b/inst/extdata/schemas/19135/-2/pre/1.0/pre.xsd new file mode 100644 index 00000000..91cb5d4b --- /dev/null +++ b/inst/extdata/schemas/19135/-2/pre/1.0/pre.xsd @@ -0,0 +1,4 @@ + + + + diff --git a/inst/extdata/schemas/19135/-2/pre/1.0/pre.zip b/inst/extdata/schemas/19135/-2/pre/1.0/pre.zip new file mode 100644 index 00000000..874cd3b0 Binary files /dev/null and b/inst/extdata/schemas/19135/-2/pre/1.0/pre.zip differ diff --git a/inst/extdata/schemas/19135/-2/reg/.DS_Store b/inst/extdata/schemas/19135/-2/reg/.DS_Store new file mode 100644 index 00000000..33f77d08 Binary files /dev/null and b/inst/extdata/schemas/19135/-2/reg/.DS_Store differ diff --git a/inst/extdata/schemas/19135/-2/reg/1.0/reg.xsd b/inst/extdata/schemas/19135/-2/reg/1.0/reg.xsd new file mode 100644 index 00000000..5995eef7 --- /dev/null +++ b/inst/extdata/schemas/19135/-2/reg/1.0/reg.xsd @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/inst/extdata/schemas/19135/-2/reg/1.0/reg.zip b/inst/extdata/schemas/19135/-2/reg/1.0/reg.zip new file mode 100644 index 00000000..a50fee7e Binary files /dev/null and b/inst/extdata/schemas/19135/-2/reg/1.0/reg.zip differ diff --git a/inst/extdata/schemas/19135/-2/reg/1.0/registration.xsd b/inst/extdata/schemas/19135/-2/reg/1.0/registration.xsd new file mode 100644 index 00000000..8d7fa19e --- /dev/null +++ b/inst/extdata/schemas/19135/-2/reg/1.0/registration.xsd @@ -0,0 +1,562 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + change cardinality from 0..1 to 0..* to implement the Set<RE_FieldOfApplication> type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_AmendmentInformation</Class> +<Attribute>amendmentType</Attribute> +<Type>RE_AmendmentType</Type> +<UsedBy> + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_AmendmentInformation</Class> +<Attribute>amendmentType</Attribute> +<Type>RE_AmendmentType</Type> +<UsedBy> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_ProposalManagementInformation</Class> +<Attribute>status</Attribute> +<Type>RE_DecisionStatus</Type> +<UsedBy> + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_ProposalManagementInformation</Class> +<Attribute>status</Attribute> +<Type>RE_DecisionStatus</Type> +<UsedBy> + + + + + + + + + + + + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_ProposalManagementInformation</Class> +<Attribute>disposition[0..1]</Attribute> +<Type>RE_Disposition</Type> +<UsedBy> + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_ProposalManagementInformation</Class> +<Attribute>disposition[0..1]</Attribute> +<Type>RE_Disposition</Type> +<UsedBy> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + change cardinality from 1..1 to 1..* to implement the Set<RE_AlternativeName> + + + + + + + + + + + + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_RegisterItem</Class> +<Attribute>status</Attribute> +<Type>RE_ItemStatus</Type> +<UsedBy> + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_RegisterItem</Class> +<Attribute>status</Attribute> +<Type>RE_ItemStatus</Type> +<UsedBy> + + + + + + + + + + + + + + + + + remove datatype stereotype SMR 2014-07-16 for XML build with Shapechange + +<UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_Register</Class> +<Attribute>operatingLanguage</Attribute> +<Type>RE_Locale</Type> +<UsedBy> + +<UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_SubregisterDescription</Class> +<Attribute>operatingLanguage</Attribute> +<Type>RE_Locale</Type> +<UsedBy> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Why does this class exist? it is simply a wrapper with no specific properties for a CI_Citation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + change cardinality from 1..1 to 1..* to implement Set<RE_Locale> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + change cardinality from 0..1 to 0..* to implement Set + + + + + Change cardinality from 0..1 to 0..* to implement Set + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_Reference</Class> +<Attribute>similarity</Attribute> +<Type>RE_SimilarityToSource</Type> +<UsedBy> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <UsedBy> +<NameSpace>ISO 19135 Procedures for registration</NameSpace> +<Class>RE_Register</Class> +<Attribute>version[0..1]</Attribute> +<Type>RE_Version</Type> +<UsedBy> + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19135/.DS_Store b/inst/extdata/schemas/19135/.DS_Store new file mode 100644 index 00000000..5ba91e38 Binary files /dev/null and b/inst/extdata/schemas/19135/.DS_Store differ diff --git a/inst/extdata/schemas/19139/.DS_Store b/inst/extdata/schemas/19139/.DS_Store new file mode 100644 index 00000000..4aa4e529 Binary files /dev/null and b/inst/extdata/schemas/19139/.DS_Store differ diff --git a/inst/extdata/schemas/gmx/ReadMe.txt b/inst/extdata/schemas/19139/gmx/ReadMe.txt similarity index 100% rename from inst/extdata/schemas/gmx/ReadMe.txt rename to inst/extdata/schemas/19139/gmx/ReadMe.txt diff --git a/inst/extdata/schemas/gmx/catalogues.xsd b/inst/extdata/schemas/19139/gmx/catalogues.xsd similarity index 98% rename from inst/extdata/schemas/gmx/catalogues.xsd rename to inst/extdata/schemas/19139/gmx/catalogues.xsd index a44fac1d..02f05aee 100644 --- a/inst/extdata/schemas/gmx/catalogues.xsd +++ b/inst/extdata/schemas/19139/gmx/catalogues.xsd @@ -7,8 +7,8 @@ - - + + diff --git a/inst/extdata/schemas/gmx/codelistItem.xsd b/inst/extdata/schemas/19139/gmx/codelistItem.xsd similarity index 98% rename from inst/extdata/schemas/gmx/codelistItem.xsd rename to inst/extdata/schemas/19139/gmx/codelistItem.xsd index 293947d9..d56da782 100644 --- a/inst/extdata/schemas/gmx/codelistItem.xsd +++ b/inst/extdata/schemas/19139/gmx/codelistItem.xsd @@ -8,9 +8,9 @@ - - - + + + diff --git a/inst/extdata/schemas/gmx/crsItem.xsd b/inst/extdata/schemas/19139/gmx/crsItem.xsd similarity index 99% rename from inst/extdata/schemas/gmx/crsItem.xsd rename to inst/extdata/schemas/19139/gmx/crsItem.xsd index 1f0252c8..d7a74e8c 100644 --- a/inst/extdata/schemas/gmx/crsItem.xsd +++ b/inst/extdata/schemas/19139/gmx/crsItem.xsd @@ -8,9 +8,9 @@ - - - + + + diff --git a/inst/extdata/schemas/gmx/extendedTypes.xsd b/inst/extdata/schemas/19139/gmx/extendedTypes.xsd similarity index 98% rename from inst/extdata/schemas/gmx/extendedTypes.xsd rename to inst/extdata/schemas/19139/gmx/extendedTypes.xsd index 568f6455..bd6f548b 100644 --- a/inst/extdata/schemas/gmx/extendedTypes.xsd +++ b/inst/extdata/schemas/19139/gmx/extendedTypes.xsd @@ -6,8 +6,8 @@ - - + + diff --git a/inst/extdata/schemas/gmx/gmx.xsd b/inst/extdata/schemas/19139/gmx/gmx.xsd similarity index 100% rename from inst/extdata/schemas/gmx/gmx.xsd rename to inst/extdata/schemas/19139/gmx/gmx.xsd diff --git a/inst/extdata/schemas/gmx/gmxUsage.xsd b/inst/extdata/schemas/19139/gmx/gmxUsage.xsd similarity index 98% rename from inst/extdata/schemas/gmx/gmxUsage.xsd rename to inst/extdata/schemas/19139/gmx/gmxUsage.xsd index cb42c1e9..f8e0ce9d 100644 --- a/inst/extdata/schemas/gmx/gmxUsage.xsd +++ b/inst/extdata/schemas/19139/gmx/gmxUsage.xsd @@ -7,8 +7,8 @@ - - + + diff --git a/inst/extdata/schemas/gmx/uomItem.xsd b/inst/extdata/schemas/19139/gmx/uomItem.xsd similarity index 98% rename from inst/extdata/schemas/gmx/uomItem.xsd rename to inst/extdata/schemas/19139/gmx/uomItem.xsd index 39ae97c9..009a74fd 100644 --- a/inst/extdata/schemas/gmx/uomItem.xsd +++ b/inst/extdata/schemas/19139/gmx/uomItem.xsd @@ -8,9 +8,9 @@ - - - + + + diff --git a/inst/extdata/schemas/gsr/ReadMe.txt b/inst/extdata/schemas/19139/gsr/ReadMe.txt similarity index 100% rename from inst/extdata/schemas/gsr/ReadMe.txt rename to inst/extdata/schemas/19139/gsr/ReadMe.txt diff --git a/inst/extdata/schemas/gsr/gsr.xsd b/inst/extdata/schemas/19139/gsr/gsr.xsd similarity index 100% rename from inst/extdata/schemas/gsr/gsr.xsd rename to inst/extdata/schemas/19139/gsr/gsr.xsd diff --git a/inst/extdata/schemas/gsr/spatialReferencing.xsd b/inst/extdata/schemas/19139/gsr/spatialReferencing.xsd similarity index 97% rename from inst/extdata/schemas/gsr/spatialReferencing.xsd rename to inst/extdata/schemas/19139/gsr/spatialReferencing.xsd index 47ca0401..e2df2e91 100644 --- a/inst/extdata/schemas/gsr/spatialReferencing.xsd +++ b/inst/extdata/schemas/19139/gsr/spatialReferencing.xsd @@ -7,8 +7,8 @@ - - + + diff --git a/inst/extdata/schemas/gss/ReadMe.txt b/inst/extdata/schemas/19139/gss/ReadMe.txt similarity index 100% rename from inst/extdata/schemas/gss/ReadMe.txt rename to inst/extdata/schemas/19139/gss/ReadMe.txt diff --git a/inst/extdata/schemas/gss/geometry.xsd b/inst/extdata/schemas/19139/gss/geometry.xsd similarity index 96% rename from inst/extdata/schemas/gss/geometry.xsd rename to inst/extdata/schemas/19139/gss/geometry.xsd index 904c079e..575dc752 100644 --- a/inst/extdata/schemas/gss/geometry.xsd +++ b/inst/extdata/schemas/19139/gss/geometry.xsd @@ -6,8 +6,8 @@ - - + + diff --git a/inst/extdata/schemas/gss/gss.xsd b/inst/extdata/schemas/19139/gss/gss.xsd similarity index 100% rename from inst/extdata/schemas/gss/gss.xsd rename to inst/extdata/schemas/19139/gss/gss.xsd diff --git a/inst/extdata/schemas/gts/ReadMe.txt b/inst/extdata/schemas/19139/gts/ReadMe.txt similarity index 100% rename from inst/extdata/schemas/gts/ReadMe.txt rename to inst/extdata/schemas/19139/gts/ReadMe.txt diff --git a/inst/extdata/schemas/gts/gts.xsd b/inst/extdata/schemas/19139/gts/gts.xsd similarity index 100% rename from inst/extdata/schemas/gts/gts.xsd rename to inst/extdata/schemas/19139/gts/gts.xsd diff --git a/inst/extdata/schemas/gts/temporalObjects.xsd b/inst/extdata/schemas/19139/gts/temporalObjects.xsd similarity index 96% rename from inst/extdata/schemas/gts/temporalObjects.xsd rename to inst/extdata/schemas/19139/gts/temporalObjects.xsd index 36614c1d..c4932e05 100644 --- a/inst/extdata/schemas/gts/temporalObjects.xsd +++ b/inst/extdata/schemas/19139/gts/temporalObjects.xsd @@ -6,8 +6,8 @@ - - + + diff --git a/inst/extdata/schemas/19139/resources/ML_gmxCodelists.xml b/inst/extdata/schemas/19139/resources/ML_gmxCodelists.xml new file mode 100644 index 00000000..5d97a42b --- /dev/null +++ b/inst/extdata/schemas/19139/resources/ML_gmxCodelists.xml @@ -0,0 +1,841 @@ + + + + + + ML_gmxCodelists + + + Codelists for description of metadata datasets compliant with ISO/TC 211 19115:2003 and 19139 + + + Listes de codes pour la description de lots de métadonnées conforme ISO TC/211 19115:2003 et 19139 + + + + + GMX (and imported) namespace + + + 0.0 + + + 2005-03-18 + + + + + English + + + UTF 8 + + + + + + French + + + France + + + UTF 8 + + + + + + + + + + identification of when a given event occurred + CI_DateTypeCode + + + date identifies when the resource was brought into existence + creation + creation + + + date identifiant la création de la ressource + creation + création + + + + + + + + date identifies when the resource was issued + publication + publication + + + date identifiant la publication de la ressource + publication + publication + + + + + + + + date identifies when the resource was examined or re-examined and imporved or amended + revision + revision + + + amélioration ou amendement de la ressource + revision + révision + + + + + + + + identification de quand un événement s'est produit + CI_DateTypeCode + + + + + + + + + function performed by the resource + CI_OnLineFunctionCode + + + online instructions for transferring data from one storage device or system to another + download + Download + + + transfert de la ressource d'un système à un autre + download + Téléchargement + + + + + + + + online information about the resource + information + Information + + + description de la ressource en ligne + information + Information + + + + + + + + online instructions for requesting the resource from the provider + offlineAccess + Off line access + + + information pour requérir la ressource + offlineAccess + Accès hors ligne + + + + + + + + online order process for obtening the resource + order + Order + + + formulaire pour obtenir la ressource + order + commande en ligne + + + + + + + + online search interface for seeking out information about the resource + search + Search + + + interface de recherche d'information sur la ressource + search + Moteur de recherche + + + + + + + + Fonctionnalité offerte par la ressource + CI_OnLineFunctionCode + + + + + + + + + name of the character coding standard used in the resource + MD_CharacterSetCode + + + 16-bit fixed size Universal Character Set, based on ISO/IEC 10646 + ucs2 + + + 16 bits ISO/IEC 10646 + ucs2 + + + + + + + + 32-bit fixed size Universal Character Set, based on ISO/IEC 10646 + ucs4 + + + 32 bits ISO/IEC 10646 + ucs4 + + + + + + + + 7-bit variable size UCS Transfer Format, based on ISO/IEC 10646 + utf7 + + + 7 bits ISO/IEC 10646 + utf7 + + + + + + + + 8-bit variable size UCS Transfer Format, based on ISO/IEC 10646 + utf8 + + + 8 bits ISO/IEC 10646 + utf8 + + + + + + + + 16-bit variable size UCS Transfer Format, based on ISO/IEC 10646 + utf16 + + + 16 bits ISO/IEC 10646 + utf16 + + + + + + + + ISO/IEC 8859-1, Information technology - 8-bit single byte coded graphic character sets - Part 1 : Latin alphabet No.1 + 8859part1 + + + ISO/IEC 8859-1, alphabet latin 1 + 8859part1 + + + + + + + + ISO/IEC 8859-2, Information technology - 8-bit single byte coded graphic character sets - Part 2 : Latin alphabet No.2 + 8859part2 + + + ISO/IEC 8859-2, alphabet latin 2 + 8859part2 + + + + + + + + ISO/IEC 8859-3, Information technology - 8-bit single byte coded graphic character sets - Part 3 : Latin alphabet No.3 + 8859part3 + + + ISO/IEC 8859-3, alphabet latin 3 + 8859part3 + + + + + + + + ISO/IEC 8859-4, Information technology - 8-bit single byte coded graphic character sets - Part 4 : Latin alphabet No.4 + 8859part4 + + + ISO/IEC 8859-4, alphabet latin 4 + 8859part4 + + + + + + + + ISO/IEC 8859-5, Information technology - 8-bit single byte coded graphic character sets - Part 5 : Latin/Cyrillic alphabet + 8859part5 + + + ISO/IEC 8859-5, alphabet latin/cyrillique + 8859part5 + + + + + + + + ISO/IEC 8859-6, Information technology - 8-bit single byte coded graphic character sets - Part 6 : Latin/Arabic alphabet + 8859part6 + + + ISO/IEC 8859-6, alphabet latin/arabe + 8859part6 + + + + + + + + ISO/IEC 8859-7, Information technology - 8-bit single byte coded graphic character sets - Part 7 : Latin/Greek alphabet + 8859part7 + + + ISO/IEC 8859-7, alphabet latin/grec + 8859part7 + + + + + + + + ISO/IEC 8859-8, Information technology - 8-bit single byte coded graphic character sets - Part 8 : Latin/Hebrew alphabet + 8859part8 + + + ISO/IEC 8859-8, alphabet latin/hébreu + 8859part8 + + + + + + + + ISO/IEC 8859-9, Information technology - 8-bit single byte coded graphic character sets - Part 9 : Latin alphabet No.5 + 8859part9 + + + ISO/IEC 8859-9, alphabet latin 5 + 8859part9 + + + + + + + + ISO/IEC 8859-10, Information technology - 8-bit single byte coded graphic character sets - Part 10 : Latin alphabet No.6 + 8859part10 + + + ISO/IEC 8859-10, alphabet latin 6 + 8859part10 + + + + + + + + ISO/IEC 8859-11, Information technology - 8-bit single byte coded graphic character sets - Part 11 : Latin/Thai alphabet + 8859part11 + + + ISO/IEC 8859-11, alphabet latin/Thaï + 8859part11 + + + + + + + + + ISO/IEC 8859-13, Information technology - 8-bit single byte coded graphic character sets - Part 13 : Latin alphabet No.7 + 8859part13 + + + ISO/IEC 8859-13, alphabet latin 7 + 8859part13 + + + + + + + + ISO/IEC 8859-14, Information technology - 8-bit single byte coded graphic character sets - Part 14 : Latin alphabet No.8 (Celtic) + 8859part14 + + + ISO/IEC 8859-14, alphabet latin 8 (celtique) + 8859part14 + + + + + + + + ISO/IEC 8859-15, Information technology - 8-bit single byte coded graphic character sets - Part 15 : Latin alphabet No.9 + 8859part15 + + + ISO/IEC 8859-15, alphabet latin 9 + 8859part15 + + + + + + + + ISO/IEC 8859-16, Information technology - 8-bit single byte coded graphic character sets - Part 16 : Latin alphabet No.10 + 8859part16 + + + ISO/IEC 8859-16, alphabet latin 10 + 8859part16 + + + + + + + + japanese code set used for electronic transmission + jis + + + Japonais + jis + + + + + + + + japanese code set used on MS-DOS machines + shiftJIS + + + Japonais pour MS-DOS + shiftJIS + + + + + + + + japanese code set used on UNIX based machines + eucJP + + + Japonais pour UNIX + eucJP + + + + + + + + United States ASCII code set (ISO 646 US) + usAscii + + + ISO 646 US + usAscii + + + + + + + + IBM mainframe code set + ebcdic + + + IBM + ebcdic + + + + + + + + Korean code set + eucKR + + + Koréen + eucKR + + + + + + + + traditional Chinese code set used in Taiwan, Hong Kong of China and other areas + big5 + + + Chinois traditionel (Taiwan, Hong Kong, Chine) + big5 + + + + + + + + simplified Chinese code set + GB2312 + + + Chinois simplifié + GB2312 + + + + + + + + Jeu de caractères + MD_CharacterSetCode + + + + + + + + + class of information to which the referencing entity applies + MD_ScopeCode + + + Information applies to the attribute class + attribute + Attribute + + + Information qui s’applique à une classe d’attributs + attribute + Attribut + + + + + + + + Information applies to the characteristic of a feature + attributeType + Attribute type + + + Information qui s’applique à la caractéristique d’une entité géographique + attributeType + Type d’attribut + + + + + + + + Information applies to the dataset + dataset + Dataset + + + Information qui s’applique au jeu de données + dataset + Jeu de données + + + + + + Information applies to the dataset + dataset + 005 + + + + + + + Information applies to the series + series + Series + + + Information qui s’applique à une série + series + Série + + + + + + + + Information applies to non-geographic data + nonGeographicDataset + Non geographic dataset + + + Information qui s’applique à des données non-géographiques + nonGeographicDataset + Jeu de données non géographiques + + + + + + + + Information applies to a feature + feature + Feature + + + Information qui s’applique à un élément (entité géographique) + feature + Elément + + + + + + + + Information applies to a feature type + featureType + Feature type + + + Information qui s’applique à un type d’élément + featureType + Type d’élément + + + + + + + + Information applies to a property type + propertyType + Property type + + + Information qui s’applique à un type de propriété + propertyType + Type de propriété + + + + + + + + Information applies to a tile, a spatial subset of geographic data + tile + Tile + + + Information qui s’applique à une tuile, un sous-ensemble spatial de données géographiques + tile + Tuile + + + + + + + + information sur l'entité sur laquelle les métadonnées s'appliquent + MD_ScopeCode + + + + + + + + + + Language : ISO 639-2 (3 characters) + LanguageCode + + + English + eng + English + + + Anglais + eng + Anglais + + + + + + + + French + fra + French + + + Français + fra + Français + + + + + + + + Langue : ISO 639-2 (3 caractères) + LanguageCode + + + + + + + + + Country : ISO 3166-2 (2 characters) + Country + + + United Kingdom + UK + United Kingdom + + + Royaume-Uni + UK + Royaume-Uni + + + + + + + + France + FR + France + + + France + FR + France + + + + + + + + Pays : ISO 3166-2 (2 caractères) + Country + + + + + + + diff --git a/inst/extdata/schemas/19139/resources/gmiCodelists.xml b/inst/extdata/schemas/19139/resources/gmiCodelists.xml new file mode 100644 index 00000000..277848c2 --- /dev/null +++ b/inst/extdata/schemas/19139/resources/gmiCodelists.xml @@ -0,0 +1,331 @@ + + + + + + gmiCodelists + + + Codelists for description of metadata datasets compliant with ISO/TC 211 19115-2:2007, ISO/TS 19139:2007 and ISO 19139-2 + + + GMI (and imported) namespace + + + 0.0 + + + 2011-07-07 + + + + + + + + designation of criterion for defining maximum and minimum wavelengths for a spectral band + MI_BandDefinition + + + width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak + 3dB + + + + + width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak + halfMaximum + + + + + full spectral width of a spectral power density measured at 50% of its peak height + fiftyPercent + + + + + width of a distribution equal to the distance between the outer two points on the distribution having power level 1/e that of the peak + oneOverE + + + + + width of a band with full sensitivity or absorption at every wavelength that detects or absorbs the same amount of energy as the band described + equivalentWidth + + + + + + + + designation of criterion for defining the context of the scanning process event + MI_ContextCode + + + event related to a specific collection + acquisition + + + + + event related to a sequence of collections + pass + + + + + event related to a navigational manoeuvre + wayPoint + + + + + + + + geometric description of the collection + MI_GeometryTypeCode + + + single geographic point of interest + point + + + + + extended collection in a single vector + linear + + + + + collection of a geographic area defined by a polygon (coverage) + areal + + + + + series of linear collections grouped by way points + strip + + + + + + + + temporal persistence of collection objective + MI_ObjectiveTypeCode + + + single instance of collection + instantaneousCollection + + + + + multiple instances of collection + persistentView + + + + + collection over specified domain + survey + + + + + + + + code indicating whether the data contained in this packet is real (originates from live-fly or other non-simulated operational sources), simulated (originates from target simulator sources), or synthesized (a mix of real and simulated data). + MI_OperationTypeCode + + + originates from live-fly or other non-simulated operational source + real + + + + + originates from target simulator sources + simulated + + + + + mix of real and simulated data + synthesized + + + + + + + + polarisation of the antenna relative to the waveform + MI_PolarizationOrientationCode + + + polarisation of the sensor oriented in the horizontal plane in relation to swath direction + horizontal + + + + + polarisation of the sensor oriented in the vertical plane in relation to swath direction + vertical + + + + + polarisation of the sensor oriented in the left circular plane in relation to swath direction + leftCircular + + + + + polarisation of the sensor oriented in the right circular plane in relation to swath direction + rightCircular + + + + + polarisation of the sensor oriented in the angle between +90 ° and 0 ° parallel to swath direction + theta + + + + + polarisation of the sensor oriented in the +90 ° and 0 ° perpendicular to swath direction + phi + + + + + + + + ordered list of priorities + MI_PriorityCode + + + decisive importance + critical + + + + + requires resources to be made available + highImportance + + + + + normal operation priority + mediumImportance + + + + + to be completed when resources are available + lowImportance + + + + + + + + temporal relation of activation + MI_SequenceCode + + + beginning of a collection + start + + + + + end of a collection + end + + + + + collection without a significant duration + instantaneous + + + + + + + + transform function to be used when scaling a physical value for a given element + MI_TransferFunctionTypeCode + + + function used for transformation is first order polynomial + linear + + + + + function used for transformation is logarithmic + logarithmic + + + + + function used for transformation is exponential + exponential + + + + + + + + mechanism of activation + MI_TriggerCode + + + event due to external stimuli + automatic + + + + + event manually instigated + manual + + + + + event instigated by planned internal stimuli + preProgrammed + + + + + + diff --git a/inst/extdata/schemas/19139/resources/gmxCodelists.xml b/inst/extdata/schemas/19139/resources/gmxCodelists.xml new file mode 100644 index 00000000..80828555 --- /dev/null +++ b/inst/extdata/schemas/19139/resources/gmxCodelists.xml @@ -0,0 +1,1898 @@ + + + + + + + gmxCodelists + + + Codelists for description of metadata datasets compliant with ISO/TC 211 19115:2003 and 19139 + + + GMX (and imported) namespace + + + 0.0 + + + 2005-03-18 + + + + + + + + identification of when a given event occurred + CI_DateTypeCode + + + date identifies when the resource was brought into existence + creation + + + + + date identifies when the resource was issued + publication + + + + + date identifies when the resource was examined or re-examined and imporved or amended + revision + + + + + + + + function performed by the resource + CI_OnLineFunctionCode + + + online instructions for transferring data from one storage device or system to another + download + + + + + online information about the resource + information + + + + + online instructions for requesting the resource from the provider + offlineAccess + + + + + online order process for obtening the resource + order + + + + + online search interface for seeking out information about the resource + search + + + + + + + + mode in which the data is represented + CI_PresentationFormCode + + + digital representation of a primarily textual item (can contain illustrations also) + documentDigital + + + + + representation of a primarily textual item (can contain illustrations also) on paper, photograhic material, or other media + imageDigital + + + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format + documentHardcopy + + + + + likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user + imageHardcopy + + + + + map represented in raster or vector form + mapDigital + + + + + map printed on paper, photographic material, or other media for use directly by the human user + mapHardcopy + + + + + multi-dimensional digital representation of a feature, process, etc. + modelDigital + + + + + 3-dimensional, physical model + modelHardcopy + + + + + vertical cross-section in digital form + profileDigital + + + + + vertical cross-section printed on paper, etc. + profileHardcopy + + + + + digital representation of facts or figures systematically displayed, especially in columns + tableDigital + + + + + representation of facts or figures systematically displayed, especially in columns, printed onpapers, photographic material, or other media + tableHardcopy + + + + + digital video recording + videoDigital + + + + + video recording on film + videoHardcopy + + + + + + + + function performed by the responsible party + CI_RoleCode + + + party that supplies the resource + resourceProvider + + + + + party that accepts accountability and responsability for the data and ensures appropriate care and maintenance of the resource + custodian + + + + + party that owns the resource + owner + + + + + party who uses the resource + user + + + + + party who distributes the resource + distributor + + + + + party who created the resource + originator + + + + + party who can be contacted for acquiring knowledge about or acquisition of the resource + pointOfContact + + + + + key party responsible for gathering information and conducting research + principalInvestigator + + + + + party wha has processed the data in a manner such that the resource has been modified + processor + + + + + party who published the resource + publisher + + + + + party who authored the resource + author + + + + + + + + type or method for evaluating an identified data quality measure + DQ_EvaluationMethodTypeCode + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated + directInternal + + + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required + directExternal + + + + + method of evaluating the quality of a dataset based on external knowledge + indirect + + + + + + + + justification for the correlation of two datasets + DS_AssociationTypeCode + + + reference from one dataset to another + crossReference + + + + + reference to a master dataset of which this one is a part + largerWorkCitation + + + + + part of the same structured set of data held in a computer + partOfSeamlessDatabase + + + + + mapping and charting information from which the dataset content originates + source + + + + + part of a set of imagery that when used together, provides three-dimensional images + stereoMate + + + + + + + + type of aggregation activity in which datasets are related + DS_InitiativeTypeCode + + + series of organized planned actions + campaign + + + + + accumulation of datasets assembled for a specific purpose + collection + + + + + specific performance of a function or group of functions + exercise + + + + + process designed to find if something is effective or valid + experiment + + + + + search or systematic inquiry + investigation + + + + + specific operation of a data collection system + mission + + + + + device or piece of equipment which detects or records + sensor + + + + + action that is part of a series of actions + operation + + + + + vehicle or other support base that holds a sensor + platform + + + + + method of doing something involving a number of steps + process + + + + + specific planned activity + program + + + + + organized undertaking, research, or development + project + + + + + examination or investigation + study + + + + + piece of work + task + + + + + process of testing to discover or demonstrate something + trial + + + + + + + + code indicating whether grid data is point or area + MD_CellGeometryCode + + + each cell represents a point + point + + + + + each cell represents an area + area + + + + + + + + name of the character coding standard used in the resource + MD_CharacterSetCode + + + 16-bit fixed size Universal Character Set, based on ISO/IEC 10646 + ucs2 + + + + + 32-bit fixed size Universal Character Set, based on ISO/IEC 10646 + ucs4 + + + + + 7-bit variable size UCS Transfer Format, based on ISO/IEC 10646 + utf7 + + + + + 8-bit variable size UCS Transfer Format, based on ISO/IEC 10646 + utf8 + + + + + 16-bit variable size UCS Transfer Format, based on ISO/IEC 10646 + utf16 + + + + + ISO/IEC 8859-1, Information technology - 8-bit single byte coded graphic character sets - Part 1 : Latin alphabet No.1 + 8859part1 + + + + + ISO/IEC 8859-2, Information technology - 8-bit single byte coded graphic character sets - Part 2 : Latin alphabet No.2 + 8859part2 + + + + + ISO/IEC 8859-3, Information technology - 8-bit single byte coded graphic character sets - Part 3 : Latin alphabet No.3 + 8859part3 + + + + + ISO/IEC 8859-4, Information technology - 8-bit single byte coded graphic character sets - Part 4 : Latin alphabet No.4 + 8859part4 + + + + + ISO/IEC 8859-5, Information technology - 8-bit single byte coded graphic character sets - Part 5 : Latin/Cyrillic alphabet + 8859part5 + + + + + ISO/IEC 8859-6, Information technology - 8-bit single byte coded graphic character sets - Part 6 : Latin/Arabic alphabet + 8859part6 + + + + + ISO/IEC 8859-7, Information technology - 8-bit single byte coded graphic character sets - Part 7 : Latin/Greek alphabet + 8859part7 + + + + + ISO/IEC 8859-8, Information technology - 8-bit single byte coded graphic character sets - Part 8 : Latin/Hebrew alphabet + 8859part8 + + + + + ISO/IEC 8859-9, Information technology - 8-bit single byte coded graphic character sets - Part 9 : Latin alphabet No.5 + 8859part9 + + + + + ISO/IEC 8859-10, Information technology - 8-bit single byte coded graphic character sets - Part 10 : Latin alphabet No.6 + 8859part10 + + + + + ISO/IEC 8859-11, Information technology - 8-bit single byte coded graphic character sets - Part 11 : Latin/Thai alphabet + 8859part11 + + + + + + ISO/IEC 8859-13, Information technology - 8-bit single byte coded graphic character sets - Part 13 : Latin alphabet No.7 + 8859part13 + + + + + ISO/IEC 8859-14, Information technology - 8-bit single byte coded graphic character sets - Part 14 : Latin alphabet No.8 (Celtic) + 8859part14 + + + + + ISO/IEC 8859-15, Information technology - 8-bit single byte coded graphic character sets - Part 15 : Latin alphabet No.9 + 8859part15 + + + + + ISO/IEC 8859-16, Information technology - 8-bit single byte coded graphic character sets - Part 16 : Latin alphabet No.10 + 8859part16 + + + + + japanese code set used for electronic transmission + jis + + + + + japanese code set used on MS-DOS machines + shiftJIS + + + + + japanese code set used on UNIX based machines + eucJP + + + + + United States ASCII code set (ISO 646 US) + usAscii + + + + + IBM mainframe code set + ebcdic + + + + + Korean code set + eucKR + + + + + traditional Chinese code set used in Taiwan, Hong Kong of China and other areas + big5 + + + + + simplified Chinese code set + GB2312 + + + + + + + + name of the handling restrictions on the dataset + MD_ClassificationCode + + + available for general disclosure + unclassified + + + + + not for general disclosure + restricted + + + + + available for someone who can be entrusted with information + confidential + + + + + kept or meant to be kept private, unknown, or hidden from all but a select group of people + secret + + + + + of the highest secrecy + topSecret + + + + + + + + specific type of information represented in the cell + MD_CoverageContentTypeCode + + + meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter + image + + + + + code value with no quantitative meaning, used to represent a physical quantity + thematicClassification + + + + + value in physical units of the quantity being measured + physicalMeasurement + + + + + + + + datatype of element or entity + MD_DatatypeCode + + + descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behavior + class + + + + + + flexible enumeration useful for expressing a long list of values, can be extended + codelist + + + + + data type whose instances form a list of named literal values, not extendable + enumeration + + + + + permissible value for a codelist or enumeration + codelistElement + + + + + class that cannot be directly instantiated + abstractClass + + + + + class that is composed of classes it is connected to by an aggregate relationship + aggregateClass + + + + + subclass that may be substituted for its superclass + specifiedClass + + + + + class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, encoding or persistent storage + datatypeClass + + + + + named set of operations that characterize the behavior of an element + interfaceClass + + + + + class describing a selection of one of the specified types + unionClass + + + + + class whose instances are classes + metaClass + + + + + class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A type may have attributes and associations + typeClass + + + + + free text field + characterString + + + + + numerical field + integer + + + + + semantic relationship between two classes that involves connections among their instances + association + + + + + + + + name of the dimension + MD_DimensionNameTypeCode + + + ordinate (y) axis + row + + + + + abscissa (x) axis + column + + + + + vertical (z) axis + vertical + + + + + along the direction of motion of the scan point + track + + + + + perpendicular to the direction of motion of the scan point + crossTrack + + + + + scan line of a sensor + line + + + + + element along a scan line + sample + + + + + duration + time + + + + + + + + name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset + MD_GeometricObjectTypeCode + + + set of geometric primitives such that their boundaries can be represented as a union of other primitives + complex + + + + + connected set of curves, solids or surfaces + composite + + + + + bounded, 1-dimensional geometric primitive, representing the continuous image of a line + curve + + + + + zero-dimensional geometric primitive, representing a position but not having an extent + point + + + + + bounded, connected 3-dimensional geometric primitive, representing the continuous image of a region of space + solid + + + + + bounded, connected 2-dimensional geometric primitive, representing the continuous image of a region of a plane + surface + + + + + + + + code which indicates conditions which may affect the image + MD_ImagingConditionCode + + + portion of the image is blurred + blurredImage + + + + + portion of the image is partially obscured by cloud cover + cloud + + + + + acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator + degradingObliquity + + + + + portion of the image is partially obscured by fog + fog + + + + + portion of the image is partially obscured by heavy smoke or dust + heavySmokeOrDust + + + + + image was taken at night + night + + + + + image was taken during rainfall + rain + + + + + image was taken during semi-dark conditions -- twilight conditions + semiDarkness + + + + + portion of the image is obscured by shadow + shadow + + + + + portion of the image is obscured by snow + snow + + + + + the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest + terrainMasking + + + + + + + + methods used to group similar keywords + MD_KeywordTypeCode + + + keyword identifies a branch of instruction or specialized learning + discipline + + + + + keyword identifies a location + place + + + + + keyword identifies the layer(s) of any deposited substance + stratum + + + + + keyword identifies a time period related to the dataset + temporal + + + + + keyword identifies a particular subject or topic + theme + + + + + + + + frequency with which modifications and deletions are made to the data after it is first produced + MD_MaintenanceFrequencyCode + + + data is repeatedly and frequently updated + continual + + + + + data is updated each day + daily + + + + + data is updated on a weekly basis + weekly + + + + + data is updated every two weeks + fortnightly + + + + + data is updated each month + monthly + + + + + + + data is updated every three months + + quarterly + + + + + + data is updated twice each year + biannually + + + + + data is updated every year + annually + + + + + data is updated as deemed necessary + asNeeded + + + + + data is updated in intervals that are uneven in duration + irregular + + + + + there are no plans to update the data + notPlanned + + + + + frequency of maintenance for the data is not known + + unknown + + + + + + + + + method used to write to the medium + MD_MediumFormatCode + + + CoPy In / Out (UNIX file format and command) + cpio + + + + + Tape ARchive + tar + + + + + high sierra file system + highSierra + + + + + information processing volume and file structure of CD-ROM + iso9660 + + + + + rock ridge interchange protocol (UNIX) + iso9660RockRidge + + + + + hierarchical file system (Macintosh) + iso9660AppleHFS + + + + + + + + name of the medium + MD_MediumNameCode + + + read-only optical disk + cdRom + + + + + digital versatile disk + dvd + + + + + digital versatile disk, read only + dvdRom + + + + + 3,5 inch magnetic disk + 3halfInchFloppy + + + + + 5,25 inch magnetic disk + 5quarterInchFloppy + + + + + 7 track magnetic tape + 7trackTape + + + + + 9 track magnetic tape + 9trackType + + + + + 3480 cartridge tape drive + 3480Cartridge + + + + + 3490 cartridge tape drive + 3490Cartridge + + + + + 3580 cartridge tape drive + 3580Cartridge + + + + + 4 millimetre magnetic tape + 4mmCartridgeTape + + + + + 8 millimetre magnetic tape + 8mmCartridgeTape + + + + + 0,25 inch magnetic tape + 1quarterInchCartridgeTape + + + + + half inch cartridge streaming tape drive + digitalLinearTape + + + + + direct computer linkage + onLine + + + + + linkage through a satellite communication system + satellite + + + + + communication through a telephone network + telephoneLink + + + + + pamphlet or leaflet giving descriptive information + hardcopy + + + + + + + + obligation of the element or entity + MD_ObligationCode + + + element is always required + mandatory + + + + + element is not required + optional + + + + + element is required when a specific condition is met + conditional + + + + + + + + point in a pixel corresponding to the Earth location of the pixel + MD_PixelOrientationCode + + + point halfway between the lower left and the upper right of the pixel + center + + + + + the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value + lowerLeft + + + + + next corner counterclockwise from the lower left + lowerRight + + + + + next corner counterclockwise from the lower right + upperRight + + + + + next corner counterclockwise from the upper right + upperLeft + + + + + + + + status of the dataset or progress of a review + MD_ProgressCode + + + production of the data has been completed + completed + + + + + data has been stored in an offline storage facility + historicalArchive + + + + + data is no longer relevant + obsolete + + + + + data is continually being updated + onGoing + + + + + fixed date has been established upon or by which the data will be created or updated + planned + + + + + data needs to be generated or updated + required + + + + + data is currently in the process of being created + underDevelopment + + + + + + + + limitation(s) placed upon the access or use of the data + MD_RestrictionCode + + + exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor + copyright + + + + + government has granted exclusive right to make, sell, use or license an invention or discovery + patent + + + + + produced or sold information awaiting a patent + patentPending + + + + + a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner or manufacturer + trademark + + + + + formal permission to do something + license + + + + + rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity + intellectualPropertyRights + + + + + withheld from general circulation or disclosure + restricted + + + + + limitation not listed + otherRestrictions + + + + + + + + class of information to which the referencing entity applies + MD_ScopeCode + + + information applies to the attribute class + attribute + + + + + information applies to the characteristic of a feature + attributeType + + + + + information applies to the collection hardware class + collectionHardware + + + + + information applies to the collection session + collectionSession + + + + + information applies to the dataset + dataset + + + + + information applies to the series + series + + + + + information applies to non-geographic data + nonGeographicDataset + + + + + information applies to a dimension group + dimensionGroup + + + + + information applies to a feature + feature + + + + + information applies to a feature type + featureType + + + + + information applies to a property type + propertyType + + + + + information applies to a field session + fieldSession + + + + + information applies to a computer program or routine + software + + + + + information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case + service + + + + + information applies to a copy or imitation of an existing or hypothetical object + model + + + + + information applies to a tile, a spatial subset of geographic data + tile + + + + + + + + method used to represent geographic information in the dataset + MD_SpatialRepresentationTypeCode + + + vector data is used to represent geographic data + vector + + + + + grid data is used to represent geographic data + grid + + + + + textual or tabular data is used to represent geographic data + textTable + + + + + triangulated irregular network + tin + + + + + three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images + stereoModel + + + + + scene from a video recording + video + + + + + + + + high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive. + MD_TopicCategoryCode + + + rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock + farming + + + + + flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat + biota + + + + + legal land descriptions. Examples: political and administrative boundaries + boundaries + + + + + processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation + climatologyMeteorologyAtmosphere + + + + + economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas + economy + + + + + height above or below sea level. Examples: altitude, bathymetry, digital elevation models, slope, derived products + elevation + + + + + environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape + environment + + + + + information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth s rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion + geoscientificInformation + + + + + health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services + health + + + + + base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations + imageryBaseMapsEarthCover + + + + + military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection + intelligenceMilitary + + + + + inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrographic charts + inlandWaters + + + + + positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place names + location + + + + + features and characteristics of salt water bodies (excluding inland waters). Examples: tides, tidal waves, coastal information, reefs + oceans + + + + + information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, land ownership + planningCadastre + + + + + characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information + society + + + + + man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers + structure + + + + + means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways + transportation + + + + + energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks + utilitiesCommunication + + + + + + + + degree of complexity of the spatial relationships + MD_TopologyLevelCode + + + geometry objects without any additional structure which describes topology + geometryOnly + + + + + 1-dimensional topological complex -- commonly called chain-node topology + topology1D + + + + + 1-dimensional topological complex that is planar. (A planar graph is a graph that can be drawn in a plane in such a way that no two edges intersect except at a vertex.) + planarGraph + + + + + 2-dimensional topological complex that is planar. (A 2-dimensional topological complex is commonly called full topology in a cartographic 2D environment.) + fullPlanarGraph + + + + + 1-dimensional topological complex that is isomorphic to a subset of a surface. (A geometric complex is isomorphic to a topological complex if their elements are in a one-to-one, dimensional-and boundry-preserving correspondence to one another.) + surfaceGraph + + + + + 2-dimensional topological complex that is isomorphic to a subset of a surface + fullSurfaceGraph + + + + + 3-dimensional topological complex. (A topological complex is a collection of topological primitives that are closed under the boundary operations.) + topology3D + + + + + complete coverage of a 3D Euclidean coordinate space + fullTopology3D + + + + + topological complex without any specified geometric realisation + abstract + + + + + + + + Extension of MD_ScopeCode for the needs of GMX application schemas and in the context of a transfer + MX_ScopeCode + + + + information applies to the attribute class + attribute + + + + + information applies to the characteristic of a feature + attributeType + + + + + information applies to the collection hardware class + collectionHardware + + + + + information applies to the collection session + collectionSession + + + + + information applies to the dataset + dataset + + + + + information applies to the series + series + + + + + information applies to non-geographic data + nonGeographicDataset + + + + + information applies to a dimension group + dimensionGroup + + + + + information applies to a feature + feature + + + + + information applies to a feature type + featureType + + + + + information applies to a property type + propertyType + + + + + information applies to a field session + fieldSession + + + + + information applies to a computer program or routine + software + + + + + information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case + service + + + + + information applies to a copy or imitation of an existing or hypothetical object + model + + + + + information applies to a tile, a spatial subset of geographic data + tile + + + + + + The referencing entity applies to a transfer aggregate which was originally identified as an initiative (DS_Initiative) + initiative + + + + + The referencing entity applies to a transfer aggregate which was originally identified as a stereo mate (DS_StereoMate) + stereomate + + + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor (DS_Sensor) + sensor + + + + + The referencing entity applies to a transfer aggregate which was originally identified as a platform series (DS_PlatformSeries) + platformSeries + + + + + The referencing entity applies to a transfer aggregate which was originally identified as a sensor series (DS_SensorSeries) + sensorSeries + + + + + The referencing entity applies to a transfer aggregate which was originally identified as a production series (DS_ProductionSeries) + productionSeries + + + + + The referencing entity applies to a transfer aggregate which has no existence outside of the transfer context + transferAggregate + + + + + The referencing entity applies to a transfer aggregate which has an existence outside of the transfer context, but which does not pertains to a specific aggregate type. + otherAggregate + + + + + + diff --git a/inst/extdata/schemas/19139/resources/tcCodelists.xml b/inst/extdata/schemas/19139/resources/tcCodelists.xml new file mode 100644 index 00000000..947064fd --- /dev/null +++ b/inst/extdata/schemas/19139/resources/tcCodelists.xml @@ -0,0 +1,63 @@ + + + + + + tcCodelists + + + Codelists used in the type catalogue schema + + + Type catalogues + + + 0.1 + + + 2007-06-14 + + + + + + + specifies aggregation semantics: specifies whether the value of each property is a single value ("noAggregation") which is the default case or if a single property instance has an aggregate value in which case the value specifies the aggregation type ("bag", "set", "sequence"). Note that this value is independent from the cardinality. + TC_AggregationType + + + single value - no aggregation (default) + noAggregation + + + + + aggregation semantics: bag + bag + + + + + aggregation semantics: set + set + + + + + aggregation semantics: sequence (ordered bag) + sequence + + + + + diff --git a/inst/extdata/schemas/19155/.DS_Store b/inst/extdata/schemas/19155/.DS_Store new file mode 100644 index 00000000..0adae428 Binary files /dev/null and b/inst/extdata/schemas/19155/.DS_Store differ diff --git a/inst/extdata/schemas/19155/gpi/.DS_Store b/inst/extdata/schemas/19155/gpi/.DS_Store new file mode 100644 index 00000000..1b81638b Binary files /dev/null and b/inst/extdata/schemas/19155/gpi/.DS_Store differ diff --git a/inst/extdata/schemas/19155/gpi/1.0/gpi.xsd b/inst/extdata/schemas/19155/gpi/1.0/gpi.xsd new file mode 100644 index 00000000..39ecb492 --- /dev/null +++ b/inst/extdata/schemas/19155/gpi/1.0/gpi.xsd @@ -0,0 +1,13 @@ + + + + + gpi.xsd is the XML Schema document to be referenced by XML documents containing XML elements + in the gpi 1.0 namespace or by XML Schema documents importing the gpi 1.0 namespace. This XML schema + includes (indirectly) all the implemented concepts of the gpi namespace, but it does not contain + the declaration of any types. + + + + diff --git a/inst/extdata/schemas/19155/gpi/1.0/gpi.zip b/inst/extdata/schemas/19155/gpi/1.0/gpi.zip new file mode 100644 index 00000000..f7cc3683 Binary files /dev/null and b/inst/extdata/schemas/19155/gpi/1.0/gpi.zip differ diff --git a/inst/extdata/schemas/19155/gpi/1.0/placeIdentifier.xsd b/inst/extdata/schemas/19155/gpi/1.0/placeIdentifier.xsd new file mode 100644 index 00000000..0c6abd93 --- /dev/null +++ b/inst/extdata/schemas/19155/gpi/1.0/placeIdentifier.xsd @@ -0,0 +1,70 @@ + + + + + + + + + the attribute "name" is mapped to "gml:identifier". + + + + + + + + + + + + + + + + + + + + + + gpi:PI + gpi:linkedPI + + This element is the extension in part2 + + + + + + + + + + + + + + + + + + + + + + + + + + gpi:PI + + + + + + + + + diff --git a/inst/extdata/schemas/19155/gpi/1.0/point.xml b/inst/extdata/schemas/19155/gpi/1.0/point.xml new file mode 100644 index 00000000..47d3d684 --- /dev/null +++ b/inst/extdata/schemas/19155/gpi/1.0/point.xml @@ -0,0 +1,7 @@ + + + + + + 35.674393, 139.756522 + diff --git a/inst/extdata/schemas/19155/gpi/1.0/referenceSystem.xml b/inst/extdata/schemas/19155/gpi/1.0/referenceSystem.xml new file mode 100644 index 00000000..be194002 --- /dev/null +++ b/inst/extdata/schemas/19155/gpi/1.0/referenceSystem.xml @@ -0,0 +1,16 @@ + + + park-registry.net + + + park-registry.net + Hibiya Park + + + + Yoyogi Park + + + + + diff --git a/inst/extdata/schemas/19155/gpi/1.0/sampleGMLApplicationSchema.xml b/inst/extdata/schemas/19155/gpi/1.0/sampleGMLApplicationSchema.xml new file mode 100644 index 00000000..039ba99b --- /dev/null +++ b/inst/extdata/schemas/19155/gpi/1.0/sampleGMLApplicationSchema.xml @@ -0,0 +1,53 @@ + + + + + + Hibiya Park + + + + + + Hibiya Restaurant + +81-3-1234-5678 + + + + 35.674393, 139.756522 + + + + + + + + + + + + + + + + + + 35.673824 139.756163 + + + + + 35.6733163 139.7577562 + 35.6746498 139.7587111 + 35.6766972 139.7551579 + 35.6723144 139.7530255 + 35.6710583 139.7559275 + 35.6733163 139.7577562 + + + + diff --git a/inst/extdata/schemas/19155/gpi/1.0/sampleGMLApplicationSchema.xsd b/inst/extdata/schemas/19155/gpi/1.0/sampleGMLApplicationSchema.xsd new file mode 100644 index 00000000..f0a74fba --- /dev/null +++ b/inst/extdata/schemas/19155/gpi/1.0/sampleGMLApplicationSchema.xsd @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gpi:PI + + + + + + + + + + + + + + + + + gpi:PI + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/.DS_Store b/inst/extdata/schemas/19157/-2/.DS_Store new file mode 100644 index 00000000..befb14a4 Binary files /dev/null and b/inst/extdata/schemas/19157/-2/.DS_Store differ diff --git a/inst/extdata/schemas/19157/-2/dqc/.DS_Store b/inst/extdata/schemas/19157/-2/dqc/.DS_Store new file mode 100644 index 00000000..1b81638b Binary files /dev/null and b/inst/extdata/schemas/19157/-2/dqc/.DS_Store differ diff --git a/inst/extdata/schemas/19157/-2/dqc/1.0/.DS_Store b/inst/extdata/schemas/19157/-2/dqc/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19157/-2/dqc/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19157/-2/dqc/1.0/abstract.xsd b/inst/extdata/schemas/19157/-2/dqc/1.0/abstract.xsd new file mode 100644 index 00000000..7c9f4f70 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/dqc/1.0/abstract.xsd @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/dqc/1.0/dqc.xsd b/inst/extdata/schemas/19157/-2/dqc/1.0/dqc.xsd new file mode 100644 index 00000000..cc1d2478 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/dqc/1.0/dqc.xsd @@ -0,0 +1,12 @@ + + + + + diff --git a/inst/extdata/schemas/19157/-2/dqm/.DS_Store b/inst/extdata/schemas/19157/-2/dqm/.DS_Store new file mode 100644 index 00000000..01e8ff08 Binary files /dev/null and b/inst/extdata/schemas/19157/-2/dqm/.DS_Store differ diff --git a/inst/extdata/schemas/19157/-2/dqm/1.0/.DS_Store b/inst/extdata/schemas/19157/-2/dqm/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19157/-2/dqm/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19157/-2/dqm/1.0/codelists.html b/inst/extdata/schemas/19157/-2/dqm/1.0/codelists.html new file mode 100644 index 00000000..6fa193ed --- /dev/null +++ b/inst/extdata/schemas/19157/-2/dqm/1.0/codelists.html @@ -0,0 +1,57 @@ + + + + Codelists from the metadata for Data Quality Measures (dqm) Namespace + + +

ISO 19115-3 Codelist Report

+

Codelists from the metadata for Data Quality Measures (dqm) Namespace

+ + + + + + + + + + + + + + + + +
Scope Codelists from the metadata for Data Quality Measures (dqm) Namespace
Field of Application ISO TC211 Metadata Standards
Version (Date) 1.0 ()
+

DQM_ValueStructure ( DQM_ValueStructure ):

Description: structure for reporting a complex data quality result + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
DQM_ValueStructure_bag finite, unordered collection of related items (objects or values) that may be repeated (ISO 19107:2003)
DQM_ValueStructure_set unordered collection of related items (objects or values) with no repetition (ISO 19107:2003)
DQM_ValueStructure_sequence finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003)
DQM_ValueStructure_table an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999)
DQM_ValueStructure_matrix rectangular array of numbers (ISO/TS 19129:2009)
DQM_ValueStructure_coverage feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005)
top
Stylesheet: CT_CodelistHTML.xsl Version: 2015-04-17 + diff --git a/inst/extdata/schemas/19157/-2/dqm/1.0/codelists.xml b/inst/extdata/schemas/19157/-2/dqm/1.0/codelists.xml new file mode 100644 index 00000000..8d114f80 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/dqm/1.0/codelists.xml @@ -0,0 +1,116 @@ + + + + + + Codelists from the metadata for Data Quality Measures (dqm) Namespace + + + Codelists from the metadata for Data Quality Measures (dqm) Namespace + + + ISO TC211 Metadata Standards + + + 1.0 + + + 2015-04-18 + + + + + eng + + + UTF-8 + + + + + + + + + DQM_ValueStructure + + + DQM_ValueStructure + + + structure for reporting a complex data quality result + + + structure for reporting a complex data quality result + + + + + bag + + + finite, unordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + + + + + + + set + + + unordered collection of related items (objects or values) with no repetition (ISO 19107:2003) + + + + + + + sequence + + + finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + + + + + + + table + + + an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999) + + + + + + + matrix + + + rectangular array of numbers (ISO/TS 19129:2009) + + + + + + + coverage + + + feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005) + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/dqm/1.0/dqm.sch b/inst/extdata/schemas/19157/-2/dqm/1.0/dqm.sch new file mode 100644 index 00000000..e0ce6735 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/dqm/1.0/dqm.sch @@ -0,0 +1,80 @@ + + + + + + + + + + + The DQM_Measure.elementName + shall be a TypeName of a data quality element. + + elementName is + "". + + + + DQM_Measure.elementName shall be a TypeName of a data quality element + + + + + + + + + + + + + + The valueType + shall be one of the data types defined in ISO/TS 19103. + + valueType is + "". + + + + DQM_Measure.valueType shall be one of the data types defined in ISO/TS 19103 + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/dqm/1.0/dqm.xsd b/inst/extdata/schemas/19157/-2/dqm/1.0/dqm.xsd new file mode 100644 index 00000000..9bec7cf6 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/dqm/1.0/dqm.xsd @@ -0,0 +1,7 @@ + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/dqm/1.0/qualityMeasures.xsd b/inst/extdata/schemas/19157/-2/dqm/1.0/qualityMeasures.xsd new file mode 100644 index 00000000..ea247f66 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/dqm/1.0/qualityMeasures.xsd @@ -0,0 +1,294 @@ + + + + + + + + + + data quality basic measure + + + + + + + + + name of the data quality basic measure applied to the data + + + + + definition of the data quality basic measure + + + + + illustration of the use of a data quality measure + + + + + value type for the result of the basic measure (shall be one of the data types defined in ISO/TS 19103:2005) + + + + + + + + + + + + + + + + data quality measure description + + + + + + + + + text description + + + + + illustration + + + + + + + + + + + + + + + + Data quality measure + + + + + + + + + value uniquely identifying the measure within a namespace + + + + + name of the data quality measure applied to the data + + + + + another recognized name, an abbreviation or a short name for the same data quality measure + + + + + name of the data quality element for which quality is reported + + + + + definition of the fundamental concept for the data quality measure + + + + + description of the data quality measure, including all formulae and/or illustrations needed to establish the result of applying the measure + + + + + value type for reporting a data quality result (shall be one of the data types defined in ISO/TS 19103:2005) + + + + + structure for reporting a complex data quality result + + + + + illustration of the use of a data quality measure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + data quality parameter + + + + + + + + + name of the data quality parameter + + + + + definition of the data quality parameter + + + + + description of the data quality parameter + + + + + value type of the data quality parameter (shall be one of the data types defined in ISO/TS 19103:2005) + + + + + structure of the data quality parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + reference to the source of the data quality measure + + + + + + + + + reference to the source + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/.DS_Store b/inst/extdata/schemas/19157/-2/mdq/.DS_Store new file mode 100644 index 00000000..01e8ff08 Binary files /dev/null and b/inst/extdata/schemas/19157/-2/mdq/.DS_Store differ diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/.DS_Store b/inst/extdata/schemas/19157/-2/mdq/1.0/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19157/-2/mdq/1.0/.DS_Store differ diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/codelists.html b/inst/extdata/schemas/19157/-2/mdq/1.0/codelists.html new file mode 100644 index 00000000..6cb5693e --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/codelists.html @@ -0,0 +1,45 @@ + + + + Codelists from the Metadata for Data Quality (mdq) Namespace + + +

ISO 19115-3 Codelist Report

+

Codelists from the Metadata for Data Quality (mdq) Namespace

+ + + + + + + + + + + + + + + + +
Scope Codelists from the Metadata for Data Quality (mdq) Namespace
Field of Application ISO TC211 Metadata Standards
Version (Date) 1.0 ()
+

DQ_EvaluationMethodTypeCode ( DQ_EvaluationMethodTypeCode ):

Description: description of the evaluation method and procedure applied + + + + + + + + + + + + + + + + +
EntryDefinition
DQ_EvaluationMethodTypeCode_directInternal method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated
DQ_EvaluationMethodTypeCode_directExternal method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required
DQ_EvaluationMethodTypeCode_indirect method of evaluating the quality of a dataset based on external knowledge
top
Stylesheet: CT_CodelistHTML.xsl Version: 2015-04-17 + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/codelists.xml b/inst/extdata/schemas/19157/-2/mdq/1.0/codelists.xml new file mode 100644 index 00000000..82acb4e5 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/codelists.xml @@ -0,0 +1,86 @@ + + + + + + Codelists from the Metadata for Data Quality (mdq) Namespace + + + Codelists from the Metadata for Data Quality (mdq) Namespace + + + ISO TC211 Metadata Standards + + + 1.0 + + + 2017-09-01 + + + + + eng + + + UTF-8 + + + + + + + + + DQ_EvaluationMethodTypeCode + + + DQ_EvaluationMethodTypeCode + + + description of the evaluation method and procedure applied + + + description of the evaluation method and procedure applied + + + + + directInternal + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated + + + + + + + directExternal + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required + + + + + + + indirect + + + method of evaluating the quality of a dataset based on external knowledge + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityElement.xsd b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityElement.xsd new file mode 100644 index 00000000..7b2841b0 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityElement.xsd @@ -0,0 +1,545 @@ + + + + + + + + + + closeness of reported coordinate values to values accepted as or being true + + + + + + + + + + + + + + + + + + + correctness of the temporal references of an item (reporting of error in time measurement) + + + + + + + + + + + + + + + + + + + presence and absence of features, their attributes and their relationships + + + + + + + + + + + + + + + + + + + excess data present in the dataset, as described by the scope + + + + + + + + + + + + + + + + + + + data absent from the dataset, as described by the scope + + + + + + + + + + + + + + + + + + + adherence to rules of the conceptual schema + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + quality information for the data specified by a data quality scope + + + + + + + + + the specific data to which the data quality information applies + + + + + + + + + + + + + + + + + + adherence of values to the value domains + + + + + + + + + + + + + + + + + + + aspect of quantitative quality information + + + + + + + + + Clause in the standaloneQualityReport where this data quality element or any related data quality element (original results in case of derivation or aggregation) is described + + + + + + + + + + + + + + + + + + + + + degree to which data is stored in accordance with the physical structure of the dataset, as described by the scope + + + + + + + + + + + + + + + + + + + closeness of gridded data position values to values accepted as or being true + + + + + + + + + + + + + + + + + + + degree of adherence to logical rules of data structure, attribution and relationships (data structure can be conceptual, logical or physical) + + + + + + + + + + + + + + + + + + + reference to the measure used + + + + + + + + + Identifier of the measure, value uniquely identifying the measure within a namespace + + + + + name of the test applied to the data + + + + + description of the measure + + + + + + + + + + + + + + + + correctness of non-quantitative attributes + + + + + + + + + + + + + + + + + + + accuracy of the position of features + + + + + + + + + + + + + + + + + + + accuracy of quantitative attributes + + + + + + + + + + + + + + + + + + + closeness of the relative positions of features in the scope to their respective relative positions accepted as or being true + + + + + + + + + + + + + + + + + + + reference to an external standalone quality report + + + + + + + + + reference to the associated standalone quality report + + + + + abstract for the associated standalone quality report + + + + + + + + + + + + + + + + + correctness of ordered events or sequences, if reported + + + + + + + + + + + + + + + + + + + accuracy of the temporal attributes and temporal relationships of features + + + + + + + + + + + + + + + + + + + validity of data specified by the scope with respect to time + + + + + + + + + + + + + + + + + + + accuracy of quantitative attributes and the correctness of non-quantitative attributes and of the classifications of features and their relationships + + + + + + + + + + + + + + + + + + + comparison of the classes assigned to features or their attributes to a universe of discourse + + + + + + + + + + + + + + + + + + + correctness of the explicitly encoded topological characteristics of the dataset as described by the scope + + + + + + + + + + + + + + + + + + + degree of adherence of a dataset to a specific set of requirements + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityEvaluation.xsd b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityEvaluation.xsd new file mode 100644 index 00000000..53fac0c3 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityEvaluation.xsd @@ -0,0 +1,182 @@ + + + Added by Erling Onstein, 2010-03-11 to follow up the Paris meeting 2010-03-04-05. + + + + + + + + Aggregation or derivation method + + + + + + + + + + + + + + + + + + + data evaluation method + + + + + + + + + + + + + + + + + + + Description of the evaluation method and procedure applied + + + + + + + + + date or range of dates on which a data quality measure was applied + + + + + description of the evaluation method + + + + + reference to the procedure information + + + + + Information on documents which are referenced in developing and applying a data quality evaluation method + + + + + type of method used to evaluate quality of the data + + + + + + + + + + + + + + + + type of method for evaluating an identified data quality measure + + + + + + + + + + + full inspection + + + + + + + + + + + + + + + + + + + indirect evaluation + + + + + + + + + information on which data are used as sources in deductive evaluation method + + + + + + + + + + + + + + + + sample based inspection + + + + + + + + + information of the type of sampling scheme and description of the sampling procedure + + + + + information of how lots are defined + + + + + information on how many samples on average are extracted for inspection from each lot of population + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityImagery.xsd b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityImagery.xsd new file mode 100644 index 00000000..52a472aa --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityImagery.xsd @@ -0,0 +1,63 @@ + + + + + + + + + + Description: Result of a data quality measure organising the measured values as a coverage +shortName: CoverageResult + + + + + + + + + Description: method used to spatially represent the coverage result +shortName: spaRepType + + + + + + + + + + + + + + + + + + + + Implement MX_File in this package to avoid circular dependencies required by import of 'Metadata for file transfer' package + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityResult.xsd b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityResult.xsd new file mode 100644 index 00000000..7c0e2555 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/dataQualityResult.xsd @@ -0,0 +1,135 @@ + + + + + + + + + + information about the outcome of evaluating the obtained value (or set of values) against a specified acceptable conformance quality level + + + + + + + + + citation of data product specification or user requirement against which data is being evaluated + + + + + explanation of the meaning of conformance for this result + + + + + indication of the conformance result where 0 = fail and 1 = pass + + + + + + + + + + + + + + + + data quality descriptive result + + + + + + + + + textual expression of the descriptive result + + + + + + + + + + + + + + + + the values or information about the value(s) (or set of values) obtained from applying a data quality measure + + + + + + + + + quantitative value or values, content determined by the evaluation procedure used, accordingly with the value type and valueStructure defined for the measure + + + + + value unit for reporting a data quality result + + + + + value type for reporting a data quality result, depends of the implementation + + + + + + + + + + + + + + + + generalization of more specific result classes + + + + + + + + + date when the result was generated + + + + + scope of the result + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/index.html b/inst/extdata/schemas/19157/-2/mdq/1.0/index.html new file mode 100644 index 00000000..ecf17af1 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/index.html @@ -0,0 +1,96 @@ + + + + Metadata for Data Quality (MDQ) Version: 1.0 + + +

Metadata for Data Quality (MDQ) Version: 1.0

Description

+

MDQ 1.0 is an XML Schema implementation derived from ISO ISO 19157, Geographic Information - Data Quality, Clause 6.4. It includes elements for describing the quality of resources. The XML schema was encoded using the rules described in ISO/TS 19139:2007, Clause 8 and implementation approach from ISO/TS19115-3, Clause + 8. +

+

Sample XML files for mdq 1.0

mdq_valid.xml mdq_invalid.xml mdq.xml +

CodeLists for mdq 1.0

codelists.html codelists.xml +

XML Namespace for mdq 1.0

+

The namespace URI for mdq 1.0 is http://standards.iso.org/iso/19157/-2/mdq/1.0. +

+

XML Schema for mdq 1.0

+

mdq.xsd is the XML Schema document to be referenced by XML documents containing XML elements + in the mdq 1.0 namespace or by XML Schema documents importing the mdq 1.0 namespace. This XML schema includes (indirectly) all the implemented concepts of + the mdq namespace, but it + does not contain the declaration of any types. +

+

NOTE: The XML Schema for mdq 1.0 are available here. A zip archive including all the XML Schema Implementations defined in ISO/TS 19115-3 + and related standards is also available.

+

Related XML Schema for mdq 1.0

+

dataQualityElement.xsd implements the UML conceptual schema defined in ISO 19157, Geographic Information - Data Quality, Clause 6.4. It was created using the encoding rules defined in ISO 19118, ISO + 19139, and the implementation approach described in ISO 19115-3 and contains the following + classes (codeLists are bold): DQ_AbsoluteExternalPositionalAccuracy, DQ_AccuracyOfATimeMeasurement, AbstractDQ_Completeness, DQ_CompletenessCommission, DQ_CompletenessOmission, DQ_ConceptualConsistency, DQ_DataInspection, DQ_DataQuality, DQ_DomainConsistency, AbstractDQ_Element, DQ_FormatConsistency, DQ_GriddedDataPositionalAccuracy, AbstractDQ_LogicalConsistency, DQ_MeasureReference, DQ_NonQuantitativeAttributeCorrectness, AbstractDQ_PositionalAccuracy, DQ_QuantitativeAttributeAccuracy, DQ_RelativeInternalPositionalAccuracy, DQ_StandaloneQualityReportInformation, DQ_TemporalConsistency, AbstractDQ_TemporalQuality, DQ_TemporalValidity, AbstractDQ_ThematicAccuracy, DQ_ThematicClassificationCorrectness, DQ_TopologicalConsistency, and DQ_UsabilityElement +

+

dataQualityEvaluation.xsd implements the UML conceptual schema defined in ISO 19157, Geographic Information - Data Quality, Clause 6.4. It was created using the encoding rules defined in ISO 19118, ISO + 19139, and the implementation approach described in ISO 19115-3 and contains the following + classes (codeLists are bold): DQ_AggregationDerivation, AbstractDQ_DataEvaluation, DQ_EvaluationMethod, DQ_EvaluationMethodTypeCode, DQ_FullInspection, DQ_IndirectEvaluation, and DQ_SampleBasedInspection +

+

dataQualityImagery.xsd implements the UML conceptual schema defined in ISO 19157, Geographic Information - Data Quality, Clause 6.4. It was created using the encoding rules defined in ISO 19118, ISO + 19139, and the implementation approach described in ISO 19115-3 and contains the following + classes (codeLists are bold): QE_CoverageResult, and QualityResultFile +

+

dataQualityResult.xsd implements the UML conceptual schema defined in ISO 19157, Geographic Information - Data Quality, Clause 6.4. It was created using the encoding rules defined in ISO 19118, ISO + 19139, and the implementation approach described in ISO 19115-3 and contains the following + classes (codeLists are bold): DQ_ConformanceResult, DQ_DescriptiveResult, DQ_QuantitativeResult, and AbstractDQ_Result +

+

metaquality.xsd implements the UML conceptual schema defined in ISO 19157, Geographic Information - Data Quality, Clause 6.4. It was created using the encoding rules defined in ISO 19118, ISO + 19139, and the implementation approach described in ISO 19115-3 and contains the following + classes (codeLists are bold): DQ_Confidence, DQ_Homogeneity, AbstractDQ_Metaquality, and DQ_Representativity +

+

Related XML Namespaces for mdq 1.0

The mdq 1.0 namespace imports these other namespaces: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameStandard PrefixNamespace LocationSchema Location
Data Quality Common Classesdqchttp://standards.iso.org/iso/19157/-2/dqc/1.0../../../../19157/-2/dqc/1.0/dqc.xsd
Geographic COmmongcohttp://standards.iso.org/iso/19115/-3/gco/1.0../../../../19115/-3/gco/1.0/gco.xsd
Geospatial Common eXtensiongcxhttp://standards.iso.org/iso/19115/-3/gcx/1.0../../../../19115/-3/gcx/1.0/gcx.xsd
Geographic Markup Wrappersgmwhttp://standards.iso.org/iso/19115/-3/gmw/1.0../../../../19115/-3/gmw/1.0/gmw.xsd
Metadata Common Classesmcchttp://standards.iso.org/iso/19115/-3/mcc/1.0../../../../19115/-3/mcc/1.0/mcc.xsd
Metadata for Resource Distributionmrdhttp://standards.iso.org/iso/19115/-3/mrd/1.0../../../../19115/-3/mrd/1.0/mrd.xsd
+

Schematron Validation Rules for mdq 1.0

Schematron rules for validating instance documents of the mdq 1.0 namespace are in mdq.sch. Other schematron rule sets that are + required for a complete validation are: dqc.sch, gcx.sch, mcc.sch, gco.sch, dqc.sch, mcc.sch, gco.sch, gmw.sch, mcc.sch, gco.sch, gco.sch, mcc.sch, gco.sch, gcx.sch, mcc.sch, and mrd.sch +

Working Versions

When revisions to these schema become necessary, they will be managed in the ISO TC211 Git Repository. +
+

Written by writeHTMLFiles Version: 2015-06-06 at 2018-03-10T10:56:57.622-07:00

+ + \ No newline at end of file diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.png b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.png new file mode 100644 index 00000000..961223e6 Binary files /dev/null and b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.png differ diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.sch b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.sch new file mode 100644 index 00000000..27cd85bd --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.sch @@ -0,0 +1,49 @@ + + + + + + + + + + + The DQ_MeasureReference must include a measureIdentification or a nameOfmeasure. + + measureIdentifier is + "" + and nameOfmeasure + "" + . + + + + DQ_MeasureReference MUST include a measureIdentification or a nameOfmeasure + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.xml b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.xml new file mode 100644 index 00000000..d38734e5 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.xml @@ -0,0 +1,130 @@ + + + + + + + + pointOfContact + + + + + Organisation Name + + + + + + + + + 2015-04-03T16:00:00 + + + creation + + + + + + + + + Sample Metadata for Minimal Conformance Class + + + + + This sample record has all required elements for minimal ISO 19115:2013 metadata + + + + + + + + + + metadata + + + + + Data Quality Metadata + + + + + + + + + + + A report on the validation of a metadata record + + + + + The metadata were tested for validity + + + + + + + + + + + http://standards.iso.org/iso/19157/-2/mdq/1.0/conf/data-quality-xml/schema-valid + + + + + Use ISO 19157-2 to verify that instances of XML elements from the namespace http://standards.iso.org/iso/19157/-2/mdq/1.0 are well-formed and valid. + + + + + + + + + Geographic Information - Data Quality + + + ISO 19157:2013 + + + + + http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=32575 + + + + + + + true + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.xsd b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.xsd new file mode 100644 index 00000000..3b192492 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.xsd @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.zip b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.zip new file mode 100644 index 00000000..9974e57c Binary files /dev/null and b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq.zip differ diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/mdq_invalid.xml b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq_invalid.xml new file mode 100644 index 00000000..07c337c2 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq_invalid.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + This DQ_MeasureReference has no measureIdentification or nameOfMeasure + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/mdq_valid.xml b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq_valid.xml new file mode 100644 index 00000000..62f38117 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/mdq_valid.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + measureIdentification/code + + + + + + + + + + + + + + + + nameOfMeasure.CharacterString + + + + + + + + + + + + + + + + measureIdentification/code + + + + + nameOfMeasure.CharacterString + + + + + + + diff --git a/inst/extdata/schemas/19157/-2/mdq/1.0/metaquality.xsd b/inst/extdata/schemas/19157/-2/mdq/1.0/metaquality.xsd new file mode 100644 index 00000000..9c1fe712 --- /dev/null +++ b/inst/extdata/schemas/19157/-2/mdq/1.0/metaquality.xsd @@ -0,0 +1,83 @@ + + + + + + + trustworthiness of a data quality result + + + + + + + + + + + + + + + + + + + expected or tested uniformity of the results obtained for a data quality evaluation + + + + + + + + + + + + + + + + + + + information about the reliability of data quality results + + + + + + + + + + + + + + + + + + + + + degree to which the sample used has produced a result which is representative of the data within the data quality scope + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19157/.DS_Store b/inst/extdata/schemas/19157/.DS_Store new file mode 100644 index 00000000..abd58984 Binary files /dev/null and b/inst/extdata/schemas/19157/.DS_Store differ diff --git a/inst/extdata/schemas/19157/resources/.DS_Store b/inst/extdata/schemas/19157/resources/.DS_Store new file mode 100644 index 00000000..cc2e4b22 Binary files /dev/null and b/inst/extdata/schemas/19157/resources/.DS_Store differ diff --git a/inst/extdata/schemas/19157/resources/Codelists/.DS_Store b/inst/extdata/schemas/19157/resources/Codelists/.DS_Store new file mode 100644 index 00000000..724a5637 Binary files /dev/null and b/inst/extdata/schemas/19157/resources/Codelists/.DS_Store differ diff --git a/inst/extdata/schemas/19157/resources/Codelists/cat/.DS_Store b/inst/extdata/schemas/19157/resources/Codelists/cat/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/inst/extdata/schemas/19157/resources/Codelists/cat/.DS_Store differ diff --git a/inst/extdata/schemas/19157/resources/Codelists/cat/codelists.html b/inst/extdata/schemas/19157/resources/Codelists/cat/codelists.html new file mode 100644 index 00000000..1beea67a --- /dev/null +++ b/inst/extdata/schemas/19157/resources/Codelists/cat/codelists.html @@ -0,0 +1,123 @@ +

Codelist Catalog

+

This report describes the ISO TC211 codelist catalogs, the codelists they contain, and the values and definitions of the codes.

+

+ Please contact Ted Habermann if you have questions or suggestions. +

+

Catalog

Name: 19157-2 Codelists
Scope: Codelists for description of data quality metadata datasets compliant with ISO/TC 211 19115-1.
Field of application: ISO 19157-2 data quality metadata
Version: 1.0
Date: 2017-09-10
Number of CodeLists: 2
Number of items: 9 +
+

Codelists

+ DQM_ValueStructure + : +

Description: + structure for reporting a complex data quality result +
CodeSpace: http://standards.iso.org/iso/19157/-2/dqm/1.0
Number of items: 6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EntryDefinition
+ bag + + + finite, unordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + +
+ set + + + unordered collection of related items (objects or values) with no repetition (ISO 19107:2003) + +
+ sequence + + + finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + +
+ table + + + an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999) + +
+ matrix + + + rectangular array of numbers (ISO/TS 19129:2009) + +
+ coverage + + + feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal + domain (ISO 19123:2005) + +
top

+ DQ_EvaluationMethodTypeCode + : +

Description: + description of the evaluation method and procedure applied +
CodeSpace: http://standards.iso.org/iso/19157/-2/mdq/1.0
Number of items: 3 + + + + + + + + + + + + + + + + + +
EntryDefinition
+ directInternal + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is + internal to the dataset being evaluated + +
+ directExternal + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external + to the dataset being evaluated is required + +
+ indirect + + + method of evaluating the quality of a dataset based on external knowledge + +
top
Stylesheet: CT_CodelistHTML.xsl Version: 2017-09-10 \ No newline at end of file diff --git a/inst/extdata/schemas/19157/resources/Codelists/cat/codelists.xml b/inst/extdata/schemas/19157/resources/Codelists/cat/codelists.xml new file mode 100644 index 00000000..a49b77a6 --- /dev/null +++ b/inst/extdata/schemas/19157/resources/Codelists/cat/codelists.xml @@ -0,0 +1,201 @@ + + + + + 19157-2 Codelists + + + Codelists for description of data quality metadata datasets compliant with ISO/TC 211 19115-1. + + + ISO 19157-2 data quality metadata + + + 1.0 + + + 2017-09-10 + + + + + + DQM_ValueStructure + + + DQM_ValueStructure + + + structure for reporting a complex data quality result + + + structure for reporting a complex data quality result + + + + + bag + + + bag + + + finite, unordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + + + finite, unordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + + + + + + + set + + + set + + + unordered collection of related items (objects or values) with no repetition (ISO 19107:2003) + + + unordered collection of related items (objects or values) with no repetition (ISO 19107:2003) + + + + + + + sequence + + + sequence + + + finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + + + finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + + + + + + + table + + + table + + + an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999) + + + an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999) + + + + + + + matrix + + + matrix + + + rectangular array of numbers (ISO/TS 19129:2009) + + + rectangular array of numbers (ISO/TS 19129:2009) + + + + + + + coverage + + + coverage + + + feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005) + + + feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005) + + + + + + + + + + DQ_EvaluationMethodTypeCode + + + DQ_EvaluationMethodTypeCode + + + description of the evaluation method and procedure applied + + + description of the evaluation method and procedure applied + + + + + directInternal + + + directInternal + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated + + + + + + + directExternal + + + directExternal + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required + + + + + + + indirect + + + indirect + + + method of evaluating the quality of a dataset based on external knowledge + + + method of evaluating the quality of a dataset based on external knowledge + + + + + + diff --git a/inst/extdata/schemas/19157/resources/Codelists/gml/DQM_ValueStructure.xml b/inst/extdata/schemas/19157/resources/Codelists/gml/DQM_ValueStructure.xml new file mode 100644 index 00000000..84455ed2 --- /dev/null +++ b/inst/extdata/schemas/19157/resources/Codelists/gml/DQM_ValueStructure.xml @@ -0,0 +1,41 @@ + + + structure for reporting a complex data quality result + DQM_ValueStructure + + + finite, unordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + bag + + + + + unordered collection of related items (objects or values) with no repetition (ISO 19107:2003) + set + + + + + finite, ordered collection of related items (objects or values) that may be repeated (ISO 19107:2003) + sequence + + + + + an arrangement of data in which each item may be identified by means of arguments or keys (ISO/IEC 2382-4:1999) + table + + + + + rectangular array of numbers (ISO/TS 19129:2009) + matrix + + + + + feature that acts as a function to return values from its range for any direct position within its spatial, temporal or spatiotemporal domain (ISO 19123:2005) + coverage + + + diff --git a/inst/extdata/schemas/19157/resources/Codelists/gml/DQ_EvaluationMethodTypeCode.xml b/inst/extdata/schemas/19157/resources/Codelists/gml/DQ_EvaluationMethodTypeCode.xml new file mode 100644 index 00000000..cb952d07 --- /dev/null +++ b/inst/extdata/schemas/19157/resources/Codelists/gml/DQ_EvaluationMethodTypeCode.xml @@ -0,0 +1,23 @@ + + + type of method for evaluating an identified data quality measure + DQ_EvaluationMethodTypeCode + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated + directInternal + + + + + method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required + directExternal + + + + + method of evaluating the quality of a dataset based on external knowledge + indirect + + + diff --git a/inst/extdata/schemas/19165/gpm/1.0/examples/localSchema.xml b/inst/extdata/schemas/19165/gpm/1.0/examples/localSchema.xml new file mode 100644 index 00000000..27429f1e --- /dev/null +++ b/inst/extdata/schemas/19165/gpm/1.0/examples/localSchema.xml @@ -0,0 +1,1983 @@ + + + + + + + of5mv60sd0f279110s1r100ca5 + + + + + + + ca + + + + + + + + + + + + + + + + + originator + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + +34 93 567 15 00 + + + voice + + + + + + + +34 93 567 15 67 + + + facsimile + + + + + + + Parc de Montjuïc + + + Barcelona + + + E-08038 + + + centre.atencio@icc.cat + + + + + + + http://www.icc.cat + + + + + + + + + + + + + + + + 2013-08-01T00:00:00 + + + creation + + + + + + + ISO 19115:2003/Cor.1:2006 Geographic Information - Metadata + + + IS + + + + + + + ESPECIFICACIONS TÈCNIQUES de l'Ortofoto de Catalunya 1:5000 (OF-5M) v6.1 + + + + + 2012-12-31T00:00:00 + + + revisió 1.0 + + + + + 6.1 + + + + + creador + + + + + Institut Cartogràfic de Catalunya + + + + + + + + + + + 2 + + + + + + + + 4777 + + + 0.5 + + + + + + + + + + 7050 + + + 0.5 + + + + + + + + true + + + false + + + + 394259.75, 4620499.25 + + + + + 397784.25, 4618111.25 + + + + centre + + + La dimensió columna de la imatge correspon a l'eix X (Est) del sistema de referència de coordenades i el seu valor creix d'oest a est. La dimensió fila correspon a l'eix Y (Nord) i el seu valor creix de nord a sud. + + + + + + + + + EPSG:25831 - ETRS89 / UTM zone 31N + + + + + + + + + + + Ortofoto de Catalunya 1:5 000 - Full "Monistrolet" (279110) + + + + + 1987-10-01T00:00:00 + + + + + + + + + + 1998-08-01T00:00:00 + + + + + + + + + + 2002-12-01T00:00:00 + + + + + + + + + + 2005-06-01T00:00:00 + + + + + + + + + + 2007-05-01T00:00:00 + + + + + + + + + + 2009-07-01T00:00:00 + + + + + + + + + + 2010-12-01T00:00:00 + + + + + + + + + + 2011-09-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + 10 + + + + + 279110 + + + + + + + + + + + + + + + Cintoteca + + + + + Cuidant Delacinto + + + + + + + +34935671500 + + + + + + + Responsable de la cintoteca + + + + + + + + + + + GPM_of5mv60sd0f279110s1r100ca5 + + + Codi que identifica unívocament i, per tant, permet localitzar el recurs un cop emmagatzemat a la cintoteca. + + + + + + + originator + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + +34 93 567 15 00 + + + voice + + + + + + + +34 93 567 15 67 + + + facsimile + + + + + + + Parc de Montjuïc + + + Barcelona + + + E-08038 + + + centre.atencio@icc.cat + + + + + + + http://www.icc.cat + + + + + + + + + + + + + + + + + + + Ortofoto de Catalunya 1:5 000 (OF-5M) v6.0 + + + 6.0 + + + + + Les especificacions de l'OF-5M v6.0 estan descrites al document "Especificacions tècniques de l'Ortofoto de Catalunya 1:5 000 (OF-5M) v6.0", que es lliura amb les dades i també es pot descarregar del Web de l'ICC. + + + + + L'ortofoto és un document cartogràfic que consisteix en una imatge aèria vertical que ha estat rectificada de tal manera que es manté una escala uniforme a tota la superfície de la imatge. Constitueix una representació geomètrica a escala de la superfície terrestre. S'utilitzen ortofotos de la sèrie Ortofoto de Catalunya 1:2 500 per obtenir l'ortofoto 1:5 000 mitjançant tècniques de generalització. Aquesta sèrie es complementa amb la sèrie de l'Ortofoto infraroja de Catalunya 1:5 000 de la mateixa època, que aporta informació de la zona infraroja de l'espectre electromagnètic. + + + El motiu principal de la seva producció és disposar del recobriment ortofotogràfic de Catalunya, que proporciona a l'usuari la capacitat d'interpretar el territori. Aquesta capacitat d'anàlisi es pot centrar en temes urbanístics, ambientals, etc. + + + + + + + + + + + + + 5000 + + + + + + + imageryBaseMapsEarthCover + + + + + + + 1.729167 + + + 1.770833 + + + 41.708333 + + + 41.729167 + + + + + + + + + + 2012-06-01 + + + + + 2012-05-01 + + + + + + + + + + + + of5mv60sd0f279110s1r100ca5-ql.jpeg + + + Imatge mostra de l'aparença del fitxer + + + + + + + + + + + + + + + + Can Servitge + + + les Cisternes de Monistrolet + + + Muralla de la Noguera + + + Pont Nou + + + Riera de Rajadell + + + Monistrolet + + + Rajadell + + + Sant Salvador de Guardiola + + + Bages + + + Catalunya + + + Espanya + + + Europa + + + + + + + + + + 2012 + + + 2012 + + + + + + + + + + Ortoimatge + + + Imatge + + + Fotografia aèria + + + + + + + + + + + + + + + + + + + + + + + + + La llicència d'ús de les dades elaborades per l'ICC, en qualsevol suport, s'entén atorgada únicament al sol·licitant, de manera personal, revocable, puntual, no exclusiva i intransferible, condicionada en tot moment al compliment de les clàusules que es detallen a l'apartat "Condicions d'ús" al Web de l'ICC. El sol·licitant no adquireix cap títol, dret o interès sobre la informació cedida, podent-la destinar únicament al seu ús personal o al de l'empresa a la que representa, per aquelles activitats directament relacionades amb el seu objecte social. + + + + + + + ca + + + + + + La unitat de distribució espacial (superfície de terreny coberta per cada full) de les ortofotos coincideix amb el mínim rectangle contenidor del full que correspon a la subdivisió de 8x8 fulls del Mapa Topográfico Nacional 1:50 000 (MTN) més una orla de 25 píxels. Les coordenades de les cantonades de la subdivisió estan definides en el sistema de referència ETRS89 segons el Reial Decret 1071/2007 i expressades en el sistema de referència de coordenades de les dades. L'extensió horitzontal de les dades es descriu en aquestes metadades en coordenades geogràfiques amb la longitud i latitud mínima i màxima de les cantonades del full derivat del MTN. És, per tant, un àmbit geogràfic aproximat. La sèrie recobreix el territori de Catalunya. L'extensió temporal es refereix a les dates del vol o vols a partir dels que s'ha elaborat l'ortofoto. Durant el període de transició establert al Reial Decret 1071/2007 per passar del sistema de referència ED50 al sistema ETRS89, l'ortofoto estarà disponible en ambdós sistemes. Fitxer d'imatge MrSID amb factor de compressió 10. + + + + + + + Color RGB + + + + + + + + + + + + 1 + + + + + + Vermell. Límits espectrals calculats segons FWHM. + + + 676.38 + + + 600.94 + + + + nm + + + + 8 + + + 623.82 + + + 256 + + + + + + + + + 2 + + + + + + Verd. Límits espectrals calculats segons FWHM. + + + 595.98 + + + 513.92 + + + + nm + + + + 8 + + + 543.27 + + + 256 + + + + + + + + + 3 + + + + + + Blau. Límits espectrals calculats segons FWHM. + + + 513.87 + + + 429.17 + + + + nm + + + + 8 + + + 473.80 + + + 256 + + + + + + + + + + + + + + + owner + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + +34 93 567 15 00 + + + voice + + + + + + + +34 93 567 15 67 + + + facsimile + + + + + + + Parc de Montjuïc + + + Barcelona + + + E-08038 + + + centre.atencio@icc.cat + + + + + + + http://www.icc.cat + + + + + + + + + + + + + + + + Informació digital gratuïta; còpia en CD i DVD segons tarifes vigents. + + + El producte es pot obtenir per via telemàtica tal i com s'indica a l'apartat "Opcions de transferència" d'aquestes metadades i també es pot adquirir als centres d'atenció al públic especificats al Web de l'ICC. A les especificacions tècniques i al mateix Web es pot trobar més informació referent a altres formats i suports disponibles. + + + + + + + + + MrSID + + + + + Generation 3 (MG3) + + + + + MrSID + + + + + + + + + ESPECIFICACIONS PER AL FORMAT "MrSID" (MrSID) de la Ortofoto de Catalunya 1:5 000 (OF-5M) + + + + + 2011-06-30T00:00:00 + + + revisió 1 + + + + + Implementació de format 1 + + + + + creador + + + + + Institut Cartogràfic de Catalunya + + + + + + + + + + + + + Full + + + + + http://www.icc.cat + + + http + + + Consulta i descàrrega de mapes + + + Descàrrega de dades per fulls mitjançant recerca directa sobre un fons cartogràfic continu on es pot triar el lloc, el producte i el format. + + + + + + + + + + + + + + + + + + + + + + + + + + + L'ortofoto s'ha creat a partir de la generalització d'ortofotos a escala 1:2 500, de 25 cm de mida de píxel. Les diferències més significatives respecte a la versió anterior són les que es deriven de les millores de la darrera versió de l'Ortofoto de Catalunya 1:2 500. Els paràmetres de qualitat general del producte estan descrits a les especificacions tècniques que es troben al Web de l'ICC. + + + + + + + + + + + + Producció Ortofoto (OF) + + + Manual de Processos ICGC + + + 9.0 + + + 2014-02-04T00:00:00 + + + + + autor + + + + + Institut Cartogràfic de Catalunya + + + + + + + + + + + Generalització, mitjançant l'agregació de píxels, de les ortofotos digitals en color amb una mida de píxel de 25 cm de costat a imatges amb píxels de 50 cm de costat. + + + + + Ortofoto de 25 cm de mida de píxel realitzada emprant les imatges digitals en color de la càmera mètrica digital Z/I Imaging DMC i rectificada geomètricament a partir del model d'elevacions del terreny, que prové de la informació altimètrica de la Base topogràfica de Catalunya 1:5 000 v2.0 i les seves actualitzacions. Posteriorment es realitza el mosaic i les millores radiomètriques per obtenir el full definitiu. + + + + + + + 2500 + + + + + + + + + Ortofoto de Catalunya 1:2 500 (OF-25C) v3.3 - Full 279111/279110/278110/278109/280111/280110/279109/280109/278111 + + + + + 2013-07-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + 4 + + + + + owner + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + + + + Data de les fotografies aèries: 2012-06, 2012-05. + + + + + + + + + + + Control de qualitat. Es verifiquen els paràmetres de qualitat del producte establerts a les especificacions tècniques (exactitud posicional, consistència i completesa). + + + + + + + + + + + Document de recomanacions de simbolització + + + + + Localització del document + + + + + + + + + + + + + + + + + + + + Base topogràfica de Catalunya 1:5 000 - Full "Monistrolet" (279110) + + + + + bt5mv20mm1f279110c1r040 + + + Identificador del recurs + + + + + + + referència + + + campanya + + + + + Metadades del full "Monistrolet" (279110) + + + + + bt5mv20sh0f279110c1r040ca5 + + + Identificador del topogràfic a la cintoteca + + + + + + + bt5mv20sh0f279110c1r040ca5.xml + + + + + + + font + + + + + Derivació del topogràfic a partir de la ortofoto. + + + + + + + + + + Maria Pla + + + + + + + +34935671500 + + + + + + + Responsable de producció + + + + + + + + + + + + + + + Ortofoto de Catalunya 1:5 000 - Full "Manresa" (280110) + + + + + of5mv20mm1f280110c1r040 + + + Identificador del recurs + + + + + + + sèrie + + + col·lecció + + + + + Metadades del full "Manresa" (280110) + + + + + of5mv60sd0f280110s1r100ca5 + + + Identificador de la ortofoto a la cintoteca + + + + + + + of5mv60sd0f280110s1r100ca5.xml + + + + + + + germà + + + + + + + administratiu + + + + + 2015-12-31T00:00:00 + + + propera actualització + + + + + Les dades tindran valor administratiu fins a la propera versió de les mateixes, és a dir, fins al proper vol i generació d'ortofotos. + + + + + Les ortofotos serveixen com a informació de base per a nombrosos procediments administratius. + + + important + + + + + + + + + legal i fiscal + + + + + 2015-12-31T00:00:00 + + + propera actualització + + + + + El valor legal i fiscal de les ortofotos s'entén efectiu mentre dura el valor administratiu de les mateixes. + + + + + Les ortofotos poden servir com a document provatori en qüestions legals i fiscals. + + + testimonial + + + + + + + + + informatiu i històric + + + + + 9000-12-31T00:00:00 + + + + + + + + El valor informatiu i històric de les ortofotos no té data de caducitat. + + + + + La ortofoto és un testimoni històric de l'estat del territori en la data en què fou presa. + + + testimonial + + + + + + + + + Aquest és el paquet de preservació de la ortofoto of5mv60sd0f279110s1r100ca5. + + + + + + + Responsable de l'emmagatzemament + + + + + Cuidant Delacinto + + + + + + + +34935671500 + + + + + + + Cap de la cintoteca + + + + + + + + + + + Fitxer ZIP + + + 15 + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + 0123456789 + + + + + + + P5Y0M0DT00H00M00S + + + + + + + ZIP File Format Specification + + + 6.3.3 + + + 2012-09-01T00:00:00 + + + + + propietari + + + + + PKWARE Inc. + + + + + + + + + http://www.pkware.com/documents/casestudies/APPNOTE.TXT + + + + + + + + + + Cal disposar de programari específic per a descomprimir els fitxers: PKWARE, PKZIP, etc. + + + + + + + + + + + + + + + + + ICGC-Cartoteca + + + + + Carme Montaner + + + + + + + +34935671500 + + + + + + + Cap de la Cartoteca + + + + + + + + + + + GPM_of5mv60sd0f279110s1r100ca5 + + + + + + + 2019-12-31T00:00:00 + + + Límit per a la preservació + + + + + + + of5mv60sd0f279110s1r100ca5.xml + + + + + + + Extensible Markup Language (XML) 1.0 + + + 2008-11-26T00:00:00 + + + + + creador + + + + + World Wide Web Consortium W3C + + + + + + + + + http://www.w3.org/TR/REC-xml/ + + + + + + + + + 0.006 + + + Metadades + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.jpg + + + + + + + JPEG File Interchange Format + + + 1.02 + + + 1992-09-01T00:00:00 + + + + + Autor + + + + + Eric Hamilton + + + + + + + + + http://www.jpeg.org/public/jfif.pdf + + + + + + + + + 11 + + + Dades a distribuir + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + + + + + of5mv61esp_01ca.pdf + + + + + + + PDF Reference + + + Adobe® Portable Document Format sixth edition + + + 1.7 + + + 2006-11-30T00:00:00 + + + + + Creador + + + + + Adobe Systems Incorporated + + + + + + + + + http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf + + + + + + + + + 0.083 + + + Especificacions tècniques + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + + + + + OFC-MP_v090.pdf + + + + + + + PDF Reference + + + Adobe® Portable Document Format sixth edition + + + 1.7 + + + 2006-11-30T00:00:00 + + + + + Creador + + + + + Adobe Systems Incorporated + + + + + + + + + http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf + + + + + + + + + 3 + + + Manual de processos de producció + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + + + + + + + Correcció geomètrica d'imatge Landsat + + + + 2013-12-31 + + + + La ortofoto està desenfocada. + + + + + usuari + + + + + Universitat Autònoma de Barcelona + + + + + Xavier Pons + + + + + + + +34935814804 + + + + + + + Catedràtic de Geografia + + + + + + + + + Esperem solucionar això en la propera versió. + + + + + Cadena de pre-procesamiento estándar para las imágenes Landsat del Plan Nacional de Teledetección + + + 2011-10-06T00:00:00 + + + + + autors + + + + + S. Hantson, E. Chuvieco, X. Pons, C. Domingo, C. Cea, G. Moré, +J. Cristobal, J. J. Peces y J. A. Tejeiro + + + + + + + + + Revista de Teledetección + + + 36 + + + 51-61 + + + + + 1988-8740 + + + + + http://www.aet.org.es/revistas/revista36/Numero36_05.pdf + + + + + + + + + + + + download + + + + + gratuït + + + + + + + GetCoverage + + + get + + + + + http://www.icc.cat/vissir3/ + + + + + + + + + + + Descàrregues per mes + + + + + + + 10 + + + + visites + + + + + + + + + + + + + + + + + El fitxer s'ha transformat al nou datum de treball ETRS89. + + + + 2014-10-07 + + + + + + responsable + + + + + Carme Montaner + + + + + + + +34935671500 + + + + + + + Responsable de la cartoteca + + + + + + + + + + diff --git a/inst/extdata/schemas/19165/gpm/1.0/examples/of5mv60sd0f279110s1r100ca5-gpm.xml b/inst/extdata/schemas/19165/gpm/1.0/examples/of5mv60sd0f279110s1r100ca5-gpm.xml new file mode 100644 index 00000000..7dde377e --- /dev/null +++ b/inst/extdata/schemas/19165/gpm/1.0/examples/of5mv60sd0f279110s1r100ca5-gpm.xml @@ -0,0 +1,1983 @@ + + + + + + + of5mv60sd0f279110s1r100ca5 + + + + + + + ca + + + + + + + + + + + + + + + + + originator + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + +34 93 567 15 00 + + + voice + + + + + + + +34 93 567 15 67 + + + facsimile + + + + + + + Parc de Montjuïc + + + Barcelona + + + E-08038 + + + centre.atencio@icc.cat + + + + + + + http://www.icc.cat + + + + + + + + + + + + + + + + 2013-08-01T00:00:00 + + + creation + + + + + + + ISO 19115:2003/Cor.1:2006 Geographic Information - Metadata + + + IS + + + + + + + ESPECIFICACIONS TÈCNIQUES de l'Ortofoto de Catalunya 1:5000 (OF-5M) v6.1 + + + + + 2012-12-31T00:00:00 + + + revisió 1.0 + + + + + 6.1 + + + + + creador + + + + + Institut Cartogràfic de Catalunya + + + + + + + + + + + 2 + + + + + + + + 4777 + + + 0.5 + + + + + + + + + + 7050 + + + 0.5 + + + + + + + + true + + + false + + + + 394259.75, 4620499.25 + + + + + 397784.25, 4618111.25 + + + + centre + + + La dimensió columna de la imatge correspon a l'eix X (Est) del sistema de referència de coordenades i el seu valor creix d'oest a est. La dimensió fila correspon a l'eix Y (Nord) i el seu valor creix de nord a sud. + + + + + + + + + EPSG:25831 - ETRS89 / UTM zone 31N + + + + + + + + + + + Ortofoto de Catalunya 1:5 000 - Full "Monistrolet" (279110) + + + + + 1987-10-01T00:00:00 + + + + + + + + + + 1998-08-01T00:00:00 + + + + + + + + + + 2002-12-01T00:00:00 + + + + + + + + + + 2005-06-01T00:00:00 + + + + + + + + + + 2007-05-01T00:00:00 + + + + + + + + + + 2009-07-01T00:00:00 + + + + + + + + + + 2010-12-01T00:00:00 + + + + + + + + + + 2011-09-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + 10 + + + + + 279110 + + + + + + + + + + + + + + + Cintoteca + + + + + Cuidant Delacinto + + + + + + + +34935671500 + + + + + + + Responsable de la cintoteca + + + + + + + + + + + GPM_of5mv60sd0f279110s1r100ca5 + + + Codi que identifica unívocament i, per tant, permet localitzar el recurs un cop emmagatzemat a la cintoteca. + + + + + + + originator + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + +34 93 567 15 00 + + + voice + + + + + + + +34 93 567 15 67 + + + facsimile + + + + + + + Parc de Montjuïc + + + Barcelona + + + E-08038 + + + centre.atencio@icc.cat + + + + + + + http://www.icc.cat + + + + + + + + + + + + + + + + + + + Ortofoto de Catalunya 1:5 000 (OF-5M) v6.0 + + + 6.0 + + + + + Les especificacions de l'OF-5M v6.0 estan descrites al document "Especificacions tècniques de l'Ortofoto de Catalunya 1:5 000 (OF-5M) v6.0", que es lliura amb les dades i també es pot descarregar del Web de l'ICC. + + + + + L'ortofoto és un document cartogràfic que consisteix en una imatge aèria vertical que ha estat rectificada de tal manera que es manté una escala uniforme a tota la superfície de la imatge. Constitueix una representació geomètrica a escala de la superfície terrestre. S'utilitzen ortofotos de la sèrie Ortofoto de Catalunya 1:2 500 per obtenir l'ortofoto 1:5 000 mitjançant tècniques de generalització. Aquesta sèrie es complementa amb la sèrie de l'Ortofoto infraroja de Catalunya 1:5 000 de la mateixa època, que aporta informació de la zona infraroja de l'espectre electromagnètic. + + + El motiu principal de la seva producció és disposar del recobriment ortofotogràfic de Catalunya, que proporciona a l'usuari la capacitat d'interpretar el territori. Aquesta capacitat d'anàlisi es pot centrar en temes urbanístics, ambientals, etc. + + + + + + + + + + + + + 5000 + + + + + + + imageryBaseMapsEarthCover + + + + + + + 1.729167 + + + 1.770833 + + + 41.708333 + + + 41.729167 + + + + + + + + + + 2012-06-01 + + + + + 2012-05-01 + + + + + + + + + + + + of5mv60sd0f279110s1r100ca5-ql.jpeg + + + Imatge mostra de l'aparença del fitxer + + + + + + + + + + + + + + + + Can Servitge + + + les Cisternes de Monistrolet + + + Muralla de la Noguera + + + Pont Nou + + + Riera de Rajadell + + + Monistrolet + + + Rajadell + + + Sant Salvador de Guardiola + + + Bages + + + Catalunya + + + Espanya + + + Europa + + + + + + + + + + 2012 + + + 2012 + + + + + + + + + + Ortoimatge + + + Imatge + + + Fotografia aèria + + + + + + + + + + + + + + + + + + + + + + + + + La llicència d'ús de les dades elaborades per l'ICC, en qualsevol suport, s'entén atorgada únicament al sol·licitant, de manera personal, revocable, puntual, no exclusiva i intransferible, condicionada en tot moment al compliment de les clàusules que es detallen a l'apartat "Condicions d'ús" al Web de l'ICC. El sol·licitant no adquireix cap títol, dret o interès sobre la informació cedida, podent-la destinar únicament al seu ús personal o al de l'empresa a la que representa, per aquelles activitats directament relacionades amb el seu objecte social. + + + + + + + ca + + + + + + La unitat de distribució espacial (superfície de terreny coberta per cada full) de les ortofotos coincideix amb el mínim rectangle contenidor del full que correspon a la subdivisió de 8x8 fulls del Mapa Topográfico Nacional 1:50 000 (MTN) més una orla de 25 píxels. Les coordenades de les cantonades de la subdivisió estan definides en el sistema de referència ETRS89 segons el Reial Decret 1071/2007 i expressades en el sistema de referència de coordenades de les dades. L'extensió horitzontal de les dades es descriu en aquestes metadades en coordenades geogràfiques amb la longitud i latitud mínima i màxima de les cantonades del full derivat del MTN. És, per tant, un àmbit geogràfic aproximat. La sèrie recobreix el territori de Catalunya. L'extensió temporal es refereix a les dates del vol o vols a partir dels que s'ha elaborat l'ortofoto. Durant el període de transició establert al Reial Decret 1071/2007 per passar del sistema de referència ED50 al sistema ETRS89, l'ortofoto estarà disponible en ambdós sistemes. Fitxer d'imatge MrSID amb factor de compressió 10. + + + + + + + Color RGB + + + + + + + + + + + + 1 + + + + + + Vermell. Límits espectrals calculats segons FWHM. + + + 676.38 + + + 600.94 + + + + nm + + + + 8 + + + 623.82 + + + 256 + + + + + + + + + 2 + + + + + + Verd. Límits espectrals calculats segons FWHM. + + + 595.98 + + + 513.92 + + + + nm + + + + 8 + + + 543.27 + + + 256 + + + + + + + + + 3 + + + + + + Blau. Límits espectrals calculats segons FWHM. + + + 513.87 + + + 429.17 + + + + nm + + + + 8 + + + 473.80 + + + 256 + + + + + + + + + + + + + + + owner + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + +34 93 567 15 00 + + + voice + + + + + + + +34 93 567 15 67 + + + facsimile + + + + + + + Parc de Montjuïc + + + Barcelona + + + E-08038 + + + centre.atencio@icc.cat + + + + + + + http://www.icc.cat + + + + + + + + + + + + + + + + Informació digital gratuïta; còpia en CD i DVD segons tarifes vigents. + + + El producte es pot obtenir per via telemàtica tal i com s'indica a l'apartat "Opcions de transferència" d'aquestes metadades i també es pot adquirir als centres d'atenció al públic especificats al Web de l'ICC. A les especificacions tècniques i al mateix Web es pot trobar més informació referent a altres formats i suports disponibles. + + + + + + + + + MrSID + + + + + Generation 3 (MG3) + + + + + MrSID + + + + + + + + + ESPECIFICACIONS PER AL FORMAT "MrSID" (MrSID) de la Ortofoto de Catalunya 1:5 000 (OF-5M) + + + + + 2011-06-30T00:00:00 + + + revisió 1 + + + + + Implementació de format 1 + + + + + creador + + + + + Institut Cartogràfic de Catalunya + + + + + + + + + + + + + Full + + + + + http://www.icc.cat + + + http + + + Consulta i descàrrega de mapes + + + Descàrrega de dades per fulls mitjançant recerca directa sobre un fons cartogràfic continu on es pot triar el lloc, el producte i el format. + + + + + + + + + + + + + + + + + + + + + + + + + + + L'ortofoto s'ha creat a partir de la generalització d'ortofotos a escala 1:2 500, de 25 cm de mida de píxel. Les diferències més significatives respecte a la versió anterior són les que es deriven de les millores de la darrera versió de l'Ortofoto de Catalunya 1:2 500. Els paràmetres de qualitat general del producte estan descrits a les especificacions tècniques que es troben al Web de l'ICC. + + + + + + + + + + + + Producció Ortofoto (OF) + + + Manual de Processos ICGC + + + 9.0 + + + 2014-02-04T00:00:00 + + + + + autor + + + + + Institut Cartogràfic de Catalunya + + + + + + + + + + + Generalització, mitjançant l'agregació de píxels, de les ortofotos digitals en color amb una mida de píxel de 25 cm de costat a imatges amb píxels de 50 cm de costat. + + + + + Ortofoto de 25 cm de mida de píxel realitzada emprant les imatges digitals en color de la càmera mètrica digital Z/I Imaging DMC i rectificada geomètricament a partir del model d'elevacions del terreny, que prové de la informació altimètrica de la Base topogràfica de Catalunya 1:5 000 v2.0 i les seves actualitzacions. Posteriorment es realitza el mosaic i les millores radiomètriques per obtenir el full definitiu. + + + + + + + 2500 + + + + + + + + + Ortofoto de Catalunya 1:2 500 (OF-25C) v3.3 - Full 279111/279110/278110/278109/280111/280110/279109/280109/278111 + + + + + 2013-07-01T00:00:00 + + + + + + + + + + 2013-07-01T00:00:00 + + + + + + + + 4 + + + + + owner + + + + + Institut Cartogràfic de Catalunya (ICC) + + + + + + + + + + Data de les fotografies aèries: 2012-06, 2012-05. + + + + + + + + + + + Control de qualitat. Es verifiquen els paràmetres de qualitat del producte establerts a les especificacions tècniques (exactitud posicional, consistència i completesa). + + + + + + + + + + + Document de recomanacions de simbolització + + + + + Localització del document + + + + + + + + + + + + + + + + + + + + Base topogràfica de Catalunya 1:5 000 - Full "Monistrolet" (279110) + + + + + bt5mv20mm1f279110c1r040 + + + Identificador del recurs + + + + + + + referència + + + campanya + + + + + Metadades del full "Monistrolet" (279110) + + + + + bt5mv20sh0f279110c1r040ca5 + + + Identificador del topogràfic a la cintoteca + + + + + + + bt5mv20sh0f279110c1r040ca5.xml + + + + + + + font + + + + + Derivació del topogràfic a partir de la ortofoto. + + + + + + + + + + Maria Pla + + + + + + + +34935671500 + + + + + + + Responsable de producció + + + + + + + + + + + + + + + Ortofoto de Catalunya 1:5 000 - Full "Manresa" (280110) + + + + + of5mv20mm1f280110c1r040 + + + Identificador del recurs + + + + + + + sèrie + + + col·lecció + + + + + Metadades del full "Manresa" (280110) + + + + + of5mv60sd0f280110s1r100ca5 + + + Identificador de la ortofoto a la cintoteca + + + + + + + of5mv60sd0f280110s1r100ca5.xml + + + + + + + germà + + + + + + + administratiu + + + + + 2015-12-31T00:00:00 + + + propera actualització + + + + + Les dades tindran valor administratiu fins a la propera versió de les mateixes, és a dir, fins al proper vol i generació d'ortofotos. + + + + + Les ortofotos serveixen com a informació de base per a nombrosos procediments administratius. + + + important + + + + + + + + + legal i fiscal + + + + + 2015-12-31T00:00:00 + + + propera actualització + + + + + El valor legal i fiscal de les ortofotos s'entén efectiu mentre dura el valor administratiu de les mateixes. + + + + + Les ortofotos poden servir com a document provatori en qüestions legals i fiscals. + + + testimonial + + + + + + + + + informatiu i històric + + + + + 9000-12-31T00:00:00 + + + + + + + + El valor informatiu i històric de les ortofotos no té data de caducitat. + + + + + La ortofoto és un testimoni històric de l'estat del territori en la data en què fou presa. + + + testimonial + + + + + + + + + Aquest és el paquet de preservació de la ortofoto of5mv60sd0f279110s1r100ca5. + + + + + + + Responsable de l'emmagatzemament + + + + + Cuidant Delacinto + + + + + + + +34935671500 + + + + + + + Cap de la cintoteca + + + + + + + + + + + Fitxer ZIP + + + 15 + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + 0123456789 + + + + + + + P5Y0M0DT00H00M00S + + + + + + + ZIP File Format Specification + + + 6.3.3 + + + 2012-09-01T00:00:00 + + + + + propietari + + + + + PKWARE Inc. + + + + + + + + + http://www.pkware.com/documents/casestudies/APPNOTE.TXT + + + + + + + + + + Cal disposar de programari específic per a descomprimir els fitxers: PKWARE, PKZIP, etc. + + + + + + + + + + + + + + + + + ICGC-Cartoteca + + + + + Carme Montaner + + + + + + + +34935671500 + + + + + + + Cap de la Cartoteca + + + + + + + + + + + GPM_of5mv60sd0f279110s1r100ca5 + + + + + + + 2019-12-31T00:00:00 + + + Límit per a la preservació + + + + + + + of5mv60sd0f279110s1r100ca5.xml + + + + + + + Extensible Markup Language (XML) 1.0 + + + 2008-11-26T00:00:00 + + + + + creador + + + + + World Wide Web Consortium W3C + + + + + + + + + http://www.w3.org/TR/REC-xml/ + + + + + + + + + 0.006 + + + Metadades + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.jpg + + + + + + + JPEG File Interchange Format + + + 1.02 + + + 1992-09-01T00:00:00 + + + + + Autor + + + + + Eric Hamilton + + + + + + + + + http://www.jpeg.org/public/jfif.pdf + + + + + + + + + 11 + + + Dades a distribuir + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + + + + + of5mv61esp_01ca.pdf + + + + + + + PDF Reference + + + Adobe® Portable Document Format sixth edition + + + 1.7 + + + 2006-11-30T00:00:00 + + + + + Creador + + + + + Adobe Systems Incorporated + + + + + + + + + http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf + + + + + + + + + 0.083 + + + Especificacions tècniques + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + + + + + OFC-MP_v090.pdf + + + + + + + PDF Reference + + + Adobe® Portable Document Format sixth edition + + + 1.7 + + + 2006-11-30T00:00:00 + + + + + Creador + + + + + Adobe Systems Incorporated + + + + + + + + + http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf + + + + + + + + + 3 + + + Manual de processos de producció + + + Drets de propietat intel·lectual + + + + + + + of5mv60sd0f279110s1r100ca5.zip + + + + + + + + + + + + + Correcció geomètrica d'imatge Landsat + + + + 2013-12-31 + + + + La ortofoto està desenfocada. + + + + + usuari + + + + + Universitat Autònoma de Barcelona + + + + + Xavier Pons + + + + + + + +34935814804 + + + + + + + Catedràtic de Geografia + + + + + + + + + Esperem solucionar això en la propera versió. + + + + + Cadena de pre-procesamiento estándar para las imágenes Landsat del Plan Nacional de Teledetección + + + 2011-10-06T00:00:00 + + + + + autors + + + + + S. Hantson, E. Chuvieco, X. Pons, C. Domingo, C. Cea, G. Moré, +J. Cristobal, J. J. Peces y J. A. Tejeiro + + + + + + + + + Revista de Teledetección + + + 36 + + + 51-61 + + + + + 1988-8740 + + + + + http://www.aet.org.es/revistas/revista36/Numero36_05.pdf + + + + + + + + + + + + download + + + + + gratuït + + + + + + + GetCoverage + + + get + + + + + http://www.icc.cat/vissir3/ + + + + + + + + + + + Descàrregues per mes + + + + + + + 10 + + + + visites + + + + + + + + + + + + + + + + + El fitxer s'ha transformat al nou datum de treball ETRS89. + + + + 2014-10-07 + + + + + + responsable + + + + + Carme Montaner + + + + + + + +34935671500 + + + + + + + Responsable de la cartoteca + + + + + + + + + + diff --git a/inst/extdata/schemas/19165/gpm/1.0/geospatialPreservationMetadata.xsd b/inst/extdata/schemas/19165/gpm/1.0/geospatialPreservationMetadata.xsd new file mode 100644 index 00000000..bf31d291 --- /dev/null +++ b/inst/extdata/schemas/19165/gpm/1.0/geospatialPreservationMetadata.xsd @@ -0,0 +1,376 @@ + + + + + + + + + + + + + + + + + + + + + + + Who is storing the package + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Use onLine and offLine when this packageElement is stored in another package of a collection. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/inst/extdata/schemas/19165/gpm/1.0/gpm.xsd b/inst/extdata/schemas/19165/gpm/1.0/gpm.xsd new file mode 100644 index 00000000..dc3d19ab --- /dev/null +++ b/inst/extdata/schemas/19165/gpm/1.0/gpm.xsd @@ -0,0 +1,8 @@ + + + + Namespace for XML elements <font color="#1f497d">for geospatial preservation metadata (ISO 19165)</font>. + + + diff --git a/man/GMLAbstractCRS.Rd b/man/GMLAbstractCRS.Rd index 051142a8..efdcdd96 100644 --- a/man/GMLAbstractCRS.Rd +++ b/man/GMLAbstractCRS.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractCoordinateOperation.Rd b/man/GMLAbstractCoordinateOperation.Rd index 8ab08539..b6afa2e6 100644 --- a/man/GMLAbstractCoordinateOperation.Rd +++ b/man/GMLAbstractCoordinateOperation.Rd @@ -72,6 +72,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -92,6 +93,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractCoordinateSystem.Rd b/man/GMLAbstractCoordinateSystem.Rd index 91a22695..4f8f6381 100644 --- a/man/GMLAbstractCoordinateSystem.Rd +++ b/man/GMLAbstractCoordinateSystem.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractCoverage.Rd b/man/GMLAbstractCoverage.Rd index 43e2da9b..8e2a3232 100644 --- a/man/GMLAbstractCoverage.Rd +++ b/man/GMLAbstractCoverage.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLAbstractCurve.Rd b/man/GMLAbstractCurve.Rd index 7cb9754d..99aff068 100644 --- a/man/GMLAbstractCurve.Rd +++ b/man/GMLAbstractCurve.Rd @@ -47,6 +47,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -67,6 +68,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractDiscreteCoverage.Rd b/man/GMLAbstractDiscreteCoverage.Rd index f88f3fb8..c9f8b433 100644 --- a/man/GMLAbstractDiscreteCoverage.Rd +++ b/man/GMLAbstractDiscreteCoverage.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLAbstractFeature.Rd b/man/GMLAbstractFeature.Rd index 4c731a0b..ba47196a 100644 --- a/man/GMLAbstractFeature.Rd +++ b/man/GMLAbstractFeature.Rd @@ -53,6 +53,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLAbstractGML.Rd b/man/GMLAbstractGML.Rd index 0a3a176a..b5786704 100644 --- a/man/GMLAbstractGML.Rd +++ b/man/GMLAbstractGML.Rd @@ -64,6 +64,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -84,6 +85,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLAbstractGeneralConversion.Rd b/man/GMLAbstractGeneralConversion.Rd index 59674c0a..4b72301a 100644 --- a/man/GMLAbstractGeneralConversion.Rd +++ b/man/GMLAbstractGeneralConversion.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractGeneralDerivedCRS.Rd b/man/GMLAbstractGeneralDerivedCRS.Rd index d6c6794c..9955f705 100644 --- a/man/GMLAbstractGeneralDerivedCRS.Rd +++ b/man/GMLAbstractGeneralDerivedCRS.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractGeneralOperationParameter.Rd b/man/GMLAbstractGeneralOperationParameter.Rd index 29f7a68a..337442fb 100644 --- a/man/GMLAbstractGeneralOperationParameter.Rd +++ b/man/GMLAbstractGeneralOperationParameter.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractGeneralParameterValue.Rd b/man/GMLAbstractGeneralParameterValue.Rd index dd33baba..90155f2a 100644 --- a/man/GMLAbstractGeneralParameterValue.Rd +++ b/man/GMLAbstractGeneralParameterValue.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLAbstractGeometricAggregate.Rd b/man/GMLAbstractGeometricAggregate.Rd index 6f18705f..809bea1a 100644 --- a/man/GMLAbstractGeometricAggregate.Rd +++ b/man/GMLAbstractGeometricAggregate.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractGeometricPrimitive.Rd b/man/GMLAbstractGeometricPrimitive.Rd index 4364657f..61155e74 100644 --- a/man/GMLAbstractGeometricPrimitive.Rd +++ b/man/GMLAbstractGeometricPrimitive.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractGeometry.Rd b/man/GMLAbstractGeometry.Rd index 1bc6fedb..64290f69 100644 --- a/man/GMLAbstractGeometry.Rd +++ b/man/GMLAbstractGeometry.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractImplicitGeometry.Rd b/man/GMLAbstractImplicitGeometry.Rd index 0bc65e12..7d4c4b63 100644 --- a/man/GMLAbstractImplicitGeometry.Rd +++ b/man/GMLAbstractImplicitGeometry.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractObject.Rd b/man/GMLAbstractObject.Rd index d11467f2..4566bdbf 100644 --- a/man/GMLAbstractObject.Rd +++ b/man/GMLAbstractObject.Rd @@ -44,6 +44,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -64,6 +65,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLAbstractReferenceableGrid.Rd b/man/GMLAbstractReferenceableGrid.Rd index 8d64ad56..dfb7168d 100644 --- a/man/GMLAbstractReferenceableGrid.Rd +++ b/man/GMLAbstractReferenceableGrid.Rd @@ -44,6 +44,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -64,6 +65,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractRing.Rd b/man/GMLAbstractRing.Rd index 4109fd90..2458cc4a 100644 --- a/man/GMLAbstractRing.Rd +++ b/man/GMLAbstractRing.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractObject$initialize()
  • diff --git a/man/GMLAbstractSingleCRS.Rd b/man/GMLAbstractSingleCRS.Rd index 65265dce..bbe2e936 100644 --- a/man/GMLAbstractSingleCRS.Rd +++ b/man/GMLAbstractSingleCRS.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractSingleOperation.Rd b/man/GMLAbstractSingleOperation.Rd index 561e6eb6..a2de6315 100644 --- a/man/GMLAbstractSingleOperation.Rd +++ b/man/GMLAbstractSingleOperation.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractSurface.Rd b/man/GMLAbstractSurface.Rd index d7d993ca..06e5ed7f 100644 --- a/man/GMLAbstractSurface.Rd +++ b/man/GMLAbstractSurface.Rd @@ -47,6 +47,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -67,6 +68,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractTimeGeometricPrimitive.Rd b/man/GMLAbstractTimeGeometricPrimitive.Rd index a1eddd2d..4291e785 100644 --- a/man/GMLAbstractTimeGeometricPrimitive.Rd +++ b/man/GMLAbstractTimeGeometricPrimitive.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractTimeObject.Rd b/man/GMLAbstractTimeObject.Rd index b1e79b40..2feef58d 100644 --- a/man/GMLAbstractTimeObject.Rd +++ b/man/GMLAbstractTimeObject.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAbstractTimePrimitive.Rd b/man/GMLAbstractTimePrimitive.Rd index c5119e53..eacb9366 100644 --- a/man/GMLAbstractTimePrimitive.Rd +++ b/man/GMLAbstractTimePrimitive.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLAffineCS.Rd b/man/GMLAffineCS.Rd index 5afb6329..db013b7a 100644 --- a/man/GMLAffineCS.Rd +++ b/man/GMLAffineCS.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLBaseUnit.Rd b/man/GMLBaseUnit.Rd index 40338760..21df1d78 100644 --- a/man/GMLBaseUnit.Rd +++ b/man/GMLBaseUnit.Rd @@ -66,6 +66,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -86,6 +87,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLCOVAbstractCoverage.Rd b/man/GMLCOVAbstractCoverage.Rd index dbac9e08..270ed6ed 100644 --- a/man/GMLCOVAbstractCoverage.Rd +++ b/man/GMLCOVAbstractCoverage.Rd @@ -53,6 +53,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLCOVExtension.Rd b/man/GMLCOVExtension.Rd index e9fc0d27..40d70384 100644 --- a/man/GMLCOVExtension.Rd +++ b/man/GMLCOVExtension.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -72,6 +73,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLCartesianCS.Rd b/man/GMLCartesianCS.Rd index 198de753..b0d7070c 100644 --- a/man/GMLCartesianCS.Rd +++ b/man/GMLCartesianCS.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLCodeType.Rd b/man/GMLCodeType.Rd index c69796bd..92be7ebd 100644 --- a/man/GMLCodeType.Rd +++ b/man/GMLCodeType.Rd @@ -53,6 +53,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLCompoundCRS.Rd b/man/GMLCompoundCRS.Rd index 5b468c18..fafe5fa6 100644 --- a/man/GMLCompoundCRS.Rd +++ b/man/GMLCompoundCRS.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLConventionalUnit.Rd b/man/GMLConventionalUnit.Rd index 154cbb61..1655ed7d 100644 --- a/man/GMLConventionalUnit.Rd +++ b/man/GMLConventionalUnit.Rd @@ -73,6 +73,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -93,6 +94,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLConversion.Rd b/man/GMLConversion.Rd index 9fc8847f..f04e1552 100644 --- a/man/GMLConversion.Rd +++ b/man/GMLConversion.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLCoordinateSystemAxis.Rd b/man/GMLCoordinateSystemAxis.Rd index 195173b1..63023613 100644 --- a/man/GMLCoordinateSystemAxis.Rd +++ b/man/GMLCoordinateSystemAxis.Rd @@ -67,6 +67,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -87,6 +88,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLCylindricalCS.Rd b/man/GMLCylindricalCS.Rd index 32d6410a..20b65f93 100644 --- a/man/GMLCylindricalCS.Rd +++ b/man/GMLCylindricalCS.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLDefinition.Rd b/man/GMLDefinition.Rd index 05fc7ab8..1ff5eb83 100644 --- a/man/GMLDefinition.Rd +++ b/man/GMLDefinition.Rd @@ -62,6 +62,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -82,6 +83,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLDerivedCRS.Rd b/man/GMLDerivedCRS.Rd index 64cadd40..f2358467 100644 --- a/man/GMLDerivedCRS.Rd +++ b/man/GMLDerivedCRS.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLDerivedUnit.Rd b/man/GMLDerivedUnit.Rd index 1251a445..d47bcae0 100644 --- a/man/GMLDerivedUnit.Rd +++ b/man/GMLDerivedUnit.Rd @@ -66,6 +66,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -86,6 +87,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLElement.Rd b/man/GMLElement.Rd index 29bc4b4c..3209546e 100644 --- a/man/GMLElement.Rd +++ b/man/GMLElement.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$delListElement()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLEllipsoidalCS.Rd b/man/GMLEllipsoidalCS.Rd index e7f559c1..f5a95cd9 100644 --- a/man/GMLEllipsoidalCS.Rd +++ b/man/GMLEllipsoidalCS.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLEnvelope.Rd b/man/GMLEnvelope.Rd index 9d94e272..ae68e53d 100644 --- a/man/GMLEnvelope.Rd +++ b/man/GMLEnvelope.Rd @@ -58,6 +58,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$delListElement()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLEnvelopeWithTimePeriod.Rd b/man/GMLEnvelopeWithTimePeriod.Rd index 6fdb7df1..3d1d008d 100644 --- a/man/GMLEnvelopeWithTimePeriod.Rd +++ b/man/GMLEnvelopeWithTimePeriod.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$delListElement()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLGeneralGridAxis.Rd b/man/GMLGeneralGridAxis.Rd index 31811c7f..33b17178 100644 --- a/man/GMLGeneralGridAxis.Rd +++ b/man/GMLGeneralGridAxis.Rd @@ -65,6 +65,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$delListElement()
  • @@ -84,6 +85,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLGeodeticCRS.Rd b/man/GMLGeodeticCRS.Rd index 847d12bd..87ba7213 100644 --- a/man/GMLGeodeticCRS.Rd +++ b/man/GMLGeodeticCRS.Rd @@ -62,6 +62,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -82,6 +83,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLGrid.Rd b/man/GMLGrid.Rd index 48446368..5ba0a92d 100644 --- a/man/GMLGrid.Rd +++ b/man/GMLGrid.Rd @@ -63,6 +63,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -83,6 +84,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLGridCoverage.Rd b/man/GMLGridCoverage.Rd index 03b513e5..5186427d 100644 --- a/man/GMLGridCoverage.Rd +++ b/man/GMLGridCoverage.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLGridEnvelope.Rd b/man/GMLGridEnvelope.Rd index 923be005..d9cfd5ee 100644 --- a/man/GMLGridEnvelope.Rd +++ b/man/GMLGridEnvelope.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLGridFunction.Rd b/man/GMLGridFunction.Rd index ac4ec941..3abbfe45 100644 --- a/man/GMLGridFunction.Rd +++ b/man/GMLGridFunction.Rd @@ -58,6 +58,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -78,6 +79,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLLineString.Rd b/man/GMLLineString.Rd index 65afb137..abeea226 100644 --- a/man/GMLLineString.Rd +++ b/man/GMLLineString.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLLinearCS.Rd b/man/GMLLinearCS.Rd index 10c63898..fd6068e1 100644 --- a/man/GMLLinearCS.Rd +++ b/man/GMLLinearCS.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLLinearRing.Rd b/man/GMLLinearRing.Rd index 50920e3b..1f2a4034 100644 --- a/man/GMLLinearRing.Rd +++ b/man/GMLLinearRing.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLMultiCurve.Rd b/man/GMLMultiCurve.Rd index a7c4c388..97eb3a92 100644 --- a/man/GMLMultiCurve.Rd +++ b/man/GMLMultiCurve.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLMultiCurveCoverage.Rd b/man/GMLMultiCurveCoverage.Rd index a2c0197d..fd71cf8d 100644 --- a/man/GMLMultiCurveCoverage.Rd +++ b/man/GMLMultiCurveCoverage.Rd @@ -48,6 +48,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -68,6 +69,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLMultiPoint.Rd b/man/GMLMultiPoint.Rd index 0c92c0d6..90dff527 100644 --- a/man/GMLMultiPoint.Rd +++ b/man/GMLMultiPoint.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLMultiPointCoverage.Rd b/man/GMLMultiPointCoverage.Rd index 8d56db39..35cb21a7 100644 --- a/man/GMLMultiPointCoverage.Rd +++ b/man/GMLMultiPointCoverage.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLMultiSolidCoverage.Rd b/man/GMLMultiSolidCoverage.Rd index ee3884ef..ff818459 100644 --- a/man/GMLMultiSolidCoverage.Rd +++ b/man/GMLMultiSolidCoverage.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLMultiSurface.Rd b/man/GMLMultiSurface.Rd index 9598d8f3..0401cc0a 100644 --- a/man/GMLMultiSurface.Rd +++ b/man/GMLMultiSurface.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLMultiSurfaceCoverage.Rd b/man/GMLMultiSurfaceCoverage.Rd index 9d0a4383..d8636e2e 100644 --- a/man/GMLMultiSurfaceCoverage.Rd +++ b/man/GMLMultiSurfaceCoverage.Rd @@ -48,6 +48,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -68,6 +69,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLObliqueCartesianCS.Rd b/man/GMLObliqueCartesianCS.Rd index 807582c7..d618ebfc 100644 --- a/man/GMLObliqueCartesianCS.Rd +++ b/man/GMLObliqueCartesianCS.Rd @@ -61,6 +61,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -81,6 +82,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLOperationMethod.Rd b/man/GMLOperationMethod.Rd index 11cc0bd9..ccc30a32 100644 --- a/man/GMLOperationMethod.Rd +++ b/man/GMLOperationMethod.Rd @@ -66,6 +66,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -86,6 +87,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLOperationParameter.Rd b/man/GMLOperationParameter.Rd index dd23aa68..30005946 100644 --- a/man/GMLOperationParameter.Rd +++ b/man/GMLOperationParameter.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLOperationParameterGroup.Rd b/man/GMLOperationParameterGroup.Rd index 02bf549a..867a333b 100644 --- a/man/GMLOperationParameterGroup.Rd +++ b/man/GMLOperationParameterGroup.Rd @@ -58,6 +58,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -78,6 +79,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLParameterValue.Rd b/man/GMLParameterValue.Rd index f0ef8074..4e50a064 100644 --- a/man/GMLParameterValue.Rd +++ b/man/GMLParameterValue.Rd @@ -86,6 +86,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -105,6 +106,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLParameterValueGroup.Rd b/man/GMLParameterValueGroup.Rd index 0cecaf65..18eb423c 100644 --- a/man/GMLParameterValueGroup.Rd +++ b/man/GMLParameterValueGroup.Rd @@ -63,6 +63,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -83,6 +84,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/GMLPoint.Rd b/man/GMLPoint.Rd index eceb98c5..40cc7163 100644 --- a/man/GMLPoint.Rd +++ b/man/GMLPoint.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLPolarCS.Rd b/man/GMLPolarCS.Rd index 06555358..4d21ca4e 100644 --- a/man/GMLPolarCS.Rd +++ b/man/GMLPolarCS.Rd @@ -61,6 +61,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -81,6 +82,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLPolygon.Rd b/man/GMLPolygon.Rd index aba1ccb6..1636970e 100644 --- a/man/GMLPolygon.Rd +++ b/man/GMLPolygon.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLProjectedCRS.Rd b/man/GMLProjectedCRS.Rd index 03ab766e..c9469609 100644 --- a/man/GMLProjectedCRS.Rd +++ b/man/GMLProjectedCRS.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLRectifiedGrid.Rd b/man/GMLRectifiedGrid.Rd index 77b92318..70f7311d 100644 --- a/man/GMLRectifiedGrid.Rd +++ b/man/GMLRectifiedGrid.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLRectifiedGridCoverage.Rd b/man/GMLRectifiedGridCoverage.Rd index 57e2a8fa..3361c70e 100644 --- a/man/GMLRectifiedGridCoverage.Rd +++ b/man/GMLRectifiedGridCoverage.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractFeature$setBoundedBy()
  • diff --git a/man/GMLReferenceableGridByArray.Rd b/man/GMLReferenceableGridByArray.Rd index 6184673c..cf5cfec2 100644 --- a/man/GMLReferenceableGridByArray.Rd +++ b/man/GMLReferenceableGridByArray.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLReferenceableGridByTransformation.Rd b/man/GMLReferenceableGridByTransformation.Rd index 7a3c5918..27825270 100644 --- a/man/GMLReferenceableGridByTransformation.Rd +++ b/man/GMLReferenceableGridByTransformation.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLReferenceableGridByVectors.Rd b/man/GMLReferenceableGridByVectors.Rd index 9c25562f..2fa83c2f 100644 --- a/man/GMLReferenceableGridByVectors.Rd +++ b/man/GMLReferenceableGridByVectors.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLSphericalCS.Rd b/man/GMLSphericalCS.Rd index 5dc2a47c..8f2cdd17 100644 --- a/man/GMLSphericalCS.Rd +++ b/man/GMLSphericalCS.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLTemporalCRS.Rd b/man/GMLTemporalCRS.Rd index 0b4a411c..600dad06 100644 --- a/man/GMLTemporalCRS.Rd +++ b/man/GMLTemporalCRS.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLTemporalCS.Rd b/man/GMLTemporalCS.Rd index 2e6ce866..e798502a 100644 --- a/man/GMLTemporalCS.Rd +++ b/man/GMLTemporalCS.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLTimeCS.Rd b/man/GMLTimeCS.Rd index 5fef5a22..be33c286 100644 --- a/man/GMLTimeCS.Rd +++ b/man/GMLTimeCS.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLTimeInstant.Rd b/man/GMLTimeInstant.Rd index 45e9ee3a..dda5a32e 100644 --- a/man/GMLTimeInstant.Rd +++ b/man/GMLTimeInstant.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLTimePeriod.Rd b/man/GMLTimePeriod.Rd index 877282a4..f595dffb 100644 --- a/man/GMLTimePeriod.Rd +++ b/man/GMLTimePeriod.Rd @@ -61,6 +61,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -81,6 +82,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLUnitDefinition.Rd b/man/GMLUnitDefinition.Rd index 746d54ee..88f1756c 100644 --- a/man/GMLUnitDefinition.Rd +++ b/man/GMLUnitDefinition.Rd @@ -67,6 +67,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -87,6 +88,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLUserDefinedCS.Rd b/man/GMLUserDefinedCS.Rd index 43a5c453..655f64af 100644 --- a/man/GMLUserDefinedCS.Rd +++ b/man/GMLUserDefinedCS.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLVerticalCRS.Rd b/man/GMLVerticalCRS.Rd index e4d7bf40..eafef08e 100644 --- a/man/GMLVerticalCRS.Rd +++ b/man/GMLVerticalCRS.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/GMLVerticalCS.Rd b/man/GMLVerticalCS.Rd index ff9eb5f2..52e5b090 100644 --- a/man/GMLVerticalCS.Rd +++ b/man/GMLVerticalCS.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::GMLAbstractGML$addName()
  • diff --git a/man/ISOAbsoluteExternalPositionalAccuracy.Rd b/man/ISOAbsoluteExternalPositionalAccuracy.Rd index 20d4b950..1100127d 100644 --- a/man/ISOAbsoluteExternalPositionalAccuracy.Rd +++ b/man/ISOAbsoluteExternalPositionalAccuracy.Rd @@ -71,6 +71,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -91,6 +92,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOAbstractAggregate.Rd b/man/ISOAbstractAggregate.Rd index 1603bfdb..bc0b79f1 100644 --- a/man/ISOAbstractAggregate.Rd +++ b/man/ISOAbstractAggregate.Rd @@ -66,6 +66,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -86,6 +87,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAbstractCarrierOfCharacteristics.Rd b/man/ISOAbstractCarrierOfCharacteristics.Rd index 0690ddab..90ad80eb 100644 --- a/man/ISOAbstractCarrierOfCharacteristics.Rd +++ b/man/ISOAbstractCarrierOfCharacteristics.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAbstractCatalogue.Rd b/man/ISOAbstractCatalogue.Rd index e8665610..d3e0f2ad 100644 --- a/man/ISOAbstractCatalogue.Rd +++ b/man/ISOAbstractCatalogue.Rd @@ -78,6 +78,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -98,6 +99,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAbstractCompleteness.Rd b/man/ISOAbstractCompleteness.Rd index 44236ad1..f8e38ad2 100644 --- a/man/ISOAbstractCompleteness.Rd +++ b/man/ISOAbstractCompleteness.Rd @@ -43,6 +43,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -63,6 +64,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOAbstractGenericName.Rd b/man/ISOAbstractGenericName.Rd index 0374c131..71707742 100644 --- a/man/ISOAbstractGenericName.Rd +++ b/man/ISOAbstractGenericName.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAbstractLogicalConsistency.Rd b/man/ISOAbstractLogicalConsistency.Rd index 91d37248..242283e3 100644 --- a/man/ISOAbstractLogicalConsistency.Rd +++ b/man/ISOAbstractLogicalConsistency.Rd @@ -44,6 +44,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -64,6 +65,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOAbstractObject.Rd b/man/ISOAbstractObject.Rd index 9d51bdfa..cd072275 100644 --- a/man/ISOAbstractObject.Rd +++ b/man/ISOAbstractObject.Rd @@ -26,7 +26,7 @@ Abstract ISO Metadata class used internally by geometa The object returned is a \code{data.frame} containing the specification reference and title. } - \item{\code{getISOStandard(clazz)}}{ + \item{\code{getISOStandard(clazz, version)}}{ Inherit the ISO (and/or OGC) standard reference for a given \pkg{geometa} class. The object returned is a \code{data.frame} containing the specification reference and title. @@ -90,6 +90,8 @@ Emmanuel Blondel \subsection{Public methods}{ \itemize{ \item \href{#method-ISOAbstractObject-new}{\code{ISOAbstractObject$new()}} +\item \href{#method-ISOAbstractObject-checkMetadataStandardCompliance}{\code{ISOAbstractObject$checkMetadataStandardCompliance()}} +\item \href{#method-ISOAbstractObject-stopIfMetadataStandardIsNot}{\code{ISOAbstractObject$stopIfMetadataStandardIsNot()}} \item \href{#method-ISOAbstractObject-print}{\code{ISOAbstractObject$print()}} \item \href{#method-ISOAbstractObject-decode}{\code{ISOAbstractObject$decode()}} \item \href{#method-ISOAbstractObject-encode}{\code{ISOAbstractObject$encode()}} @@ -163,6 +165,34 @@ Initializes object } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOAbstractObject-checkMetadataStandardCompliance}{}}} +\subsection{Method \code{checkMetadataStandardCompliance()}}{ +Check if object can be instantiated vs. the current metadata standard +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOAbstractObject$checkMetadataStandardCompliance()}\if{html}{\out{
    }} +} + +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOAbstractObject-stopIfMetadataStandardIsNot}{}}} +\subsection{Method \code{stopIfMetadataStandardIsNot()}}{ +Utility to stop in case a the current metadata standard does not match the one required for the code. This utility +can be used to check applicability of a certain method, depending on on the current metadata standard. +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOAbstractObject$stopIfMetadataStandardIsNot(version)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{version}}{version} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISOAbstractObject-print}{}}} \subsection{Method \code{print()}}{ diff --git a/man/ISOAbstractPositionalAccuracy.Rd b/man/ISOAbstractPositionalAccuracy.Rd index 4f73d928..943ff7fc 100644 --- a/man/ISOAbstractPositionalAccuracy.Rd +++ b/man/ISOAbstractPositionalAccuracy.Rd @@ -44,6 +44,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -64,6 +65,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOAbstractPropertyType.Rd b/man/ISOAbstractPropertyType.Rd index 6275e385..3a8bdae9 100644 --- a/man/ISOAbstractPropertyType.Rd +++ b/man/ISOAbstractPropertyType.Rd @@ -63,6 +63,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -83,6 +84,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOAbstractReferenceSystem.Rd b/man/ISOAbstractReferenceSystem.Rd index 17592d80..4896e20d 100644 --- a/man/ISOAbstractReferenceSystem.Rd +++ b/man/ISOAbstractReferenceSystem.Rd @@ -58,6 +58,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -78,6 +79,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAbstractResult.Rd b/man/ISOAbstractResult.Rd index 95e8d954..3c96053f 100644 --- a/man/ISOAbstractResult.Rd +++ b/man/ISOAbstractResult.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAbstractTemporalAccuracy.Rd b/man/ISOAbstractTemporalAccuracy.Rd index 0085a0ac..287d2721 100644 --- a/man/ISOAbstractTemporalAccuracy.Rd +++ b/man/ISOAbstractTemporalAccuracy.Rd @@ -44,6 +44,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -64,6 +65,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOAbstractThematicAccuracy.Rd b/man/ISOAbstractThematicAccuracy.Rd index 63afbfe8..d11ae51b 100644 --- a/man/ISOAbstractThematicAccuracy.Rd +++ b/man/ISOAbstractThematicAccuracy.Rd @@ -44,6 +44,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -64,6 +65,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOAccuracyOfATimeMeasurement.Rd b/man/ISOAccuracyOfATimeMeasurement.Rd index 3452f0e9..74c1e939 100644 --- a/man/ISOAccuracyOfATimeMeasurement.Rd +++ b/man/ISOAccuracyOfATimeMeasurement.Rd @@ -71,6 +71,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -91,6 +92,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOAddress.Rd b/man/ISOAddress.Rd index 170e33bd..48c28c62 100644 --- a/man/ISOAddress.Rd +++ b/man/ISOAddress.Rd @@ -71,6 +71,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -91,6 +92,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAggregateInformation.Rd b/man/ISOAggregateInformation.Rd index d1247f1b..cd6fb80f 100644 --- a/man/ISOAggregateInformation.Rd +++ b/man/ISOAggregateInformation.Rd @@ -106,6 +106,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -126,6 +127,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAnchor.Rd b/man/ISOAnchor.Rd index 523c8754..e8a917f1 100644 --- a/man/ISOAnchor.Rd +++ b/man/ISOAnchor.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAngle.Rd b/man/ISOAngle.Rd index ced9bff4..b0864de5 100644 --- a/man/ISOAngle.Rd +++ b/man/ISOAngle.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOApplicationSchemaInformation.Rd b/man/ISOApplicationSchemaInformation.Rd index 045e0778..b1198454 100644 --- a/man/ISOApplicationSchemaInformation.Rd +++ b/man/ISOApplicationSchemaInformation.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAssociation.Rd b/man/ISOAssociation.Rd index 7ef06cb9..456edab0 100644 --- a/man/ISOAssociation.Rd +++ b/man/ISOAssociation.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOAssociationRole.Rd b/man/ISOAssociationRole.Rd index 00679d69..01805554 100644 --- a/man/ISOAssociationRole.Rd +++ b/man/ISOAssociationRole.Rd @@ -63,6 +63,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -83,6 +84,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOAssociationType.Rd b/man/ISOAssociationType.Rd index 9c5c0977..cf50c7c3 100644 --- a/man/ISOAssociationType.Rd +++ b/man/ISOAssociationType.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOBand.Rd b/man/ISOBand.Rd index 3fe327b5..6968c6a0 100644 --- a/man/ISOBand.Rd +++ b/man/ISOBand.Rd @@ -91,6 +91,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -111,6 +112,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISORangeDimension$setDescriptor()
  • diff --git a/man/ISOBaseBoolean.Rd b/man/ISOBaseBoolean.Rd index 3846d6ab..8b05672f 100644 --- a/man/ISOBaseBoolean.Rd +++ b/man/ISOBaseBoolean.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBaseCharacterString.Rd b/man/ISOBaseCharacterString.Rd index 4574e637..7b92dd87 100644 --- a/man/ISOBaseCharacterString.Rd +++ b/man/ISOBaseCharacterString.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -72,6 +73,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBaseDate.Rd b/man/ISOBaseDate.Rd index 5e459e14..99fa40de 100644 --- a/man/ISOBaseDate.Rd +++ b/man/ISOBaseDate.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBaseDateTime.Rd b/man/ISOBaseDateTime.Rd index 69d3b9b3..254ccec5 100644 --- a/man/ISOBaseDateTime.Rd +++ b/man/ISOBaseDateTime.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBaseDecimal.Rd b/man/ISOBaseDecimal.Rd index 4e0acb9c..42189392 100644 --- a/man/ISOBaseDecimal.Rd +++ b/man/ISOBaseDecimal.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBaseInteger.Rd b/man/ISOBaseInteger.Rd index 55b09f7c..9b4a8439 100644 --- a/man/ISOBaseInteger.Rd +++ b/man/ISOBaseInteger.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBaseReal.Rd b/man/ISOBaseReal.Rd index 1712110d..635115ba 100644 --- a/man/ISOBaseReal.Rd +++ b/man/ISOBaseReal.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBinary.Rd b/man/ISOBinary.Rd index 933eaaa3..ae8bd955 100644 --- a/man/ISOBinary.Rd +++ b/man/ISOBinary.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBinding.Rd b/man/ISOBinding.Rd index b24cff25..4fb6fa4f 100644 --- a/man/ISOBinding.Rd +++ b/man/ISOBinding.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOBoundAssociationRole.Rd b/man/ISOBoundAssociationRole.Rd index f47e3527..c3694e72 100644 --- a/man/ISOBoundAssociationRole.Rd +++ b/man/ISOBoundAssociationRole.Rd @@ -48,6 +48,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -68,6 +69,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOBoundFeatureAttribute.Rd b/man/ISOBoundFeatureAttribute.Rd index 4907f3b2..b5cafcc3 100644 --- a/man/ISOBoundFeatureAttribute.Rd +++ b/man/ISOBoundFeatureAttribute.Rd @@ -48,6 +48,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -68,6 +69,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOBoundingPolygon.Rd b/man/ISOBoundingPolygon.Rd index 6e4ef427..fa10e1fa 100644 --- a/man/ISOBoundingPolygon.Rd +++ b/man/ISOBoundingPolygon.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOBrowseGraphic.Rd b/man/ISOBrowseGraphic.Rd index 85a4e2d6..c9f08c29 100644 --- a/man/ISOBrowseGraphic.Rd +++ b/man/ISOBrowseGraphic.Rd @@ -65,6 +65,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -85,6 +86,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOCarrierOfCharacteristics.Rd b/man/ISOCarrierOfCharacteristics.Rd index 803142cc..4735d20d 100644 --- a/man/ISOCarrierOfCharacteristics.Rd +++ b/man/ISOCarrierOfCharacteristics.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOCellGeometry.Rd b/man/ISOCellGeometry.Rd index 1667d321..a4fd7714 100644 --- a/man/ISOCellGeometry.Rd +++ b/man/ISOCellGeometry.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOCharacterSet.Rd b/man/ISOCharacterSet.Rd index 37eec268..993030ad 100644 --- a/man/ISOCharacterSet.Rd +++ b/man/ISOCharacterSet.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOCitation.Rd b/man/ISOCitation.Rd index 1921ae10..36d96a38 100644 --- a/man/ISOCitation.Rd +++ b/man/ISOCitation.Rd @@ -129,6 +129,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -149,6 +150,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOCitationSeries.Rd b/man/ISOCitationSeries.Rd index 98872c03..f34f59e1 100644 --- a/man/ISOCitationSeries.Rd +++ b/man/ISOCitationSeries.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOClassification.Rd b/man/ISOClassification.Rd index b1f1ab09..ed0838fb 100644 --- a/man/ISOClassification.Rd +++ b/man/ISOClassification.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOCodeDefinition.Rd b/man/ISOCodeDefinition.Rd new file mode 100644 index 00000000..3a380afc --- /dev/null +++ b/man/ISOCodeDefinition.Rd @@ -0,0 +1,132 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOCodeDefinition.R +\docType{class} +\name{ISOCodeDefinition} +\alias{ISOCodeDefinition} +\title{ISOCodeDefinition} +\format{ +\code{\link{R6Class}} object. +} +\value{ +Object of \code{\link{R6Class}} for modelling an ISO Metadata code definition +} +\description{ +ISOCodeDefinition + +ISOCodeDefinition +} +\note{ +Abstract ISO codelist class used internally by geometa +} +\references{ +ISO/TS 19139:2007 Geographic information -- XML +} +\author{ +Emmanuel Blondel +} +\keyword{ISO} +\keyword{code} +\keyword{definition} +\section{Super classes}{ +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOCodeDefinition} +} +\section{Public fields}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{identifier}}{identifier} + +\item{\code{description}}{description} +} +\if{html}{\out{
    }} +} +\section{Methods}{ +\subsection{Public methods}{ +\itemize{ +\item \href{#method-ISOCodeDefinition-new}{\code{ISOCodeDefinition$new()}} +\item \href{#method-ISOCodeDefinition-toISOCodelistValue}{\code{ISOCodeDefinition$toISOCodelistValue()}} +\item \href{#method-ISOCodeDefinition-clone}{\code{ISOCodeDefinition$clone()}} +} +} +\if{html}{\out{ +
    Inherited methods + +
    +}} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodeDefinition-new}{}}} +\subsection{Method \code{new()}}{ +Initializes object +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodeDefinition$new(xml = NULL)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{xml}}{object of class \link{XMLInternalNode-class}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodeDefinition-toISOCodelistValue}{}}} +\subsection{Method \code{toISOCodelistValue()}}{ +Converts to \link{ISOCodelistValue} +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodeDefinition$toISOCodelistValue()}\if{html}{\out{
    }} +} + +\subsection{Returns}{ +object of class \link{ISOCodelistValue} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodeDefinition-clone}{}}} +\subsection{Method \code{clone()}}{ +The objects of this class are cloneable with this method. +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodeDefinition$clone(deep = FALSE)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{deep}}{Whether to make a deep clone.} +} +\if{html}{\out{
    }} +} +} +} diff --git a/man/ISOCodeListDictionary.Rd b/man/ISOCodeListDictionary.Rd new file mode 100644 index 00000000..8f42ba41 --- /dev/null +++ b/man/ISOCodeListDictionary.Rd @@ -0,0 +1,134 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOCodeListDictionary.R +\docType{class} +\name{ISOCodeListDictionary} +\alias{ISOCodeListDictionary} +\title{ISOCodeListDictionary} +\format{ +\code{\link{R6Class}} object. +} +\value{ +Object of \code{\link{R6Class}} for modelling an ISO Metadata codelist dictionary +} +\description{ +ISOCodeListDictionary + +ISOCodeListDictionary +} +\note{ +Abstract ISO codelist class used internally by geometa +} +\references{ +ISO/TS 19139:2007 Geographic information -- XML +} +\author{ +Emmanuel Blondel +} +\keyword{ISO} +\keyword{code} +\keyword{element} +\section{Super classes}{ +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOCodeListDictionary} +} +\section{Public fields}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{identifier}}{identifier} + +\item{\code{description}}{description} + +\item{\code{codeEntry}}{code entries} +} +\if{html}{\out{
    }} +} +\section{Methods}{ +\subsection{Public methods}{ +\itemize{ +\item \href{#method-ISOCodeListDictionary-new}{\code{ISOCodeListDictionary$new()}} +\item \href{#method-ISOCodeListDictionary-toISOCodelist}{\code{ISOCodeListDictionary$toISOCodelist()}} +\item \href{#method-ISOCodeListDictionary-clone}{\code{ISOCodeListDictionary$clone()}} +} +} +\if{html}{\out{ +
    Inherited methods + +
    +}} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodeListDictionary-new}{}}} +\subsection{Method \code{new()}}{ +Initializes object +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodeListDictionary$new(xml = NULL)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{xml}}{object of class \link{XMLInternalNode-class}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodeListDictionary-toISOCodelist}{}}} +\subsection{Method \code{toISOCodelist()}}{ +Converts to \link{ISOCodelist} +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodeListDictionary$toISOCodelist()}\if{html}{\out{
    }} +} + +\subsection{Returns}{ +an object of class \link{ISOCodelist} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodeListDictionary-clone}{}}} +\subsection{Method \code{clone()}}{ +The objects of this class are cloneable with this method. +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodeListDictionary$clone(deep = FALSE)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{deep}}{Whether to make a deep clone.} +} +\if{html}{\out{
    }} +} +} +} diff --git a/man/ISOCodeListValue.Rd b/man/ISOCodeListValue.Rd index 243396fa..94fa9e8e 100644 --- a/man/ISOCodeListValue.Rd +++ b/man/ISOCodeListValue.Rd @@ -1,54 +1,49 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/ISOCodeListValue.R +% Please edit documentation in R/ISOCodelistValueNew.R \docType{class} -\name{ISOCodeListValue} -\alias{ISOCodeListValue} -\title{ISOCodeListValue} +\name{ISOCodelistValue} +\alias{ISOCodelistValue} +\title{ISOCodelistValue} \format{ \code{\link{R6Class}} object. } \value{ -Object of \code{\link{R6Class}} for modelling an ISO Metadata codelist element +Object of \code{\link{R6Class}} for modelling an ISO Metadata codelistvalue } \description{ -ISOCodeListValue +ISOCodelistValue -ISOCodeListValue +ISOCodelistValue } \note{ Abstract ISO codelist class used internally by geometa } \references{ -ISO 19115:2003 - Geographic information -- Metadata +ISO/TS 19139:2007 Geographic information -- XML } \author{ Emmanuel Blondel } \keyword{ISO} \keyword{code} -\keyword{element} +\keyword{definition} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOCodeListValue} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOCodelistValue} } \section{Public fields}{ \if{html}{\out{
    }} \describe{ -\item{\code{codelistId}}{codelist ID} +\item{\code{identifier}}{identifier} -\item{\code{attrs}}{attrs} - -\item{\code{value}}{value} - -\item{\code{valueDescription}}{value description} +\item{\code{description}}{description} } \if{html}{\out{
    }} } \section{Methods}{ \subsection{Public methods}{ \itemize{ -\item \href{#method-ISOCodeListValue-new}{\code{ISOCodeListValue$new()}} -\item \href{#method-ISOCodeListValue-getAcceptedValues}{\code{ISOCodeListValue$getAcceptedValues()}} -\item \href{#method-ISOCodeListValue-clone}{\code{ISOCodeListValue$clone()}} +\item \href{#method-ISOCodelistValue-new}{\code{ISOCodelistValue$new()}} +\item \href{#method-ISOCodelistValue-clone}{\code{ISOCodelistValue$clone()}} } } \if{html}{\out{ @@ -59,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,77 +75,36 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • }} \if{html}{\out{
    }} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-ISOCodeListValue-new}{}}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodelistValue-new}{}}} \subsection{Method \code{new()}}{ -Method used to instantiate an \link{ISOCodeListValue}. By default, - \code{addCodeListAttrs = TRUE}, to add codelist atributes to root XML. The - parameter \code{addCodeSpaceAttr = TRUE} by default, and ignored if the valueof - \code{addCodeLisAttrs} is set to \code{FALSE}. The argument \code{setValue} - sets the value as node text (defaut is \code{TRUE}). The argument \code{setValueDescription} - allows to force having description set as value, default is \code{FALSE} in which case - the name will be preferred, and in case no name is provided, code value will be used. +Initializes object \subsection{Usage}{ -\if{html}{\out{
    }}\preformatted{ISOCodeListValue$new( - xml = NULL, - id, - value = NULL, - description = NULL, - addCodeListAttrs = TRUE, - addCodeSpaceAttr = TRUE, - setValue = TRUE, - setValueDescription = FALSE -)}\if{html}{\out{
    }} +\if{html}{\out{
    }}\preformatted{ISOCodelistValue$new(xml = NULL)}\if{html}{\out{
    }} } \subsection{Arguments}{ \if{html}{\out{
    }} \describe{ \item{\code{xml}}{object of class \link{XMLInternalNode-class}} - -\item{\code{id}}{id} - -\item{\code{value}}{value} - -\item{\code{description}}{description} - -\item{\code{addCodeListAttrs}}{add codelist attributes?} - -\item{\code{addCodeSpaceAttr}}{add codespace attribute?} - -\item{\code{setValue}}{set value?} - -\item{\code{setValueDescription}}{set value description?} } \if{html}{\out{
    }} } } \if{html}{\out{
    }} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-ISOCodeListValue-getAcceptedValues}{}}} -\subsection{Method \code{getAcceptedValues()}}{ -Get accepted values -\subsection{Usage}{ -\if{html}{\out{
    }}\preformatted{ISOCodeListValue$getAcceptedValues()}\if{html}{\out{
    }} -} - -\subsection{Returns}{ -a vector of class \link{character} -} -} -\if{html}{\out{
    }} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-ISOCodeListValue-clone}{}}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodelistValue-clone}{}}} \subsection{Method \code{clone()}}{ The objects of this class are cloneable with this method. \subsection{Usage}{ -\if{html}{\out{
    }}\preformatted{ISOCodeListValue$clone(deep = FALSE)}\if{html}{\out{
    }} +\if{html}{\out{
    }}\preformatted{ISOCodelistValue$clone(deep = FALSE)}\if{html}{\out{
    }} } \subsection{Arguments}{ diff --git a/man/ISOCodelist.Rd b/man/ISOCodelist.Rd index 662c9633..9c27fbf0 100644 --- a/man/ISOCodelist.Rd +++ b/man/ISOCodelist.Rd @@ -23,6 +23,9 @@ Emmanuel Blondel } \keyword{ISO} \keyword{codelist} +\section{Super classes}{ +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOCodelist} +} \section{Public fields}{ \if{html}{\out{
    }} \describe{ @@ -36,7 +39,7 @@ Emmanuel Blondel \item{\code{description}}{description} -\item{\code{entries}}{entries} +\item{\code{codeEntry}}{code entries} } \if{html}{\out{
    }} } @@ -44,22 +47,60 @@ Emmanuel Blondel \subsection{Public methods}{ \itemize{ \item \href{#method-ISOCodelist-new}{\code{ISOCodelist$new()}} +\item \href{#method-ISOCodelist-getCodeEntries}{\code{ISOCodelist$getCodeEntries()}} \item \href{#method-ISOCodelist-parse}{\code{ISOCodelist$parse()}} \item \href{#method-ISOCodelist-clone}{\code{ISOCodelist$clone()}} } } +\if{html}{\out{ +
    Inherited methods + +
    +}} \if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISOCodelist-new}{}}} \subsection{Method \code{new()}}{ Initializes object \subsection{Usage}{ -\if{html}{\out{
    }}\preformatted{ISOCodelist$new(refFile, id)}\if{html}{\out{
    }} +\if{html}{\out{
    }}\preformatted{ISOCodelist$new(xml = NULL, refFile = NULL, id = NULL)}\if{html}{\out{
    }} } \subsection{Arguments}{ \if{html}{\out{
    }} \describe{ +\item{\code{xml}}{object of class \link{XMLInternalNode-class}} + \item{\code{refFile}}{ref file} \item{\code{id}}{id} @@ -68,6 +109,26 @@ Initializes object } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodelist-getCodeEntries}{}}} +\subsection{Method \code{getCodeEntries()}}{ +get code entries +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodelist$getCodeEntries(pretty = FALSE)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{pretty}}{prettify output as \code{data.frame}. Default is\code{FALSE}} +} +\if{html}{\out{
    }} +} +\subsection{Returns}{ +an object of class \link{list} or \link{data.frame} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISOCodelist-parse}{}}} \subsection{Method \code{parse()}}{ diff --git a/man/ISOCodelistCatalogue.Rd b/man/ISOCodelistCatalogue.Rd new file mode 100644 index 00000000..8edd826c --- /dev/null +++ b/man/ISOCodelistCatalogue.Rd @@ -0,0 +1,157 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOCodelistCatalogue.R +\docType{class} +\name{ISOCodelistCatalogue} +\alias{ISOCodelistCatalogue} +\title{ISOCodelistCatalogue} +\format{ +\code{\link{R6Class}} object. +} +\value{ +Object of \code{\link{R6Class}} for modelling an ISOCodelistCatalogue +} +\description{ +ISOCodelistCatalogue + +ISOCodelistCatalogue +} +\references{ +ISO/TS 19139:2007 Geographic information -- XML +} +\author{ +Emmanuel Blondel +} +\keyword{ISO} +\keyword{citation} +\keyword{series} +\section{Super classes}{ +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOCodelistCatalogue} +} +\section{Public fields}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{name}}{name} + +\item{\code{scope}}{scope} + +\item{\code{fieldOfApplication}}{field of application} + +\item{\code{versionNumber}}{version number} + +\item{\code{versionDate}}{version date} + +\item{\code{codelistItem}}{codelist items} +} +\if{html}{\out{
    }} +} +\section{Methods}{ +\subsection{Public methods}{ +\itemize{ +\item \href{#method-ISOCodelistCatalogue-new}{\code{ISOCodelistCatalogue$new()}} +\item \href{#method-ISOCodelistCatalogue-getCodelists}{\code{ISOCodelistCatalogue$getCodelists()}} +\item \href{#method-ISOCodelistCatalogue-getCodelist}{\code{ISOCodelistCatalogue$getCodelist()}} +\item \href{#method-ISOCodelistCatalogue-clone}{\code{ISOCodelistCatalogue$clone()}} +} +} +\if{html}{\out{ +
    Inherited methods + +
    +}} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodelistCatalogue-new}{}}} +\subsection{Method \code{new()}}{ +Initializes object +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodelistCatalogue$new(xml = NULL)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{xml}}{object of class \link{XMLInternalNode-class}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodelistCatalogue-getCodelists}{}}} +\subsection{Method \code{getCodelists()}}{ +Get codelists. The method ensure an harmonized output made of objects of +class \link{ISOCodelist}. In the catalogue is built of objects of class \link{ISOCodeListDictionary}, these +will be mapped as \link{ISOCodelist}, to facilitate the consumption of codelists by \pkg{geometa} +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodelistCatalogue$getCodelists()}\if{html}{\out{
    }} +} + +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodelistCatalogue-getCodelist}{}}} +\subsection{Method \code{getCodelist()}}{ +Get codelist by id. +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodelistCatalogue$getCodelist(id)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{id}}{id} +} +\if{html}{\out{
    }} +} +\subsection{Returns}{ +object of class \link{ISOCodelist} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOCodelistCatalogue-clone}{}}} +\subsection{Method \code{clone()}}{ +The objects of this class are cloneable with this method. +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOCodelistCatalogue$clone(deep = FALSE)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{deep}}{Whether to make a deep clone.} +} +\if{html}{\out{
    }} +} +} +} diff --git a/man/ISOCompletenessCommission.Rd b/man/ISOCompletenessCommission.Rd index a3089055..858c2779 100644 --- a/man/ISOCompletenessCommission.Rd +++ b/man/ISOCompletenessCommission.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOCompletenessOmission.Rd b/man/ISOCompletenessOmission.Rd index 94e7b18f..157d6484 100644 --- a/man/ISOCompletenessOmission.Rd +++ b/man/ISOCompletenessOmission.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOConceptualConsistency.Rd b/man/ISOConceptualConsistency.Rd index 57ecede1..d8acde19 100644 --- a/man/ISOConceptualConsistency.Rd +++ b/man/ISOConceptualConsistency.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOConformanceResult.Rd b/man/ISOConformanceResult.Rd index 89b8fd8c..260a49ea 100644 --- a/man/ISOConformanceResult.Rd +++ b/man/ISOConformanceResult.Rd @@ -71,6 +71,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -91,6 +92,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOConstraint.Rd b/man/ISOConstraint.Rd index d0c55c10..a5dc7a72 100644 --- a/man/ISOConstraint.Rd +++ b/man/ISOConstraint.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOConstraints.Rd b/man/ISOConstraints.Rd index b8907452..b9a89094 100644 --- a/man/ISOConstraints.Rd +++ b/man/ISOConstraints.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOContact.Rd b/man/ISOContact.Rd index bc6a3819..2a28e174 100644 --- a/man/ISOContact.Rd +++ b/man/ISOContact.Rd @@ -75,6 +75,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -95,6 +96,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOContentInformation.Rd b/man/ISOContentInformation.Rd index 16629efb..28de1936 100644 --- a/man/ISOContentInformation.Rd +++ b/man/ISOContentInformation.Rd @@ -45,6 +45,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -65,6 +66,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOCountry.Rd b/man/ISOCountry.Rd index 8bc3514e..42bbb5a8 100644 --- a/man/ISOCountry.Rd +++ b/man/ISOCountry.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOCoupledResource.Rd b/man/ISOCoupledResource.Rd index b31f8067..ad16f950 100644 --- a/man/ISOCoupledResource.Rd +++ b/man/ISOCoupledResource.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOCouplingType.Rd b/man/ISOCouplingType.Rd index 48d2c47f..df0a9ea7 100644 --- a/man/ISOCouplingType.Rd +++ b/man/ISOCouplingType.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOCoverageContentType.Rd b/man/ISOCoverageContentType.Rd index eec6111e..529b4c31 100644 --- a/man/ISOCoverageContentType.Rd +++ b/man/ISOCoverageContentType.Rd @@ -58,6 +58,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -78,6 +79,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOCoverageDescription.Rd b/man/ISOCoverageDescription.Rd index e3fe5a84..dfe1fd5f 100644 --- a/man/ISOCoverageDescription.Rd +++ b/man/ISOCoverageDescription.Rd @@ -90,6 +90,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -110,6 +111,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODCPList.Rd b/man/ISODCPList.Rd index f2848e9c..95a4b59a 100644 --- a/man/ISODCPList.Rd +++ b/man/ISODCPList.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISODataFile.Rd b/man/ISODataFile.Rd index fb4b7f96..dff3f784 100644 --- a/man/ISODataFile.Rd +++ b/man/ISODataFile.Rd @@ -78,6 +78,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -98,6 +99,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODataIdentification.Rd b/man/ISODataIdentification.Rd index 84a944cb..3cee6401 100644 --- a/man/ISODataIdentification.Rd +++ b/man/ISODataIdentification.Rd @@ -175,6 +175,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -195,6 +196,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOIdentification$addAggregateInformation()
  • diff --git a/man/ISODataQuality.Rd b/man/ISODataQuality.Rd index 8151503a..6e99ccbe 100644 --- a/man/ISODataQuality.Rd +++ b/man/ISODataQuality.Rd @@ -129,6 +129,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -149,6 +150,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODataQualityAbstractElement.Rd b/man/ISODataQualityAbstractElement.Rd index 8ecd136f..12a5bfe9 100644 --- a/man/ISODataQualityAbstractElement.Rd +++ b/man/ISODataQualityAbstractElement.Rd @@ -75,6 +75,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -95,6 +96,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODataSet.Rd b/man/ISODataSet.Rd index c6048f2b..8401ef0f 100644 --- a/man/ISODataSet.Rd +++ b/man/ISODataSet.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODatatype.Rd b/man/ISODatatype.Rd index f55d7e7b..cc412e8e 100644 --- a/man/ISODatatype.Rd +++ b/man/ISODatatype.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISODate.Rd b/man/ISODate.Rd index 392d5944..9c2b23ef 100644 --- a/man/ISODate.Rd +++ b/man/ISODate.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODateType.Rd b/man/ISODateType.Rd index 5011de40..15ffc442 100644 --- a/man/ISODateType.Rd +++ b/man/ISODateType.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISODefinitionReference.Rd b/man/ISODefinitionReference.Rd index c438716b..16477af5 100644 --- a/man/ISODefinitionReference.Rd +++ b/man/ISODefinitionReference.Rd @@ -53,6 +53,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODefinitionSource.Rd b/man/ISODefinitionSource.Rd index 68fb8e1f..11a14cfb 100644 --- a/man/ISODefinitionSource.Rd +++ b/man/ISODefinitionSource.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODigitalTransferOptions.Rd b/man/ISODigitalTransferOptions.Rd index 2ea30f6a..fdab0acd 100644 --- a/man/ISODigitalTransferOptions.Rd +++ b/man/ISODigitalTransferOptions.Rd @@ -75,6 +75,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -95,6 +96,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODimension.Rd b/man/ISODimension.Rd index 3dac941a..215d8027 100644 --- a/man/ISODimension.Rd +++ b/man/ISODimension.Rd @@ -64,6 +64,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -84,6 +85,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODimensionNameType.Rd b/man/ISODimensionNameType.Rd index 5b71aaac..65f9c80f 100644 --- a/man/ISODimensionNameType.Rd +++ b/man/ISODimensionNameType.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISODistance.Rd b/man/ISODistance.Rd index 90967384..58476c25 100644 --- a/man/ISODistance.Rd +++ b/man/ISODistance.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODistribution.Rd b/man/ISODistribution.Rd index 499a79c1..c0f87422 100644 --- a/man/ISODistribution.Rd +++ b/man/ISODistribution.Rd @@ -76,6 +76,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -96,6 +97,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODistributionUnits.Rd b/man/ISODistributionUnits.Rd index 44388fcf..4a04a034 100644 --- a/man/ISODistributionUnits.Rd +++ b/man/ISODistributionUnits.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISODistributor.Rd b/man/ISODistributor.Rd index f0f6d376..c1adcf09 100644 --- a/man/ISODistributor.Rd +++ b/man/ISODistributor.Rd @@ -90,6 +90,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -110,6 +111,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISODomainConsistency.Rd b/man/ISODomainConsistency.Rd index 0fe1aeb7..509ced73 100644 --- a/man/ISODomainConsistency.Rd +++ b/man/ISODomainConsistency.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOElementSequence.Rd b/man/ISOElementSequence.Rd index 9635080d..eb7f7dd6 100644 --- a/man/ISOElementSequence.Rd +++ b/man/ISOElementSequence.Rd @@ -46,6 +46,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -66,6 +67,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOEvaluationMethodType.Rd b/man/ISOEvaluationMethodType.Rd index 4298c00a..989d75bc 100644 --- a/man/ISOEvaluationMethodType.Rd +++ b/man/ISOEvaluationMethodType.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOExtendedElementInformation.Rd b/man/ISOExtendedElementInformation.Rd index 6bd929de..fa3670ec 100644 --- a/man/ISOExtendedElementInformation.Rd +++ b/man/ISOExtendedElementInformation.Rd @@ -134,6 +134,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -154,6 +155,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOExtent.Rd b/man/ISOExtent.Rd index 6176ffed..076922e1 100644 --- a/man/ISOExtent.Rd +++ b/man/ISOExtent.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOFeatureAssociation.Rd b/man/ISOFeatureAssociation.Rd index 03fc789d..fef3badc 100644 --- a/man/ISOFeatureAssociation.Rd +++ b/man/ISOFeatureAssociation.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOFeatureType$addAlias()
  • diff --git a/man/ISOFeatureAttribute.Rd b/man/ISOFeatureAttribute.Rd index 2f904ac0..e43ff5e7 100644 --- a/man/ISOFeatureAttribute.Rd +++ b/man/ISOFeatureAttribute.Rd @@ -90,6 +90,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -110,6 +111,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOFeatureCatalogue.Rd b/man/ISOFeatureCatalogue.Rd index b27a8b3d..d9bff755 100644 --- a/man/ISOFeatureCatalogue.Rd +++ b/man/ISOFeatureCatalogue.Rd @@ -131,6 +131,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -151,6 +152,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCatalogue$addFieldOfApplication()
  • diff --git a/man/ISOFeatureCatalogueDescription.Rd b/man/ISOFeatureCatalogueDescription.Rd index 74e8bbf3..e56172f6 100644 --- a/man/ISOFeatureCatalogueDescription.Rd +++ b/man/ISOFeatureCatalogueDescription.Rd @@ -81,6 +81,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -101,6 +102,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOFeatureOperation.Rd b/man/ISOFeatureOperation.Rd index 3c910489..38f9d5ab 100644 --- a/man/ISOFeatureOperation.Rd +++ b/man/ISOFeatureOperation.Rd @@ -62,6 +62,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -82,6 +83,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOFeatureType.Rd b/man/ISOFeatureType.Rd index 71111c7d..70f39de9 100644 --- a/man/ISOFeatureType.Rd +++ b/man/ISOFeatureType.Rd @@ -134,6 +134,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -154,6 +155,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOFileName.Rd b/man/ISOFileName.Rd index ace85175..eb5cb4df 100644 --- a/man/ISOFileName.Rd +++ b/man/ISOFileName.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOFormat.Rd b/man/ISOFormat.Rd index c1f531e4..da8555b0 100644 --- a/man/ISOFormat.Rd +++ b/man/ISOFormat.Rd @@ -73,6 +73,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -93,6 +94,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOFormatConsistency.Rd b/man/ISOFormatConsistency.Rd index b788458c..fb071a0a 100644 --- a/man/ISOFormatConsistency.Rd +++ b/man/ISOFormatConsistency.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOFreeText.Rd b/man/ISOFreeText.Rd index efbba6a4..2c10118b 100644 --- a/man/ISOFreeText.Rd +++ b/man/ISOFreeText.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOGeographicBoundingBox.Rd b/man/ISOGeographicBoundingBox.Rd index cb8171b8..b5cdc834 100644 --- a/man/ISOGeographicBoundingBox.Rd +++ b/man/ISOGeographicBoundingBox.Rd @@ -63,6 +63,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -83,6 +84,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOGeographicDescription.Rd b/man/ISOGeographicDescription.Rd index f68e5ca9..5de0404c 100644 --- a/man/ISOGeographicDescription.Rd +++ b/man/ISOGeographicDescription.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOGeographicExtent.Rd b/man/ISOGeographicExtent.Rd index 3d8f15c3..a5cf6990 100644 --- a/man/ISOGeographicExtent.Rd +++ b/man/ISOGeographicExtent.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOGeometricObjectType.Rd b/man/ISOGeometricObjectType.Rd index 3bec0a7b..2453e45b 100644 --- a/man/ISOGeometricObjectType.Rd +++ b/man/ISOGeometricObjectType.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOGeometricObjects.Rd b/man/ISOGeometricObjects.Rd index f4eda228..fcd4147b 100644 --- a/man/ISOGeometricObjects.Rd +++ b/man/ISOGeometricObjects.Rd @@ -60,6 +60,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -80,6 +81,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOGeorectified.Rd b/man/ISOGeorectified.Rd index 21bf1de9..3db55886 100644 --- a/man/ISOGeorectified.Rd +++ b/man/ISOGeorectified.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOGridSpatialRepresentation$addDimension()
  • diff --git a/man/ISOGeoreferenceable.Rd b/man/ISOGeoreferenceable.Rd index 5390d6a1..038f8b61 100644 --- a/man/ISOGeoreferenceable.Rd +++ b/man/ISOGeoreferenceable.Rd @@ -89,6 +89,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -109,6 +110,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOGridSpatialRepresentation$addDimension()
  • diff --git a/man/ISOGridSpatialRepresentation.Rd b/man/ISOGridSpatialRepresentation.Rd index f86655c1..b73c1577 100644 --- a/man/ISOGridSpatialRepresentation.Rd +++ b/man/ISOGridSpatialRepresentation.Rd @@ -73,6 +73,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -93,6 +94,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOGriddedDataPositionalAccuracy.Rd b/man/ISOGriddedDataPositionalAccuracy.Rd index 8ef6f7ee..fd05d0d1 100644 --- a/man/ISOGriddedDataPositionalAccuracy.Rd +++ b/man/ISOGriddedDataPositionalAccuracy.Rd @@ -70,6 +70,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -90,6 +91,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOHierarchyLevel.Rd b/man/ISOHierarchyLevel.Rd index 94ba28de..bd65e881 100644 --- a/man/ISOHierarchyLevel.Rd +++ b/man/ISOHierarchyLevel.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOIdentification.Rd b/man/ISOIdentification.Rd index 936b904a..87275e3f 100644 --- a/man/ISOIdentification.Rd +++ b/man/ISOIdentification.Rd @@ -97,6 +97,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -117,6 +118,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOIdentifier.Rd b/man/ISOIdentifier.Rd index 09c1c0ac..fecca53e 100644 --- a/man/ISOIdentifier.Rd +++ b/man/ISOIdentifier.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageDescription.Rd b/man/ISOImageDescription.Rd index 2aebde14..c14dac10 100644 --- a/man/ISOImageDescription.Rd +++ b/man/ISOImageDescription.Rd @@ -130,6 +130,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -150,6 +151,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCoverageDescription$addDimension()
  • diff --git a/man/ISOImageryAbstractGeolocationInformation.Rd b/man/ISOImageryAbstractGeolocationInformation.Rd index c8b59c51..e66ebac2 100644 --- a/man/ISOImageryAbstractGeolocationInformation.Rd +++ b/man/ISOImageryAbstractGeolocationInformation.Rd @@ -47,6 +47,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -67,6 +68,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryAcquisitionInformation.Rd b/man/ISOImageryAcquisitionInformation.Rd index 50c9f7e7..8c4e9bb5 100644 --- a/man/ISOImageryAcquisitionInformation.Rd +++ b/man/ISOImageryAcquisitionInformation.Rd @@ -81,6 +81,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -101,6 +102,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryAlgorithm.Rd b/man/ISOImageryAlgorithm.Rd index f649d1d7..bf26e014 100644 --- a/man/ISOImageryAlgorithm.Rd +++ b/man/ISOImageryAlgorithm.Rd @@ -98,6 +98,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -118,6 +119,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryBand.Rd b/man/ISOImageryBand.Rd index 3cac87ba..45c30a73 100644 --- a/man/ISOImageryBand.Rd +++ b/man/ISOImageryBand.Rd @@ -90,6 +90,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -110,6 +111,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISORangeDimension$setDescriptor()
  • diff --git a/man/ISOImageryBandDefinition.Rd b/man/ISOImageryBandDefinition.Rd index 8ff61413..99adab62 100644 --- a/man/ISOImageryBandDefinition.Rd +++ b/man/ISOImageryBandDefinition.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryContext.Rd b/man/ISOImageryContext.Rd index f2ffde68..bfc598ad 100644 --- a/man/ISOImageryContext.Rd +++ b/man/ISOImageryContext.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryCoverageDescription.Rd b/man/ISOImageryCoverageDescription.Rd index 4a2d177b..25bb9eea 100644 --- a/man/ISOImageryCoverageDescription.Rd +++ b/man/ISOImageryCoverageDescription.Rd @@ -92,6 +92,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -112,6 +113,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCoverageDescription$addDimension()
  • diff --git a/man/ISOImageryCoverageResult.Rd b/man/ISOImageryCoverageResult.Rd index 345a81c6..e5e73606 100644 --- a/man/ISOImageryCoverageResult.Rd +++ b/man/ISOImageryCoverageResult.Rd @@ -63,6 +63,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -83,6 +84,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryEnvironmentalRecord.Rd b/man/ISOImageryEnvironmentalRecord.Rd index df005760..3cc3cff0 100644 --- a/man/ISOImageryEnvironmentalRecord.Rd +++ b/man/ISOImageryEnvironmentalRecord.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryEvent.Rd b/man/ISOImageryEvent.Rd index 129b56e6..1f3012b6 100644 --- a/man/ISOImageryEvent.Rd +++ b/man/ISOImageryEvent.Rd @@ -84,6 +84,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -104,6 +105,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryGCP.Rd b/man/ISOImageryGCP.Rd index 4cf5a411..0be8c3f1 100644 --- a/man/ISOImageryGCP.Rd +++ b/man/ISOImageryGCP.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryGCPCollection.Rd b/man/ISOImageryGCPCollection.Rd index 026d1b7a..4caa9fd5 100644 --- a/man/ISOImageryGCPCollection.Rd +++ b/man/ISOImageryGCPCollection.Rd @@ -97,6 +97,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -117,6 +118,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryGeometryType.Rd b/man/ISOImageryGeometryType.Rd index 027d57ae..895a28de 100644 --- a/man/ISOImageryGeometryType.Rd +++ b/man/ISOImageryGeometryType.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryGeorectified.Rd b/man/ISOImageryGeorectified.Rd index 78b4508e..10855f9d 100644 --- a/man/ISOImageryGeorectified.Rd +++ b/man/ISOImageryGeorectified.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOGridSpatialRepresentation$addDimension()
  • diff --git a/man/ISOImageryGeoreferenceable.Rd b/man/ISOImageryGeoreferenceable.Rd index 81060e06..8a767767 100644 --- a/man/ISOImageryGeoreferenceable.Rd +++ b/man/ISOImageryGeoreferenceable.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOGridSpatialRepresentation$addDimension()
  • diff --git a/man/ISOImageryImageDescription.Rd b/man/ISOImageryImageDescription.Rd index 2a160d74..aa8a7406 100644 --- a/man/ISOImageryImageDescription.Rd +++ b/man/ISOImageryImageDescription.Rd @@ -105,6 +105,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -125,6 +126,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCoverageDescription$addDimension()
  • diff --git a/man/ISOImageryInstrument.Rd b/man/ISOImageryInstrument.Rd index b23d0ba8..94a6e844 100644 --- a/man/ISOImageryInstrument.Rd +++ b/man/ISOImageryInstrument.Rd @@ -72,6 +72,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -92,6 +93,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryMetadata.Rd b/man/ISOImageryMetadata.Rd index df4054f2..0ff18116 100644 --- a/man/ISOImageryMetadata.Rd +++ b/man/ISOImageryMetadata.Rd @@ -367,6 +367,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -387,6 +388,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOMetadata$addContact()
  • diff --git a/man/ISOImageryNominalResolution.Rd b/man/ISOImageryNominalResolution.Rd index 983bc06b..5c195bcf 100644 --- a/man/ISOImageryNominalResolution.Rd +++ b/man/ISOImageryNominalResolution.Rd @@ -65,6 +65,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -85,6 +86,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOImageryObjective.Rd b/man/ISOImageryObjective.Rd index 09de4cf1..07be5f5f 100644 --- a/man/ISOImageryObjective.Rd +++ b/man/ISOImageryObjective.Rd @@ -110,6 +110,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -130,6 +131,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryObjectiveType.Rd b/man/ISOImageryObjectiveType.Rd index bcdb7ea1..4873c04e 100644 --- a/man/ISOImageryObjectiveType.Rd +++ b/man/ISOImageryObjectiveType.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryOperation.Rd b/man/ISOImageryOperation.Rd index 157597b4..c5a32abe 100644 --- a/man/ISOImageryOperation.Rd +++ b/man/ISOImageryOperation.Rd @@ -84,6 +84,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -104,6 +105,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryOperationType.Rd b/man/ISOImageryOperationType.Rd index bf8425ed..b850cbb1 100644 --- a/man/ISOImageryOperationType.Rd +++ b/man/ISOImageryOperationType.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryPlan.Rd b/man/ISOImageryPlan.Rd index f6f6381d..7641141d 100644 --- a/man/ISOImageryPlan.Rd +++ b/man/ISOImageryPlan.Rd @@ -109,6 +109,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -129,6 +130,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryPlatform.Rd b/man/ISOImageryPlatform.Rd index 8733f4a0..bf0121d1 100644 --- a/man/ISOImageryPlatform.Rd +++ b/man/ISOImageryPlatform.Rd @@ -112,6 +112,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -132,6 +133,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryPlatformPass.Rd b/man/ISOImageryPlatformPass.Rd index 6dfb1375..de85aaed 100644 --- a/man/ISOImageryPlatformPass.Rd +++ b/man/ISOImageryPlatformPass.Rd @@ -72,6 +72,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -92,6 +93,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryPolarisationOrientation.Rd b/man/ISOImageryPolarisationOrientation.Rd index 5ff20fd8..98a298fe 100644 --- a/man/ISOImageryPolarisationOrientation.Rd +++ b/man/ISOImageryPolarisationOrientation.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryPriority.Rd b/man/ISOImageryPriority.Rd index 37ed9172..cd805199 100644 --- a/man/ISOImageryPriority.Rd +++ b/man/ISOImageryPriority.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryProcessStep.Rd b/man/ISOImageryProcessStep.Rd index c4dc0d6f..afe9702e 100644 --- a/man/ISOImageryProcessStep.Rd +++ b/man/ISOImageryProcessStep.Rd @@ -134,6 +134,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -154,6 +155,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOProcessStep$addProcessor()
  • diff --git a/man/ISOImageryProcessStepReport.Rd b/man/ISOImageryProcessStepReport.Rd index 280d434a..063e11f6 100644 --- a/man/ISOImageryProcessStepReport.Rd +++ b/man/ISOImageryProcessStepReport.Rd @@ -64,6 +64,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -84,6 +85,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryProcessing.Rd b/man/ISOImageryProcessing.Rd index 7bf84d56..f3ef4829 100644 --- a/man/ISOImageryProcessing.Rd +++ b/man/ISOImageryProcessing.Rd @@ -117,6 +117,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -137,6 +138,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryRangeElementDescription.Rd b/man/ISOImageryRangeElementDescription.Rd index 8338f2a3..8c830e78 100644 --- a/man/ISOImageryRangeElementDescription.Rd +++ b/man/ISOImageryRangeElementDescription.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryRequestedDate.Rd b/man/ISOImageryRequestedDate.Rd index 36aacabc..230b9af8 100644 --- a/man/ISOImageryRequestedDate.Rd +++ b/man/ISOImageryRequestedDate.Rd @@ -62,6 +62,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -82,6 +83,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryRequirement.Rd b/man/ISOImageryRequirement.Rd index 0a2be3fd..8634b1b5 100644 --- a/man/ISOImageryRequirement.Rd +++ b/man/ISOImageryRequirement.Rd @@ -144,6 +144,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -164,6 +165,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImagerySensorType.Rd b/man/ISOImagerySensorType.Rd index d49202c3..60b34b63 100644 --- a/man/ISOImagerySensorType.Rd +++ b/man/ISOImagerySensorType.Rd @@ -47,6 +47,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -67,6 +68,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImagerySequence.Rd b/man/ISOImagerySequence.Rd index e41fd777..5ed4381c 100644 --- a/man/ISOImagerySequence.Rd +++ b/man/ISOImagerySequence.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImagerySource.Rd b/man/ISOImagerySource.Rd index fe2a7aa4..284df824 100644 --- a/man/ISOImagerySource.Rd +++ b/man/ISOImagerySource.Rd @@ -64,6 +64,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -84,6 +85,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOImageryTransferFunctionType.Rd b/man/ISOImageryTransferFunctionType.Rd index d0e96f29..1c4aa9f0 100644 --- a/man/ISOImageryTransferFunctionType.Rd +++ b/man/ISOImageryTransferFunctionType.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -72,6 +73,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryTrigger.Rd b/man/ISOImageryTrigger.Rd index 16baac4d..ac62d763 100644 --- a/man/ISOImageryTrigger.Rd +++ b/man/ISOImageryTrigger.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOImageryUsability.Rd b/man/ISOImageryUsability.Rd index 468983b8..0f31e559 100644 --- a/man/ISOImageryUsability.Rd +++ b/man/ISOImageryUsability.Rd @@ -47,6 +47,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -67,6 +68,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOImagingCondition.Rd b/man/ISOImagingCondition.Rd index 248bf25a..efd211e2 100644 --- a/man/ISOImagingCondition.Rd +++ b/man/ISOImagingCondition.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOInheritanceRelation.Rd b/man/ISOInheritanceRelation.Rd index df75cee2..ecac769c 100644 --- a/man/ISOInheritanceRelation.Rd +++ b/man/ISOInheritanceRelation.Rd @@ -60,6 +60,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -81,6 +82,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOInitiative.Rd b/man/ISOInitiative.Rd index 7f28bb96..02e41030 100644 --- a/man/ISOInitiative.Rd +++ b/man/ISOInitiative.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractAggregate$addComposedOf()
  • diff --git a/man/ISOInitiativeType.Rd b/man/ISOInitiativeType.Rd index ff21c57d..568374b8 100644 --- a/man/ISOInitiativeType.Rd +++ b/man/ISOInitiativeType.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOKeywordType.Rd b/man/ISOKeywordType.Rd index 55d0dc90..127ee3d8 100644 --- a/man/ISOKeywordType.Rd +++ b/man/ISOKeywordType.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOKeywords.Rd b/man/ISOKeywords.Rd index 549c442b..eff1a575 100644 --- a/man/ISOKeywords.Rd +++ b/man/ISOKeywords.Rd @@ -104,6 +104,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -124,6 +125,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOLanguage.Rd b/man/ISOLanguage.Rd index c4457ffb..a5d26c2f 100644 --- a/man/ISOLanguage.Rd +++ b/man/ISOLanguage.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOLegalConstraints.Rd b/man/ISOLegalConstraints.Rd index 98fcde6f..e25fe959 100644 --- a/man/ISOLegalConstraints.Rd +++ b/man/ISOLegalConstraints.Rd @@ -73,6 +73,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -93,6 +94,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOConstraints$addUseLimitation()
  • diff --git a/man/ISOLength.Rd b/man/ISOLength.Rd index 26371272..5005faaf 100644 --- a/man/ISOLength.Rd +++ b/man/ISOLength.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOLineage.Rd b/man/ISOLineage.Rd index 6e3619f3..6a9211db 100644 --- a/man/ISOLineage.Rd +++ b/man/ISOLineage.Rd @@ -91,6 +91,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -111,6 +112,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOListedValue.Rd b/man/ISOListedValue.Rd index 1c0109ed..dc41e162 100644 --- a/man/ISOListedValue.Rd +++ b/man/ISOListedValue.Rd @@ -67,6 +67,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -87,6 +88,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOLocalName.Rd b/man/ISOLocalName.Rd index a12a3467..e332c9dd 100644 --- a/man/ISOLocalName.Rd +++ b/man/ISOLocalName.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOLocale.Rd b/man/ISOLocale.Rd index c0264d93..0ce49e82 100644 --- a/man/ISOLocale.Rd +++ b/man/ISOLocale.Rd @@ -64,6 +64,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -83,6 +84,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOLocaleContainer.Rd b/man/ISOLocaleContainer.Rd index 63936ce4..d95938c3 100644 --- a/man/ISOLocaleContainer.Rd +++ b/man/ISOLocaleContainer.Rd @@ -65,6 +65,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -85,6 +86,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOLocalisedCharacterString.Rd b/man/ISOLocalisedCharacterString.Rd index 19d031db..20852b20 100644 --- a/man/ISOLocalisedCharacterString.Rd +++ b/man/ISOLocalisedCharacterString.Rd @@ -48,6 +48,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -68,6 +69,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMLCodeDefinition.Rd b/man/ISOMLCodeDefinition.Rd new file mode 100644 index 00000000..bbb458d1 --- /dev/null +++ b/man/ISOMLCodeDefinition.Rd @@ -0,0 +1,110 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOMLCodeDefinition.R +\docType{class} +\name{ISOMLCodeDefinition} +\alias{ISOMLCodeDefinition} +\title{ISOMLCodeDefinition} +\format{ +\code{\link{R6Class}} object. +} +\value{ +Object of \code{\link{R6Class}} for modelling an ISO Metadata code definition +} +\description{ +ISOMLCodeDefinition + +ISOMLCodeDefinition +} +\note{ +Abstract ISO codelist class used internally by geometa +} +\references{ +ISO/TS 19139:2007 Geographic information -- XML +} +\author{ +Emmanuel Blondel +} +\keyword{ISO} +\keyword{code} +\keyword{definition} +\section{Super classes}{ +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOCodeDefinition]{geometa::ISOCodeDefinition}} -> \code{ISOMLCodeDefinition} +} +\section{Methods}{ +\subsection{Public methods}{ +\itemize{ +\item \href{#method-ISOMLCodeDefinition-new}{\code{ISOMLCodeDefinition$new()}} +\item \href{#method-ISOMLCodeDefinition-clone}{\code{ISOMLCodeDefinition$clone()}} +} +} +\if{html}{\out{ +
    Inherited methods + +
    +}} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOMLCodeDefinition-new}{}}} +\subsection{Method \code{new()}}{ +Initializes object +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOMLCodeDefinition$new(xml = NULL)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{xml}}{object of class \link{XMLInternalNode-class}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOMLCodeDefinition-clone}{}}} +\subsection{Method \code{clone()}}{ +The objects of this class are cloneable with this method. +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOMLCodeDefinition$clone(deep = FALSE)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{deep}}{Whether to make a deep clone.} +} +\if{html}{\out{
    }} +} +} +} diff --git a/man/ISOMLCodeListDictionary.Rd b/man/ISOMLCodeListDictionary.Rd new file mode 100644 index 00000000..27e11d99 --- /dev/null +++ b/man/ISOMLCodeListDictionary.Rd @@ -0,0 +1,110 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOMLCodeListDictionary.R +\docType{class} +\name{ISOMLCodeListDictionary} +\alias{ISOMLCodeListDictionary} +\title{ISOMLCodeListDictionary} +\format{ +\code{\link{R6Class}} object. +} +\value{ +Object of \code{\link{R6Class}} for modelling an ISO Metadata codelist dictionary +} +\description{ +ISOMLCodeListDictionary + +ISOMLCodeListDictionary +} +\note{ +Abstract ISO codelist class used internally by geometa +} +\references{ +ISO/TS 19139:2007 Geographic information -- XML +} +\author{ +Emmanuel Blondel +} +\keyword{ISO} +\keyword{code} +\keyword{element} +\section{Super classes}{ +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOCodeListDictionary]{geometa::ISOCodeListDictionary}} -> \code{ISOMLCodeListDictionary} +} +\section{Methods}{ +\subsection{Public methods}{ +\itemize{ +\item \href{#method-ISOMLCodeListDictionary-new}{\code{ISOMLCodeListDictionary$new()}} +\item \href{#method-ISOMLCodeListDictionary-clone}{\code{ISOMLCodeListDictionary$clone()}} +} +} +\if{html}{\out{ +
    Inherited methods + +
    +}} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOMLCodeListDictionary-new}{}}} +\subsection{Method \code{new()}}{ +Initializes object +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOMLCodeListDictionary$new(xml = NULL)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{xml}}{object of class \link{XMLInternalNode-class}} +} +\if{html}{\out{
    }} +} +} +\if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOMLCodeListDictionary-clone}{}}} +\subsection{Method \code{clone()}}{ +The objects of this class are cloneable with this method. +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOMLCodeListDictionary$clone(deep = FALSE)}\if{html}{\out{
    }} +} + +\subsection{Arguments}{ +\if{html}{\out{
    }} +\describe{ +\item{\code{deep}}{Whether to make a deep clone.} +} +\if{html}{\out{
    }} +} +} +} diff --git a/man/ISOMaintenanceFrequency.Rd b/man/ISOMaintenanceFrequency.Rd index 9ae17145..4ccb3c69 100644 --- a/man/ISOMaintenanceFrequency.Rd +++ b/man/ISOMaintenanceFrequency.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOMaintenanceInformation.Rd b/man/ISOMaintenanceInformation.Rd index 856c6a75..401a4997 100644 --- a/man/ISOMaintenanceInformation.Rd +++ b/man/ISOMaintenanceInformation.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMeasure.Rd b/man/ISOMeasure.Rd index 55c464ed..e832619c 100644 --- a/man/ISOMeasure.Rd +++ b/man/ISOMeasure.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMedium.Rd b/man/ISOMedium.Rd index 59b4e174..84a4d051 100644 --- a/man/ISOMedium.Rd +++ b/man/ISOMedium.Rd @@ -77,6 +77,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -97,6 +98,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMediumFormat.Rd b/man/ISOMediumFormat.Rd index f695e600..558deac4 100644 --- a/man/ISOMediumFormat.Rd +++ b/man/ISOMediumFormat.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOMediumName.Rd b/man/ISOMediumName.Rd index 3954fc0d..9f854ec8 100644 --- a/man/ISOMediumName.Rd +++ b/man/ISOMediumName.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOMemberName.Rd b/man/ISOMemberName.Rd index fccbd17d..fc95539d 100644 --- a/man/ISOMemberName.Rd +++ b/man/ISOMemberName.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -72,6 +73,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMetaIdentifier.Rd b/man/ISOMetaIdentifier.Rd index d87d4a16..cded915e 100644 --- a/man/ISOMetaIdentifier.Rd +++ b/man/ISOMetaIdentifier.Rd @@ -47,6 +47,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -67,6 +68,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOIdentifier$setAuthority()
  • diff --git a/man/ISOMetadata.Rd b/man/ISOMetadata.Rd index 5677201d..2f4d5066 100644 --- a/man/ISOMetadata.Rd +++ b/man/ISOMetadata.Rd @@ -441,6 +441,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -461,6 +462,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMetadataExtensionInformation.Rd b/man/ISOMetadataExtensionInformation.Rd index cec52098..4f4fe734 100644 --- a/man/ISOMetadataExtensionInformation.Rd +++ b/man/ISOMetadataExtensionInformation.Rd @@ -100,6 +100,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -120,6 +121,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMetadataNamespace.Rd b/man/ISOMetadataNamespace.Rd index 5912c7e8..40722479 100644 --- a/man/ISOMetadataNamespace.Rd +++ b/man/ISOMetadataNamespace.Rd @@ -30,6 +30,8 @@ Emmanuel Blondel \item{\code{id}}{id} \item{\code{uri}}{uri} + +\item{\code{standard}}{standard} } \if{html}{\out{
    }} } @@ -38,6 +40,7 @@ Emmanuel Blondel \itemize{ \item \href{#method-ISOMetadataNamespace-new}{\code{ISOMetadataNamespace$new()}} \item \href{#method-ISOMetadataNamespace-getDefinition}{\code{ISOMetadataNamespace$getDefinition()}} +\item \href{#method-ISOMetadataNamespace-getStandard}{\code{ISOMetadataNamespace$getStandard()}} \item \href{#method-ISOMetadataNamespace-clone}{\code{ISOMetadataNamespace$clone()}} } } @@ -47,7 +50,7 @@ Emmanuel Blondel \subsection{Method \code{new()}}{ Initializes namespace object \subsection{Usage}{ -\if{html}{\out{
    }}\preformatted{ISOMetadataNamespace$new(id, uri)}\if{html}{\out{
    }} +\if{html}{\out{
    }}\preformatted{ISOMetadataNamespace$new(id, uri, standard)}\if{html}{\out{
    }} } \subsection{Arguments}{ @@ -56,6 +59,8 @@ Initializes namespace object \item{\code{id}}{id} \item{\code{uri}}{uri} + +\item{\code{standard}}{standard} } \if{html}{\out{}} } @@ -74,6 +79,19 @@ an object of class \link{list} } } \if{html}{\out{
    }} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-ISOMetadataNamespace-getStandard}{}}} +\subsection{Method \code{getStandard()}}{ +Get standard +\subsection{Usage}{ +\if{html}{\out{
    }}\preformatted{ISOMetadataNamespace$getStandard()}\if{html}{\out{
    }} +} + +\subsection{Returns}{ +object of class \link{data.frame} +} +} +\if{html}{\out{
    }} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-ISOMetadataNamespace-clone}{}}} \subsection{Method \code{clone()}}{ diff --git a/man/ISOMimeFileType.Rd b/man/ISOMimeFileType.Rd index 3663fc03..c9916caa 100644 --- a/man/ISOMimeFileType.Rd +++ b/man/ISOMimeFileType.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMultiplicity.Rd b/man/ISOMultiplicity.Rd index 613ca103..c4c22967 100644 --- a/man/ISOMultiplicity.Rd +++ b/man/ISOMultiplicity.Rd @@ -53,6 +53,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOMultiplicityRange.Rd b/man/ISOMultiplicityRange.Rd index 70d784f8..2aa55014 100644 --- a/man/ISOMultiplicityRange.Rd +++ b/man/ISOMultiplicityRange.Rd @@ -56,6 +56,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -76,6 +77,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISONonQuantitativeAttributeAccuracy.Rd b/man/ISONonQuantitativeAttributeAccuracy.Rd index 6565bc42..27692911 100644 --- a/man/ISONonQuantitativeAttributeAccuracy.Rd +++ b/man/ISONonQuantitativeAttributeAccuracy.Rd @@ -70,6 +70,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -90,6 +91,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOObligation.Rd b/man/ISOObligation.Rd index 47ebf93b..108dac55 100644 --- a/man/ISOObligation.Rd +++ b/man/ISOObligation.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOOnLineFunction.Rd b/man/ISOOnLineFunction.Rd index 9637d917..7a4a4f45 100644 --- a/man/ISOOnLineFunction.Rd +++ b/man/ISOOnLineFunction.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOOnlineResource.Rd b/man/ISOOnlineResource.Rd index 70c5a95a..3b74b489 100644 --- a/man/ISOOnlineResource.Rd +++ b/man/ISOOnlineResource.Rd @@ -72,6 +72,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -92,6 +93,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOOperationMetadata.Rd b/man/ISOOperationMetadata.Rd index 4871c304..5ff54bee 100644 --- a/man/ISOOperationMetadata.Rd +++ b/man/ISOOperationMetadata.Rd @@ -76,6 +76,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -96,6 +97,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOOtherAggregate.Rd b/man/ISOOtherAggregate.Rd index 7e64e244..023eb848 100644 --- a/man/ISOOtherAggregate.Rd +++ b/man/ISOOtherAggregate.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractAggregate$addComposedOf()
  • diff --git a/man/ISOParameter.Rd b/man/ISOParameter.Rd index f5ab8f12..dc61b226 100644 --- a/man/ISOParameter.Rd +++ b/man/ISOParameter.Rd @@ -75,6 +75,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -95,6 +96,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOParameterDirection.Rd b/man/ISOParameterDirection.Rd index 13196483..43e1d8de 100644 --- a/man/ISOParameterDirection.Rd +++ b/man/ISOParameterDirection.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOPixelOrientation.Rd b/man/ISOPixelOrientation.Rd index ca9e1106..da1c6631 100644 --- a/man/ISOPixelOrientation.Rd +++ b/man/ISOPixelOrientation.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOPlatform.Rd b/man/ISOPlatform.Rd index 262fe58d..5ef4f552 100644 --- a/man/ISOPlatform.Rd +++ b/man/ISOPlatform.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractAggregate$addComposedOf()
  • diff --git a/man/ISOPortrayalCatalogueReference.Rd b/man/ISOPortrayalCatalogueReference.Rd index f497d168..d1668083 100644 --- a/man/ISOPortrayalCatalogueReference.Rd +++ b/man/ISOPortrayalCatalogueReference.Rd @@ -93,6 +93,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -113,6 +114,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOPresentationForm.Rd b/man/ISOPresentationForm.Rd index 29138f01..70892c43 100644 --- a/man/ISOPresentationForm.Rd +++ b/man/ISOPresentationForm.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOProcessStep.Rd b/man/ISOProcessStep.Rd index 255339b9..7f57c179 100644 --- a/man/ISOProcessStep.Rd +++ b/man/ISOProcessStep.Rd @@ -75,6 +75,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -95,6 +96,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOProductionSeries.Rd b/man/ISOProductionSeries.Rd index 566419b1..726b1f59 100644 --- a/man/ISOProductionSeries.Rd +++ b/man/ISOProductionSeries.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractAggregate$addComposedOf()
  • diff --git a/man/ISOPropertyType.Rd b/man/ISOPropertyType.Rd index d14fdea3..f8899481 100644 --- a/man/ISOPropertyType.Rd +++ b/man/ISOPropertyType.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractCarrierOfCharacteristics$addConstraint()
  • diff --git a/man/ISOQuantitativeAttributeAccuracy.Rd b/man/ISOQuantitativeAttributeAccuracy.Rd index 4d6fd7a0..4e16cd0e 100644 --- a/man/ISOQuantitativeAttributeAccuracy.Rd +++ b/man/ISOQuantitativeAttributeAccuracy.Rd @@ -70,6 +70,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -90,6 +91,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOQuantitativeResult.Rd b/man/ISOQuantitativeResult.Rd index 05dc401c..a5fd5ee7 100644 --- a/man/ISOQuantitativeResult.Rd +++ b/man/ISOQuantitativeResult.Rd @@ -65,6 +65,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -85,6 +86,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISORangeDimension.Rd b/man/ISORangeDimension.Rd index 96898f51..5edbc232 100644 --- a/man/ISORangeDimension.Rd +++ b/man/ISORangeDimension.Rd @@ -61,6 +61,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -81,6 +82,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISORecord.Rd b/man/ISORecord.Rd index ab117871..fe1e46a9 100644 --- a/man/ISORecord.Rd +++ b/man/ISORecord.Rd @@ -48,6 +48,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -68,6 +69,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISORecordType.Rd b/man/ISORecordType.Rd index 78878836..cf127f3b 100644 --- a/man/ISORecordType.Rd +++ b/man/ISORecordType.Rd @@ -48,6 +48,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -68,6 +69,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOReferenceIdentifier.Rd b/man/ISOReferenceIdentifier.Rd index 575acc85..899c56d0 100644 --- a/man/ISOReferenceIdentifier.Rd +++ b/man/ISOReferenceIdentifier.Rd @@ -58,6 +58,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOIdentifier$setAuthority()
  • diff --git a/man/ISOReferenceSystem.Rd b/man/ISOReferenceSystem.Rd index 6494954c..e539633c 100644 --- a/man/ISOReferenceSystem.Rd +++ b/man/ISOReferenceSystem.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISORelativeInternalPositionalAccuracy.Rd b/man/ISORelativeInternalPositionalAccuracy.Rd index 3952d00d..96683bea 100644 --- a/man/ISORelativeInternalPositionalAccuracy.Rd +++ b/man/ISORelativeInternalPositionalAccuracy.Rd @@ -71,6 +71,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -91,6 +92,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISORepresentativeFraction.Rd b/man/ISORepresentativeFraction.Rd index 8bba92f6..23fc8e48 100644 --- a/man/ISORepresentativeFraction.Rd +++ b/man/ISORepresentativeFraction.Rd @@ -57,6 +57,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -77,6 +78,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOResolution.Rd b/man/ISOResolution.Rd index 5fa9fe7c..c3ab850e 100644 --- a/man/ISOResolution.Rd +++ b/man/ISOResolution.Rd @@ -58,6 +58,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -78,6 +79,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOResponsibleParty.Rd b/man/ISOResponsibleParty.Rd index 98a9d35a..fc0f5083 100644 --- a/man/ISOResponsibleParty.Rd +++ b/man/ISOResponsibleParty.Rd @@ -92,6 +92,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -112,6 +113,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISORestriction.Rd b/man/ISORestriction.Rd index 5795594b..59301673 100644 --- a/man/ISORestriction.Rd +++ b/man/ISORestriction.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISORole.Rd b/man/ISORole.Rd index f8720a5b..6437a54a 100644 --- a/man/ISORole.Rd +++ b/man/ISORole.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISORoleType.Rd b/man/ISORoleType.Rd index 92653f94..6e9cc2cb 100644 --- a/man/ISORoleType.Rd +++ b/man/ISORoleType.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOSRVServiceIdentification.Rd b/man/ISOSRVServiceIdentification.Rd index 0de91b86..a3e3c886 100644 --- a/man/ISOSRVServiceIdentification.Rd +++ b/man/ISOSRVServiceIdentification.Rd @@ -267,6 +267,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -287,6 +288,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOIdentification$addAggregateInformation()
  • diff --git a/man/ISOScale.Rd b/man/ISOScale.Rd index e733aa47..ce9d5239 100644 --- a/man/ISOScale.Rd +++ b/man/ISOScale.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOScope.Rd b/man/ISOScope.Rd index 336bed4e..8c0437a7 100644 --- a/man/ISOScope.Rd +++ b/man/ISOScope.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOScopeDescription.Rd b/man/ISOScopeDescription.Rd index 6a60b9a7..7e85abc5 100644 --- a/man/ISOScopeDescription.Rd +++ b/man/ISOScopeDescription.Rd @@ -72,6 +72,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -92,6 +93,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOScopedName.Rd b/man/ISOScopedName.Rd index 2629ee7f..5d30e657 100644 --- a/man/ISOScopedName.Rd +++ b/man/ISOScopedName.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOSecurityConstraints.Rd b/man/ISOSecurityConstraints.Rd index 32ba26e4..ea0d4e3c 100644 --- a/man/ISOSecurityConstraints.Rd +++ b/man/ISOSecurityConstraints.Rd @@ -70,6 +70,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -90,6 +91,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOConstraints$addUseLimitation()
  • diff --git a/man/ISOSensor.Rd b/man/ISOSensor.Rd index 7c2844ef..c45aa778 100644 --- a/man/ISOSensor.Rd +++ b/man/ISOSensor.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractAggregate$addComposedOf()
  • diff --git a/man/ISOSeries.Rd b/man/ISOSeries.Rd index 2a9d2561..16bfc238 100644 --- a/man/ISOSeries.Rd +++ b/man/ISOSeries.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractAggregate$addComposedOf()
  • diff --git a/man/ISOServiceIdentification.Rd b/man/ISOServiceIdentification.Rd index 5b543fd8..3b4672f3 100644 --- a/man/ISOServiceIdentification.Rd +++ b/man/ISOServiceIdentification.Rd @@ -114,6 +114,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -134,6 +135,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOIdentification$addAggregateInformation()
  • diff --git a/man/ISOSource.Rd b/man/ISOSource.Rd index 4645ba09..9404bc09 100644 --- a/man/ISOSource.Rd +++ b/man/ISOSource.Rd @@ -87,6 +87,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -107,6 +108,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOSpatialRepresentation.Rd b/man/ISOSpatialRepresentation.Rd index a0640477..09855111 100644 --- a/man/ISOSpatialRepresentation.Rd +++ b/man/ISOSpatialRepresentation.Rd @@ -44,6 +44,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -64,6 +65,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOSpatialRepresentationType.Rd b/man/ISOSpatialRepresentationType.Rd index 3cf6cf2f..c76a3735 100644 --- a/man/ISOSpatialRepresentationType.Rd +++ b/man/ISOSpatialRepresentationType.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOSpatialTemporalExtent.Rd b/man/ISOSpatialTemporalExtent.Rd index d586f449..e3bb00b1 100644 --- a/man/ISOSpatialTemporalExtent.Rd +++ b/man/ISOSpatialTemporalExtent.Rd @@ -64,6 +64,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -84,6 +85,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOTemporalExtent$setTimeInstant()
  • diff --git a/man/ISOStandardOrderProcess.Rd b/man/ISOStandardOrderProcess.Rd index da4a8f4b..9bffdec6 100644 --- a/man/ISOStandardOrderProcess.Rd +++ b/man/ISOStandardOrderProcess.Rd @@ -67,6 +67,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -87,6 +88,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOStatus.Rd b/man/ISOStatus.Rd index 0367c0fb..d77d7091 100644 --- a/man/ISOStatus.Rd +++ b/man/ISOStatus.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOStereoMate.Rd b/man/ISOStereoMate.Rd index dfe299ee..875b6cc3 100644 --- a/man/ISOStereoMate.Rd +++ b/man/ISOStereoMate.Rd @@ -42,6 +42,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -62,6 +63,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOAbstractAggregate$addComposedOf()
  • diff --git a/man/ISOTelephone.Rd b/man/ISOTelephone.Rd index 704fdfcc..c8b95fd8 100644 --- a/man/ISOTelephone.Rd +++ b/man/ISOTelephone.Rd @@ -60,6 +60,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -80,6 +81,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOTemporalConsistency.Rd b/man/ISOTemporalConsistency.Rd index 663de69e..f95ae277 100644 --- a/man/ISOTemporalConsistency.Rd +++ b/man/ISOTemporalConsistency.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOTemporalExtent.Rd b/man/ISOTemporalExtent.Rd index 1f75fc20..497dfb4f 100644 --- a/man/ISOTemporalExtent.Rd +++ b/man/ISOTemporalExtent.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOTemporalValidity.Rd b/man/ISOTemporalValidity.Rd index 5164bbc4..9966b3f9 100644 --- a/man/ISOTemporalValidity.Rd +++ b/man/ISOTemporalValidity.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOThematicClassificationCorrectness.Rd b/man/ISOThematicClassificationCorrectness.Rd index 037c54a3..3a37d71b 100644 --- a/man/ISOThematicClassificationCorrectness.Rd +++ b/man/ISOThematicClassificationCorrectness.Rd @@ -71,6 +71,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -91,6 +92,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOTopicCategory.Rd b/man/ISOTopicCategory.Rd index d8a79ca8..f8ded67c 100644 --- a/man/ISOTopicCategory.Rd +++ b/man/ISOTopicCategory.Rd @@ -50,6 +50,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -70,6 +71,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOTopologicalConsistency.Rd b/man/ISOTopologicalConsistency.Rd index 7168f38a..1eeb4262 100644 --- a/man/ISOTopologicalConsistency.Rd +++ b/man/ISOTopologicalConsistency.Rd @@ -69,6 +69,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -89,6 +90,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISODataQualityAbstractElement$addNameOfMeasure()
  • diff --git a/man/ISOTopologyLevel.Rd b/man/ISOTopologyLevel.Rd index 32f789f1..74cf9938 100644 --- a/man/ISOTopologyLevel.Rd +++ b/man/ISOTopologyLevel.Rd @@ -51,6 +51,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::ISOCodeListValue$getAcceptedValues()
  • diff --git a/man/ISOTypeName.Rd b/man/ISOTypeName.Rd index 01a30d42..e3d9f5c3 100644 --- a/man/ISOTypeName.Rd +++ b/man/ISOTypeName.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOURL.Rd b/man/ISOURL.Rd index ebc48c78..5c270dd1 100644 --- a/man/ISOURL.Rd +++ b/man/ISOURL.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -72,6 +73,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOUnlimitedInteger.Rd b/man/ISOUnlimitedInteger.Rd index 830fd729..52dd2104 100644 --- a/man/ISOUnlimitedInteger.Rd +++ b/man/ISOUnlimitedInteger.Rd @@ -54,6 +54,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOUsage.Rd b/man/ISOUsage.Rd index e001d305..c45a6a3b 100644 --- a/man/ISOUsage.Rd +++ b/man/ISOUsage.Rd @@ -59,6 +59,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -79,6 +80,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOVectorSpatialRepresentation.Rd b/man/ISOVectorSpatialRepresentation.Rd index b106e4b5..ba6dbb21 100644 --- a/man/ISOVectorSpatialRepresentation.Rd +++ b/man/ISOVectorSpatialRepresentation.Rd @@ -64,6 +64,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -84,6 +85,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/ISOVerticalExtent.Rd b/man/ISOVerticalExtent.Rd index d80a851b..fb099ecd 100644 --- a/man/ISOVerticalExtent.Rd +++ b/man/ISOVerticalExtent.Rd @@ -66,6 +66,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -86,6 +87,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWEAbstractDataComponent.Rd b/man/SWEAbstractDataComponent.Rd index 2c231f88..eed6ecba 100644 --- a/man/SWEAbstractDataComponent.Rd +++ b/man/SWEAbstractDataComponent.Rd @@ -53,6 +53,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWEAbstractEncoding.Rd b/man/SWEAbstractEncoding.Rd index 6f17a14b..8e1f975c 100644 --- a/man/SWEAbstractEncoding.Rd +++ b/man/SWEAbstractEncoding.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWEAbstractObject.Rd b/man/SWEAbstractObject.Rd index 334a41d3..582d8eda 100644 --- a/man/SWEAbstractObject.Rd +++ b/man/SWEAbstractObject.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWEAbstractSWE.Rd b/man/SWEAbstractSWE.Rd index 14ced8a7..a90644c8 100644 --- a/man/SWEAbstractSWE.Rd +++ b/man/SWEAbstractSWE.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWEAbstractSWEIdentifiable.Rd b/man/SWEAbstractSWEIdentifiable.Rd index 174ab0c7..28f5fb8d 100644 --- a/man/SWEAbstractSWEIdentifiable.Rd +++ b/man/SWEAbstractSWEIdentifiable.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -75,6 +76,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWEAbstractSimpleComponent.Rd b/man/SWEAbstractSimpleComponent.Rd index cc7c86fc..c4959470 100644 --- a/man/SWEAbstractSimpleComponent.Rd +++ b/man/SWEAbstractSimpleComponent.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWECategory.Rd b/man/SWECategory.Rd index 06782939..2f7cd8ed 100644 --- a/man/SWECategory.Rd +++ b/man/SWECategory.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWECategoryRange.Rd b/man/SWECategoryRange.Rd index ab4b1713..f77bc379 100644 --- a/man/SWECategoryRange.Rd +++ b/man/SWECategoryRange.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWECount.Rd b/man/SWECount.Rd index 54c831d2..ca5d237c 100644 --- a/man/SWECount.Rd +++ b/man/SWECount.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWECountRange.Rd b/man/SWECountRange.Rd index a571e7b0..eecc7798 100644 --- a/man/SWECountRange.Rd +++ b/man/SWECountRange.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWEDataRecord.Rd b/man/SWEDataRecord.Rd index fe8e6d16..2d17d4c1 100644 --- a/man/SWEDataRecord.Rd +++ b/man/SWEDataRecord.Rd @@ -53,6 +53,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -73,6 +74,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWEElement.Rd b/man/SWEElement.Rd index 8b834f8d..b202b314 100644 --- a/man/SWEElement.Rd +++ b/man/SWEElement.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$delListElement()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWENilValues.Rd b/man/SWENilValues.Rd index 8de2c396..348d899d 100644 --- a/man/SWENilValues.Rd +++ b/man/SWENilValues.Rd @@ -49,6 +49,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -69,6 +70,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWEQuantity.Rd b/man/SWEQuantity.Rd index 57609782..609a4739 100644 --- a/man/SWEQuantity.Rd +++ b/man/SWEQuantity.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWEQuantityRange.Rd b/man/SWEQuantityRange.Rd index b0bd3630..d9183191 100644 --- a/man/SWEQuantityRange.Rd +++ b/man/SWEQuantityRange.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWEText.Rd b/man/SWEText.Rd index ad10512d..1f6e8b42 100644 --- a/man/SWEText.Rd +++ b/man/SWEText.Rd @@ -52,6 +52,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -71,6 +72,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWETextEncoding.Rd b/man/SWETextEncoding.Rd index f2adbdcf..c82893c3 100644 --- a/man/SWETextEncoding.Rd +++ b/man/SWETextEncoding.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/SWETime.Rd b/man/SWETime.Rd index 8ea3d6d9..fe67e9d2 100644 --- a/man/SWETime.Rd +++ b/man/SWETime.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWETimeRange.Rd b/man/SWETimeRange.Rd index 0df11955..a541c113 100644 --- a/man/SWETimeRange.Rd +++ b/man/SWETimeRange.Rd @@ -55,6 +55,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -74,6 +75,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setHref()
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • geometa::SWEAbstractSWEIdentifiable$setDescription()
  • diff --git a/man/SWEXMLEncoding.Rd b/man/SWEXMLEncoding.Rd index c116d091..177f9c91 100644 --- a/man/SWEXMLEncoding.Rd +++ b/man/SWEXMLEncoding.Rd @@ -41,6 +41,7 @@ Emmanuel Blondel
  • geometa::geometaLogger$WARN()
  • geometa::ISOAbstractObject$addFieldAttrs()
  • geometa::ISOAbstractObject$addListElement()
  • +
  • geometa::ISOAbstractObject$checkMetadataStandardCompliance()
  • geometa::ISOAbstractObject$contains()
  • geometa::ISOAbstractObject$createLocalisedProperty()
  • geometa::ISOAbstractObject$decode()
  • @@ -61,6 +62,7 @@ Emmanuel Blondel
  • geometa::ISOAbstractObject$setId()
  • geometa::ISOAbstractObject$setIsNull()
  • geometa::ISOAbstractObject$setValue()
  • +
  • geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()
  • geometa::ISOAbstractObject$validate()
  • geometa::ISOAbstractObject$wrapBaseElement()
  • diff --git a/man/geometa_coverage.Rd b/man/geometa_coverage.Rd index f7070378..9e3ef826 100644 --- a/man/geometa_coverage.Rd +++ b/man/geometa_coverage.Rd @@ -7,6 +7,9 @@ \usage{ geometa_coverage() } +\arguments{ +\item{version}{main metadata standard version} +} \value{ an object of class \code{data.frame} } @@ -21,7 +24,7 @@ of ISO/OGC standards in \pkg{geometa}. } \examples{ \donttest{ - cov <- geometa_coverage() + cov <- geometa_coverage(version = "19115-3") } } diff --git a/man/getISOMetadataSchemaFile.Rd b/man/getISOMetadataSchemaFile.Rd new file mode 100644 index 00000000..5140299d --- /dev/null +++ b/man/getISOMetadataSchemaFile.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOMetadataSchemas.R +\name{getISOMetadataSchemaFile} +\alias{getISOMetadataSchemaFile} +\title{getISOMetadataSchemaFile} +\usage{ +getISOMetadataSchemaFile(version = "19115-1/2") +} +\description{ +getISOMetadataSchemaFile +} diff --git a/man/getMetadataStandard.Rd b/man/getMetadataStandard.Rd new file mode 100644 index 00000000..30a881c9 --- /dev/null +++ b/man/getMetadataStandard.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOMetadataSchemas.R +\name{getMetadataStandard} +\alias{getMetadataStandard} +\title{getMetadataStandard} +\usage{ +getMetadataStandard() +} +\description{ +\code{getMetadataStandard} allows to set the standard to use for encoding/decoding in \pkg{geometa}. +} +\examples{ + + getMetadataStandard() + +} +\author{ +Emmanuel Blondel, \email{emmanuel.blondel1@gmail.com} +} diff --git a/man/setISOMetadataNamespaces.Rd b/man/setISOMetadataNamespaces.Rd index b1bb2723..cf3184f6 100644 --- a/man/setISOMetadataNamespaces.Rd +++ b/man/setISOMetadataNamespaces.Rd @@ -4,7 +4,7 @@ \alias{setISOMetadataNamespaces} \title{setMetadataNamespaces} \usage{ -setISOMetadataNamespaces() +setISOMetadataNamespaces(version = "19115-1/2") } \description{ setMetadataNamespaces diff --git a/man/setISOMetadataSchemas.Rd b/man/setISOMetadataSchemas.Rd index dca34a6a..3292e1b7 100644 --- a/man/setISOMetadataSchemas.Rd +++ b/man/setISOMetadataSchemas.Rd @@ -4,7 +4,7 @@ \alias{setISOMetadataSchemas} \title{setISOMetadataSchemas} \usage{ -setISOMetadataSchemas() +setISOMetadataSchemas(version = "19115-1/2") } \description{ setISOMetadataSchemas diff --git a/man/setMetadataStandard.Rd b/man/setMetadataStandard.Rd new file mode 100644 index 00000000..9b3dcfb4 --- /dev/null +++ b/man/setMetadataStandard.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ISOMetadataSchemas.R +\name{setMetadataStandard} +\alias{setMetadataStandard} +\title{setMetadataStandard} +\usage{ +setMetadataStandard(version) +} +\arguments{ +\item{version}{the standard version} +} +\description{ +\code{setMetadataStandard} allows to set the standard to use for encoding/decoding in \pkg{geometa}. + By default the standard "19115-1/2" will be used. Possible alternative value "19115-3" +} +\examples{ + + setMetadataStandard(version = "19115-3") + +} +\author{ +Emmanuel Blondel, \email{emmanuel.blondel1@gmail.com} +} diff --git a/tests/testthat/test_ISOCodelistCatalogue.R b/tests/testthat/test_ISOCodelistCatalogue.R new file mode 100644 index 00000000..92b74577 --- /dev/null +++ b/tests/testthat/test_ISOCodelistCatalogue.R @@ -0,0 +1,18 @@ +# test_ISOCodelistCatalogue.R +# Author: Emmanuel Blondel +# +# Description: Unit tests for ISOCodelistCatalogue.R +#======================= +require(geometa, quietly = TRUE) +require(testthat) +require(XML) + +context("ISOCodelistCatalogue") + +test_that("encoding",{ + testthat::skip_on_cran() + #TODO performance!!!!!! + system.time(cat <- ISOCodelistCatalogue$new(xml = XML::xmlRoot(XML::xmlParse("inst/extdata/codelists/gmxCodelists.xml")))) + system.time(mlcat <- ISOCodelistCatalogue$new(xml = XML::xmlParse("inst/extdata/codelists/ML_gmxCodelists.xml"))) + system.time(newcat <- ISOCodelistCatalogue$new(xml = XML::xmlParse("inst/extdata/schemas/19115/resources/Codelists/cat/codelists.xml"))) +}) \ No newline at end of file