diff --git a/R/ISOCellGeometry.R b/R/ISOCellGeometry.R index a9eeea8a..3ed7bab1 100644 --- a/R/ISOCellGeometry.R +++ b/R/ISOCellGeometry.R @@ -6,13 +6,6 @@ #' @keywords ISO cell geometry #' @return Object of \code{\link{R6Class}} for modelling an ISO CellGeometryCode #' @format \code{\link{R6Class}} object. -#' -#' @section Methods: -#' \describe{ -#' \item{\code{new(xml,value, description)}}{ -#' This method is used to instantiate an \code{\link{ISOCellGeometry}} -#' } -#' } #' #' @examples #' #possible values @@ -22,7 +15,9 @@ #' pointCode <- ISOCellGeometry$new(value = "point") #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_CellGeometryCode} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_CellGeometryCode} #' #' @author Emmanuel Blondel #' @@ -30,7 +25,10 @@ ISOCellGeometry <- R6Class("ISOCellGeometry", inherit = ISOCodeListValue, private = list( xmlElement = "MD_CellGeometryCode", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISODimension.R b/R/ISODimension.R index 1f8d9a3d..848dfebd 100644 --- a/R/ISODimension.R +++ b/R/ISODimension.R @@ -16,7 +16,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_Dimension} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_Dimension} #' #' @author Emmanuel Blondel #' @@ -24,7 +26,10 @@ ISODimension <- R6Class("ISODimension", inherit = ISOAbstractObject, private = list( xmlElement = "MD_Dimension", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( #'@field dimensionName dimensionName [1..1]: ISODimensionNameType diff --git a/R/ISODimensionNameType.R b/R/ISODimensionNameType.R index 543b2fd5..e858393f 100644 --- a/R/ISODimensionNameType.R +++ b/R/ISODimensionNameType.R @@ -15,7 +15,9 @@ #' rowType <- ISODimensionNameType$new(value = "row") #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_DimensionNameTypeCode} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_DimensionNameTypeCode} #' #' @author Emmanuel Blondel #' @@ -23,7 +25,10 @@ ISODimensionNameType <- R6Class("ISODimensionNameType", inherit = ISOCodeListValue, private = list( xmlElement = "MD_DimensionNameTypeCode", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOGeometricObjectType.R b/R/ISOGeometricObjectType.R index f07f8786..2004157c 100644 --- a/R/ISOGeometricObjectType.R +++ b/R/ISOGeometricObjectType.R @@ -15,7 +15,9 @@ #' pt <- ISOGeometricObjectType$new(value = "point") #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_GeometricObjectTypeCode} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_GeometricObjectTypeCode} #' #' @author Emmanuel Blondel #' @@ -23,7 +25,10 @@ ISOGeometricObjectType <- R6Class("ISOGeometricObjectType", inherit = ISOCodeListValue, private = list( xmlElement = "MD_GeometricObjectTypeCode", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOGeometricObjects.R b/R/ISOGeometricObjects.R index d7070421..d6b96295 100644 --- a/R/ISOGeometricObjects.R +++ b/R/ISOGeometricObjects.R @@ -14,7 +14,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_GeometricObjects} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_GeometricObjects} #' #' @author Emmanuel Blondel #' @@ -22,7 +24,10 @@ ISOGeometricObjects <- R6Class("ISOGeometricObjects", inherit = ISOAbstractObject, private = list( xmlElement = "MD_GeometricObjects", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( #'@field geometricObjectType geometricObjectType diff --git a/R/ISOGeorectified.R b/R/ISOGeorectified.R index 3a0d73c3..f8537e08 100644 --- a/R/ISOGeorectified.R +++ b/R/ISOGeorectified.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_Georectified} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_Georectified} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOGeorectified <- R6Class("ISOGeorectified", inherit = ISOGridSpatialRepresentation, private = list( xmlElement = "MD_Georectified", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOGeoreferenceable.R b/R/ISOGeoreferenceable.R index 49d68fe1..535cf5d3 100644 --- a/R/ISOGeoreferenceable.R +++ b/R/ISOGeoreferenceable.R @@ -31,7 +31,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_Georeferenceable} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_Georeferenceable} #' #' @author Emmanuel Blondel #' @@ -39,7 +41,10 @@ ISOGeoreferenceable <- R6Class("ISOGeoreferenceable", inherit = ISOGridSpatialRepresentation, private = list( xmlElement = "MD_Georeferenceable", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOGridSpatialRepresentation.R b/R/ISOGridSpatialRepresentation.R index 0d3db6a7..794deee7 100644 --- a/R/ISOGridSpatialRepresentation.R +++ b/R/ISOGridSpatialRepresentation.R @@ -19,7 +19,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_GridSpatialRepresentation} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_GridSpatialRepresentation} #' #' @author Emmanuel Blondel #' @@ -27,7 +29,10 @@ ISOGridSpatialRepresentation <- R6Class("ISOGridSpatialRepresentation", inherit = ISOSpatialRepresentation, private = list( xmlElement = "MD_GridSpatialRepresentation", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOImageryGCP.R b/R/ISOImageryGCP.R index 1d72e44a..f2a9dd8b 100644 --- a/R/ISOImageryGCP.R +++ b/R/ISOImageryGCP.R @@ -15,7 +15,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +#' - ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_GCP} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_GCP} #' #' @author Emmanuel Blondel #' @@ -23,7 +25,10 @@ ISOImageryGCP <- R6Class("ISOImageryGCP", inherit = GMLAbstractObject, private = list( xmlElement = "MI_GCP", - xmlNamespacePrefix = "GMI" + xmlNamespacePrefix = list( + "19139" = "GMI", + "19115-3" = "MSR" + ) ), public = list( #'@field geographicCoordinates geographicCoordinates diff --git a/R/ISOImageryGCPCollection.R b/R/ISOImageryGCPCollection.R index 50e5b3e7..acd4b0ba 100644 --- a/R/ISOImageryGCPCollection.R +++ b/R/ISOImageryGCPCollection.R @@ -7,29 +7,6 @@ #' @return Object of \code{\link{R6Class}} for modelling an ISO imagery gcp collection #' @format \code{\link{R6Class}} object. #' -#' @section Methods: -#' \describe{ -#' \item{\code{new(xml)}}{ -#' This method is used to instantiate an \code{\link{ISOImageryGCPCollection}} -#' } -#' \item{\code{setCollectionIdentification(id)}}{ -#' Set the identifier, object of class \code{integer} -#' } -#' \item{\code{setCollectionName(name, locales)}}{ -#' Sets a name (object of class "character"). Locale names can be -#' specified as \code{list} with the \code{locales} argument. -#' } -#' \item{\code{setCoordinateReferenceSystem(crs)}}{ -#' Sets the crs, object of class \code{\link{ISOReferenceSystem}} -#' } -#' \item{\code{addGCP(gcp)}}{ -#' Adds a GCP, object of class \code{\link{ISOImageryGCP}} -#' } -#' \item{\code{delGCP(gcp)}}{ -#' Deletes a GCP, object of class \code{\link{ISOImageryGCP}} -#' } -#' } -#' #' @examples #' md <- ISOImageryGCPCollection$new() #' md$setCollectionIdentification(1L) @@ -41,7 +18,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +#' - ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_GCPCollection} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_GCPCollection} #' #' @author Emmanuel Blondel #' @@ -49,7 +28,10 @@ ISOImageryGCPCollection <- R6Class("ISOImageryGCPCollection", inherit = ISOImageryAbstractGeolocationInformation, private = list( xmlElement = "MI_GCPCollection", - xmlNamespacePrefix = "GMI" + xmlNamespacePrefix = list( + "19139" = "GMI", + "19115-3" = "MSR" + ) ), public = list( @@ -57,7 +39,7 @@ ISOImageryGCPCollection <- R6Class("ISOImageryGCPCollection", collectionIdentification = NULL, #'@field collectionName collectionName [1..1]: character|ISOLocalisedCharacterString collectionName = NULL, - #'@field coordinateReferenceSystem coordinateReferenceSystem [1..1]: ISOReferenceSystem + #'@field coordinateReferenceSystem coordinateReferenceSystem [1..1]: ISOAbstractReferenceSystem coordinateReferenceSystem = NULL, #'@field gcp gcp [0..*]: list of ISOImageryGCP gcp = list(), @@ -92,10 +74,10 @@ ISOImageryGCPCollection <- R6Class("ISOImageryGCPCollection", }, #'@description Set coordinate reference system - #'@param crs object of class \link{ISOReferenceSystem} + #'@param crs object of class inheriting \link{ISOAbstractReferenceSystem} setCoordinateReferenceSystem = function(crs){ - if(!is(crs, "ISOReferenceSystem")){ - stop("The argument should be an object of class 'ISOReferenceSystem'") + if(!is(crs, "ISOAbstractReferenceSystem")){ + stop("The argument should be an object inheriting class 'ISOAbstractReferenceSystem'") } self$coordinateReferenceSystem <- crs }, diff --git a/R/ISOImageryGeolocationInformation.R b/R/ISOImageryGeolocationInformation.R index b0560934..e0e73ecb 100644 --- a/R/ISOImageryGeolocationInformation.R +++ b/R/ISOImageryGeolocationInformation.R @@ -10,7 +10,9 @@ #' @note abstract class #' #' @references -#' ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +#' - ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_AbstractMI_GeolocationInformation} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_AbstractMI_GeolocationInformation} #' #' @author Emmanuel Blondel #' @@ -18,7 +20,10 @@ ISOImageryAbstractGeolocationInformation <- R6Class("ISOImageryAbstractGeolocati inherit = ISOAbstractObject, private = list( xmlElement = "AbstractMI_GeolocationInformation", - xmlNamespacePrefix = "GMI" + xmlNamespacePrefix = list( + "19139" = "GMI", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOImageryGeorectified.R b/R/ISOImageryGeorectified.R index b993976f..b296c479 100644 --- a/R/ISOImageryGeorectified.R +++ b/R/ISOImageryGeorectified.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115-2:2009 - Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data +#' - ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Georectified} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_Georectified} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOImageryGeorectified <- R6Class("ISOImageryGeorectified", inherit = ISOGeorectified, private = list( xmlElement = "MI_Georectified", - xmlNamespacePrefix = "GMI" + xmlNamespacePrefix = list( + "19139" = "GMI", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOImageryGeoreferenceable.R b/R/ISOImageryGeoreferenceable.R index 68acd959..d9b058ad 100644 --- a/R/ISOImageryGeoreferenceable.R +++ b/R/ISOImageryGeoreferenceable.R @@ -8,7 +8,9 @@ #' @format \code{\link{R6Class}} object. #' #' @references -#' ISO 19115-2:2009 - Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data +#' - ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Georeferenceable} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_Georeferenceable} #' #' @author Emmanuel Blondel #' @@ -16,7 +18,10 @@ ISOImageryGeoreferenceable <- R6Class("ISOImageryGeoreferenceable", inherit = ISOGeoreferenceable, private = list( xmlElement = "MI_Georeferenceable", - xmlNamespacePrefix = "GMI" + xmlNamespacePrefix = list( + "19139" = "GMI", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOPixelOrientation.R b/R/ISOPixelOrientation.R index 87685f32..3d557f11 100644 --- a/R/ISOPixelOrientation.R +++ b/R/ISOPixelOrientation.R @@ -15,7 +15,9 @@ #' PixelOrientation <- ISOPixelOrientation$new(value = "center") #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_PixelOrientationCode} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_PixelOrientationCode} #' #' @author Emmanuel Blondel #' @@ -23,7 +25,10 @@ ISOPixelOrientation <- R6Class("ISOPixelOrientation", inherit = ISOCodeListValue, private = list( xmlElement = "MD_PixelOrientationCode", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOReferenceSystem.R b/R/ISOReferenceSystem.R index 206d6ce7..e1da674c 100644 --- a/R/ISOReferenceSystem.R +++ b/R/ISOReferenceSystem.R @@ -21,7 +21,7 @@ #' @author Emmanuel Blondel #' ISOReferenceSystem <- R6Class("ISOReferenceSystem", - inherit = ISOAbstractObject, + inherit = ISOAbstractReferenceSystem, private = list( xmlElement = "MD_ReferenceSystem", xmlNamespacePrefix = list( diff --git a/R/ISOSpatialRepresentation.R b/R/ISOSpatialRepresentation.R index 877d5546..5a30fc0c 100644 --- a/R/ISOSpatialRepresentation.R +++ b/R/ISOSpatialRepresentation.R @@ -10,15 +10,20 @@ #' @note abstract class #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractMD_SpatialRepresentation} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_AbstractMD_SpatialRepresentation} #' #' @author Emmanuel Blondel #' ISOSpatialRepresentation <- R6Class("ISOSpatialRepresentation", - inherit = ISOAbstractObject, + inherit = ISOAbstractSpatialRepresentation, private = list( xmlElement = "AbstractMD_SpatialRepresentation", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOTopologyLevel.R b/R/ISOTopologyLevel.R index 634e1600..72245530 100644 --- a/R/ISOTopologyLevel.R +++ b/R/ISOTopologyLevel.R @@ -15,7 +15,9 @@ #' geomOnly <- ISOTopologyLevel$new(value = "geometryOnly") #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_TopologyLevelCode} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_TopologyLevelCode} #' #' @author Emmanuel Blondel #' @@ -23,7 +25,10 @@ ISOTopologyLevel <- R6Class("ISOTopologyLevel", inherit = ISOCodeListValue, private = list( xmlElement = "MD_TopologyLevelCode", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( diff --git a/R/ISOVectorSpatialRepresentation.R b/R/ISOVectorSpatialRepresentation.R index fa700d57..902b8871 100644 --- a/R/ISOVectorSpatialRepresentation.R +++ b/R/ISOVectorSpatialRepresentation.R @@ -17,7 +17,9 @@ #' xml <- md$encode() #' #' @references -#' ISO 19115:2003 - Geographic information -- Metadata +#' - ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_VectorSpatialRepresentation} +#' +#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_VectorSpatialRepresentation} #' #' @author Emmanuel Blondel #' @@ -25,7 +27,10 @@ ISOVectorSpatialRepresentation <- R6Class("ISOVectorSpatialRepresentation", inherit = ISOSpatialRepresentation, private = list( xmlElement = "MD_VectorSpatialRepresentation", - xmlNamespacePrefix = "GMD" + xmlNamespacePrefix = list( + "19139" = "GMD", + "19115-3" = "MSR" + ) ), public = list( #'@field topologyLevel topologyLevel [0..1]: ISOTopologyLevel diff --git a/inst/extdata/coverage/geometa_coverage_inventory.csv b/inst/extdata/coverage/geometa_coverage_inventory.csv index 9d26e7ad..92e2b628 100644 --- a/inst/extdata/coverage/geometa_coverage_inventory.csv +++ b/inst/extdata/coverage/geometa_coverage_inventory.csv @@ -27,7 +27,7 @@ "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractEX_GeographicExtent","ISOGeographicExtent",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_ContentInformation","ISOAbstractMDContentInformation",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_Identification","ISOIdentification",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" -"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractMD_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","AbstractMD_SpatialRepresentation","ISOSpatialRepresentation",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","AbstractRS_ReferenceSystem","ISOAbstractRSReferenceSystem",TRUE,FALSE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Address","ISOAddress",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","CI_Citation","ISOCitation",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" @@ -89,7 +89,7 @@ "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ApplicationSchemaInformation","ISOApplicationSchemaInformation",TRUE,TRUE,"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,TRUE,"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,TRUE,"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_CellGeometryCode","ISOCellGeometry",TRUE,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" @@ -98,19 +98,19 @@ "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_DataIdentification","ISODataIdentification",TRUE,TRUE,"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,TRUE,"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_Dimension","ISODimension",TRUE,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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_GeometricObjects","ISOGeometricObjects",TRUE,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" @@ -125,7 +125,7 @@ "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_Metadata","ISOMetadata",TRUE,TRUE,"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_PixelOrientationCode","ISOPixelOrientation",TRUE,TRUE,"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,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_ProgressCode","ISOProgress",TRUE,TRUE,"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,TRUE,"ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD" @@ -140,15 +140,15 @@ "ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD","MD_SpatialRepresentationTypeCode","ISOSpatialRepresentationType",TRUE,TRUE,"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,TRUE,"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,TRUE,"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_TopologyLevelCode","ISOTopologyLevel",TRUE,TRUE,"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,TRUE,"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","MD_VectorSpatialRepresentation","ISOVectorSpatialRepresentation",TRUE,TRUE,"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,TRUE,"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,TRUE,"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,TRUE,"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","AbstractMI_GeolocationInformation","ISOImageryAbstractGeolocationInformation",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","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" @@ -162,11 +162,11 @@ "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_CoverageDescription","ISOImageryCoverageDescription",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_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_GCP","ISOImageryGCP",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" +"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_GCPCollection","ISOImageryGCPCollection",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_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_Georectified","ISOImageryGeorectified",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" +"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_Georeferenceable","ISOImageryGeoreferenceable",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_ImageDescription","ISOImageryImageDescription",TRUE,TRUE,"ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI" "ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI","MI_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" @@ -681,23 +681,23 @@ "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Resource Lineage (MRL) Version: 2.0","MRL","LI_Source","ISOSource",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MRL" "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Reference Systems (MRS) Version: 1.0","MRS","MD_ReferenceSystem","ISOReferenceSystem",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MRS" "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Reference Systems (MRS) Version: 1.0","MRS","MD_ReferenceSystemTypeCode","ISOReferenceSystemType",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MRS" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","AbstractMD_SpatialRepresentation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","AbstractMI_GeolocationInformation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_CellGeometryCode","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_Dimension","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_DimensionNameTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_GeometricObjects","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_GeometricObjectTypeCode","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_Georectified","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_Georeferenceable","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_GridSpatialRepresentation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_PixelOrientationCode","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_TopologyLevelCode","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_VectorSpatialRepresentation","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_GCP","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_GCPCollection","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_Georectified","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_Georeferenceable","",FALSE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","AbstractMD_SpatialRepresentation","ISOSpatialRepresentation",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","AbstractMI_GeolocationInformation","ISOImageryAbstractGeolocationInformation",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_CellGeometryCode","ISOCellGeometry",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_Dimension","ISODimension",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_DimensionNameTypeCode","ISODimensionNameType",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_GeometricObjects","ISOGeometricObjects",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_GeometricObjectTypeCode","ISOGeometricObjectType",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_Georectified","ISOGeorectified",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_Georeferenceable","ISOGeoreferenceable",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_GridSpatialRepresentation","ISOGridSpatialRepresentation",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_PixelOrientationCode","ISOPixelOrientation",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_TopologyLevelCode","ISOTopologyLevel",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MD_VectorSpatialRepresentation","ISOVectorSpatialRepresentation",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_GCP","ISOImageryGCP",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_GCPCollection","ISOImageryGCPCollection",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_Georectified","ISOImageryGeorectified",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR","MI_Georeferenceable","ISOImageryGeoreferenceable",TRUE,TRUE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR" "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for SeRVices (SRV) Version: 2.0","SRV","DCPList","ISODCPList",TRUE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - SRV" "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for SeRVices (SRV) Version: 2.0","SRV","SV_CoupledResource","ISOCoupledResource",TRUE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - SRV" "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for SeRVices (SRV) Version: 2.0","SRV","SV_CouplingType","ISOCouplingType",TRUE,FALSE,"ISO/TS 19115-3:2023 - ISO 19115-1:2014 - SRV" diff --git a/inst/extdata/coverage/geometa_coverage_summary.csv b/inst/extdata/coverage/geometa_coverage_summary.csv index d3fb2656..315547bc 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.csv +++ b/inst/extdata/coverage/geometa_coverage_summary.csv @@ -16,15 +16,15 @@ "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Resource Identification (MRI) Version: 1.0","MRI",12,0,12,0,100 "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Resource Lineage (MRL) Version: 2.0","MRL",3,8,3,8,27.27 "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Reference Systems (MRS) Version: 1.0","MRS",2,0,2,0,100 -"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR",0,17,0,17,0 +"ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for Spatial Representation (MSR) Version: 2.0","MSR",17,0,17,0,100 "ISO/TS 19115-3:2023","ISO 19115-1:2014","Metadata for SeRVices (SRV) Version: 2.0","SRV",7,1,0,8,87.5 "ISO/TS 19115-3:2023","ISO 19157","Data Quality abstract Classes (DQC) Version 1.0","DQC",2,0,2,0,100 "ISO/TS 19115-3:2023","ISO 19157","Metadata for Data Quality (MDQ) Version: 1.0","MDQ",0,43,0,43,0 "ISO/TS 19115-3:2023","ISO/TS 19139:2007","CATalogue Objects (CAT) Version: 1.0","CAT",2,15,2,15,11.76 "ISO/TS 19115-3:2023","ISO/TS 19139:2007","Feature Catalog Common (FCC) Version: 1.0","FCC",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,71,61,100 -"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI",40,0,7,33,100 +"ISO/TS 19139:2007","ISO 19115-1:2003","Geographic Information - Metadata","GMD",132,0,83,49,100 +"ISO/TS 19139:2007","ISO 19115-2:2009","Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data","GMI",40,0,12,28,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,22,0,100 "ISO/TS 19139:2007","ISO/TS 19139:2007","Geographic Metadata XML Schema","GMX",10,56,8,58,15.15 diff --git a/inst/extdata/coverage/geometa_coverage_summary.html b/inst/extdata/coverage/geometa_coverage_summary.html index 9424d722..ac7a0385 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.html +++ b/inst/extdata/coverage/geometa_coverage_summary.html @@ -578,11 +578,11 @@ Metadata for Spatial Representation (MSR) Version: 2.0 MSR -ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR -0 +ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR 17 0 17 +0 ISO/TS 19115-3:2023 🆕 @@ -659,8 +659,8 @@ ISO/TS 19139:2007 - ISO 19115-1:2003 - GMD 132 0 -71 -61 +83 +49 ISO/TS 19139:2007 @@ -671,8 +671,8 @@ ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI 40 0 -7 -33 +12 +28 ISO/TS 19139:2007 diff --git a/inst/extdata/coverage/geometa_coverage_summary.md b/inst/extdata/coverage/geometa_coverage_summary.md index 0bd030b9..eaa82978 100644 --- a/inst/extdata/coverage/geometa_coverage_summary.md +++ b/inst/extdata/coverage/geometa_coverage_summary.md @@ -17,15 +17,15 @@ |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for Resource Identification (MRI) Version: 1.0 |MRI |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MRI](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 12| 0| 12| 0| |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for Resource Lineage (MRL) Version: 2.0 |MRL |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MRL](https://img.shields.io/badge/-27%25-ff0c0c.svg)](https://github.com/eblondel/geometa)| 3| 8| 3| 8| |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for Reference Systems (MRS) Version: 1.0 |MRS |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MRS](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 2| 0| 2| 0| -|ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for Spatial Representation (MSR) Version: 2.0 |MSR |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 0| 17| 0| 17| +|ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for Spatial Representation (MSR) Version: 2.0 |MSR |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - MSR](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 17| 0| 17| 0| |ISO/TS 19115-3:2023 🆕 |ISO 19115-1:2014 |Metadata for SeRVices (SRV) Version: 2.0 |SRV |[![ISO/TS 19115-3:2023 - ISO 19115-1:2014 - SRV](https://img.shields.io/badge/-88%25-33cc7a.svg)](https://github.com/eblondel/geometa)| 7| 1| 0| 8| |ISO/TS 19115-3:2023 🆕 |ISO 19157 |Data Quality abstract Classes (DQC) Version 1.0 |DQC |[![ISO/TS 19115-3:2023 - ISO 19157 - DQC](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 2| 0| 2| 0| |ISO/TS 19115-3:2023 🆕 |ISO 19157 |Metadata for Data Quality (MDQ) Version: 1.0 |MDQ |[![ISO/TS 19115-3:2023 - ISO 19157 - MDQ](https://img.shields.io/badge/-0%25-ad0f0f.svg)](https://github.com/eblondel/geometa) | 0| 43| 0| 43| |ISO/TS 19115-3:2023 🆕 |ISO/TS 19139:2007 |CATalogue Objects (CAT) Version: 1.0 |CAT |[![ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - CAT](https://img.shields.io/badge/-12%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 2| 15| 2| 15| |ISO/TS 19115-3:2023 🆕 |ISO/TS 19139:2007 |Feature Catalog Common (FCC) Version: 1.0 |FCC |[![ISO/TS 19115-3:2023 - ISO/TS 19139:2007 - FCC](https://img.shields.io/badge/-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| 71| 61| -|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| 7| 33| +|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| 83| 49| +|ISO/TS 19139:2007 |ISO 19115-2:2009 |Geographic Information - Metadata - Part 2: Extensions for imagery and gridded data |GMI |[![ISO/TS 19139:2007 - ISO 19115-2:2009 - GMI](https://img.shields.io/badge/-100%25-4a4ea8.svg)](https://github.com/eblondel/geometa)| 40| 0| 12| 28| |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| 22| 0| |ISO/TS 19139:2007 |ISO/TS 19139:2007 |Geographic Metadata XML Schema |GMX |[![ISO/TS 19139:2007 - ISO/TS 19139:2007 - GMX](https://img.shields.io/badge/-15%25-ad0f0f.svg)](https://github.com/eblondel/geometa)| 10| 56| 8| 58| diff --git a/man/ISOCellGeometry.Rd b/man/ISOCellGeometry.Rd index a4fd7714..01aee972 100644 --- a/man/ISOCellGeometry.Rd +++ b/man/ISOCellGeometry.Rd @@ -15,15 +15,6 @@ ISOCellGeometry ISOCellGeometry } -\section{Methods}{ - -\describe{ - \item{\code{new(xml,value, description)}}{ - This method is used to instantiate an \code{\link{ISOCellGeometry}} - } -} -} - \examples{ #possible values values <- ISOCellGeometry$values(labels = TRUE) @@ -33,7 +24,9 @@ ISOCellGeometry } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_CellGeometryCode} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_CellGeometryCode} } \author{ Emmanuel Blondel diff --git a/man/ISODimension.Rd b/man/ISODimension.Rd index 215d8027..6f75a263 100644 --- a/man/ISODimension.Rd +++ b/man/ISODimension.Rd @@ -25,7 +25,9 @@ ISODimension } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_Dimension} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_Dimension} } \author{ Emmanuel Blondel diff --git a/man/ISODimensionNameType.Rd b/man/ISODimensionNameType.Rd index 65f9c80f..2d95cebe 100644 --- a/man/ISODimensionNameType.Rd +++ b/man/ISODimensionNameType.Rd @@ -24,7 +24,9 @@ ISODimensionNameType } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_DimensionNameTypeCode} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_DimensionNameTypeCode} } \author{ Emmanuel Blondel diff --git a/man/ISOGeometricObjectType.Rd b/man/ISOGeometricObjectType.Rd index 2453e45b..0afa3b84 100644 --- a/man/ISOGeometricObjectType.Rd +++ b/man/ISOGeometricObjectType.Rd @@ -24,7 +24,9 @@ ISOGeometricObjectType } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_GeometricObjectTypeCode} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_GeometricObjectTypeCode} } \author{ Emmanuel Blondel diff --git a/man/ISOGeometricObjects.Rd b/man/ISOGeometricObjects.Rd index fcd4147b..a3ae9c02 100644 --- a/man/ISOGeometricObjects.Rd +++ b/man/ISOGeometricObjects.Rd @@ -23,7 +23,9 @@ ISOGeometricObjects } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_GeometricObjects} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_GeometricObjects} } \author{ Emmanuel Blondel diff --git a/man/ISOGeorectified.Rd b/man/ISOGeorectified.Rd index 3db55886..1eb68b35 100644 --- a/man/ISOGeorectified.Rd +++ b/man/ISOGeorectified.Rd @@ -16,7 +16,9 @@ ISOGeorectified ISOGeorectified } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_Georectified} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_Georectified} } \author{ Emmanuel Blondel @@ -24,7 +26,7 @@ Emmanuel Blondel \keyword{ISO} \keyword{georectified} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{ISOGeorectified} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractSpatialRepresentation]{geometa::ISOAbstractSpatialRepresentation}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{ISOGeorectified} } \section{Public fields}{ \if{html}{\out{
}} diff --git a/man/ISOGeoreferenceable.Rd b/man/ISOGeoreferenceable.Rd index 038f8b61..c40df211 100644 --- a/man/ISOGeoreferenceable.Rd +++ b/man/ISOGeoreferenceable.Rd @@ -40,7 +40,9 @@ ISOGeoreferenceable } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_Georeferenceable} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_Georeferenceable} } \author{ Emmanuel Blondel @@ -51,7 +53,7 @@ Emmanuel Blondel \keyword{representation} \keyword{spatial} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{ISOGeoreferenceable} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractSpatialRepresentation]{geometa::ISOAbstractSpatialRepresentation}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{ISOGeoreferenceable} } \section{Public fields}{ \if{html}{\out{
}} diff --git a/man/ISOGridSpatialRepresentation.Rd b/man/ISOGridSpatialRepresentation.Rd index b73c1577..ec86d4e5 100644 --- a/man/ISOGridSpatialRepresentation.Rd +++ b/man/ISOGridSpatialRepresentation.Rd @@ -28,7 +28,9 @@ ISOGridSpatialRepresentation } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_GridSpatialRepresentation} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_GridSpatialRepresentation} } \author{ Emmanuel Blondel @@ -38,7 +40,7 @@ Emmanuel Blondel \keyword{representation} \keyword{spatial} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{ISOGridSpatialRepresentation} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractSpatialRepresentation]{geometa::ISOAbstractSpatialRepresentation}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{ISOGridSpatialRepresentation} } \section{Public fields}{ \if{html}{\out{
}} diff --git a/man/ISOImageryAbstractGeolocationInformation.Rd b/man/ISOImageryAbstractGeolocationInformation.Rd index e66ebac2..70ce22c2 100644 --- a/man/ISOImageryAbstractGeolocationInformation.Rd +++ b/man/ISOImageryAbstractGeolocationInformation.Rd @@ -19,7 +19,9 @@ ISOImageryAbstractGeolocationInformation abstract class } \references{ -ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +- ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_AbstractMI_GeolocationInformation} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_AbstractMI_GeolocationInformation} } \author{ Emmanuel Blondel diff --git a/man/ISOImageryGCP.Rd b/man/ISOImageryGCP.Rd index 0be8c3f1..fd75a70e 100644 --- a/man/ISOImageryGCP.Rd +++ b/man/ISOImageryGCP.Rd @@ -24,7 +24,9 @@ ISOImageryGCPCollection } \references{ -ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +- ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_GCP} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_GCP} } \author{ Emmanuel Blondel diff --git a/man/ISOImageryGCPCollection.Rd b/man/ISOImageryGCPCollection.Rd index 4caa9fd5..633aaaf5 100644 --- a/man/ISOImageryGCPCollection.Rd +++ b/man/ISOImageryGCPCollection.Rd @@ -15,31 +15,6 @@ ISOImageryGCPCollection ISOImageryGCPCollection } -\section{Methods}{ - -\describe{ - \item{\code{new(xml)}}{ - This method is used to instantiate an \code{\link{ISOImageryGCPCollection}} - } - \item{\code{setCollectionIdentification(id)}}{ - Set the identifier, object of class \code{integer} - } - \item{\code{setCollectionName(name, locales)}}{ - Sets a name (object of class "character"). Locale names can be - specified as \code{list} with the \code{locales} argument. - } - \item{\code{setCoordinateReferenceSystem(crs)}}{ - Sets the crs, object of class \code{\link{ISOReferenceSystem}} - } - \item{\code{addGCP(gcp)}}{ - Adds a GCP, object of class \code{\link{ISOImageryGCP}} - } - \item{\code{delGCP(gcp)}}{ - Deletes a GCP, object of class \code{\link{ISOImageryGCP}} - } -} -} - \examples{ md <- ISOImageryGCPCollection$new() md$setCollectionIdentification(1L) @@ -52,7 +27,9 @@ ISOImageryGCPCollection } \references{ -ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data +- ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_GCPCollection} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_GCPCollection} } \author{ Emmanuel Blondel @@ -71,7 +48,7 @@ Emmanuel Blondel \item{\code{collectionName}}{collectionName [1..1]: character|ISOLocalisedCharacterString} -\item{\code{coordinateReferenceSystem}}{coordinateReferenceSystem [1..1]: ISOReferenceSystem} +\item{\code{coordinateReferenceSystem}}{coordinateReferenceSystem [1..1]: ISOAbstractReferenceSystem} \item{\code{gcp}}{gcp [0..*]: list of ISOImageryGCP} } @@ -189,7 +166,7 @@ Set coordinate reference system \subsection{Arguments}{ \if{html}{\out{
}} \describe{ -\item{\code{crs}}{object of class \link{ISOReferenceSystem}} +\item{\code{crs}}{object of class inheriting \link{ISOAbstractReferenceSystem}} } \if{html}{\out{
}} } diff --git a/man/ISOImageryGeorectified.Rd b/man/ISOImageryGeorectified.Rd index 10855f9d..9c49eae8 100644 --- a/man/ISOImageryGeorectified.Rd +++ b/man/ISOImageryGeorectified.Rd @@ -16,7 +16,9 @@ ISOImageryGeorectified ISOImageryGeorectified } \references{ -ISO 19115-2:2009 - Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data +- ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Georectified} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_Georectified} } \author{ Emmanuel Blondel @@ -25,7 +27,7 @@ Emmanuel Blondel \keyword{georectified} \keyword{image} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{\link[geometa:ISOGeorectified]{geometa::ISOGeorectified}} -> \code{ISOImageryGeorectified} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractSpatialRepresentation]{geometa::ISOAbstractSpatialRepresentation}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{\link[geometa:ISOGeorectified]{geometa::ISOGeorectified}} -> \code{ISOImageryGeorectified} } \section{Public fields}{ \if{html}{\out{
}} diff --git a/man/ISOImageryGeoreferenceable.Rd b/man/ISOImageryGeoreferenceable.Rd index 8a767767..515cdfaa 100644 --- a/man/ISOImageryGeoreferenceable.Rd +++ b/man/ISOImageryGeoreferenceable.Rd @@ -16,7 +16,9 @@ ISOImageryGeoreferenceable ISOImageryGeoreferenceable } \references{ -ISO 19115-2:2009 - Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data +- ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Georeferenceable} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_Georeferenceable} } \author{ Emmanuel Blondel @@ -25,7 +27,7 @@ Emmanuel Blondel \keyword{ISO} \keyword{imagery} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{\link[geometa:ISOGeoreferenceable]{geometa::ISOGeoreferenceable}} -> \code{ISOImageryGeoreferenceable} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractSpatialRepresentation]{geometa::ISOAbstractSpatialRepresentation}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{\link[geometa:ISOGridSpatialRepresentation]{geometa::ISOGridSpatialRepresentation}} -> \code{\link[geometa:ISOGeoreferenceable]{geometa::ISOGeoreferenceable}} -> \code{ISOImageryGeoreferenceable} } \section{Public fields}{ \if{html}{\out{
}} diff --git a/man/ISOPixelOrientation.Rd b/man/ISOPixelOrientation.Rd index da1c6631..99f0b1aa 100644 --- a/man/ISOPixelOrientation.Rd +++ b/man/ISOPixelOrientation.Rd @@ -24,7 +24,9 @@ ISOPixelOrientation } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_PixelOrientationCode} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_PixelOrientationCode} } \author{ Emmanuel Blondel diff --git a/man/ISOReferenceSystem.Rd b/man/ISOReferenceSystem.Rd index 1a40294d..967b784d 100644 --- a/man/ISOReferenceSystem.Rd +++ b/man/ISOReferenceSystem.Rd @@ -34,7 +34,7 @@ Emmanuel Blondel \keyword{reference} \keyword{system} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOReferenceSystem} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractReferenceSystem]{geometa::ISOAbstractReferenceSystem}} -> \code{ISOReferenceSystem} } \section{Public fields}{ \if{html}{\out{
}} diff --git a/man/ISOSpatialRepresentation.Rd b/man/ISOSpatialRepresentation.Rd index 09855111..a716a1af 100644 --- a/man/ISOSpatialRepresentation.Rd +++ b/man/ISOSpatialRepresentation.Rd @@ -19,7 +19,9 @@ ISOSpatialRepresentation abstract class } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_AbstractMD_SpatialRepresentation} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_AbstractMD_SpatialRepresentation} } \author{ Emmanuel Blondel @@ -27,7 +29,7 @@ Emmanuel Blondel \keyword{ISO} \keyword{address} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{ISOSpatialRepresentation} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractSpatialRepresentation]{geometa::ISOAbstractSpatialRepresentation}} -> \code{ISOSpatialRepresentation} } \section{Methods}{ \subsection{Public methods}{ diff --git a/man/ISOTopologyLevel.Rd b/man/ISOTopologyLevel.Rd index 74cf9938..b7a9f960 100644 --- a/man/ISOTopologyLevel.Rd +++ b/man/ISOTopologyLevel.Rd @@ -24,7 +24,9 @@ ISOTopologyLevel } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_TopologyLevelCode} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_TopologyLevelCode} } \author{ Emmanuel Blondel diff --git a/man/ISOVectorSpatialRepresentation.Rd b/man/ISOVectorSpatialRepresentation.Rd index ba6dbb21..50653b3a 100644 --- a/man/ISOVectorSpatialRepresentation.Rd +++ b/man/ISOVectorSpatialRepresentation.Rd @@ -26,7 +26,9 @@ ISOVectorSpatialRepresentation } \references{ -ISO 19115:2003 - Geographic information -- Metadata +- ISO 19139 \url{https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_VectorSpatialRepresentation} + + - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MD_VectorSpatialRepresentation} } \author{ Emmanuel Blondel @@ -34,7 +36,7 @@ Emmanuel Blondel \keyword{ISO} \keyword{address} \section{Super classes}{ -\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{ISOVectorSpatialRepresentation} +\code{\link[geometa:geometaLogger]{geometa::geometaLogger}} -> \code{\link[geometa:ISOAbstractObject]{geometa::ISOAbstractObject}} -> \code{\link[geometa:ISOAbstractSpatialRepresentation]{geometa::ISOAbstractSpatialRepresentation}} -> \code{\link[geometa:ISOSpatialRepresentation]{geometa::ISOSpatialRepresentation}} -> \code{ISOVectorSpatialRepresentation} } \section{Public fields}{ \if{html}{\out{
}}