| ISOSpatialTemporalExtent | R Documentation |
ISOSpatialTemporalExtent
ISOSpatialTemporalExtent
R6Class object.
Object of R6Class for modelling an ISO SpatialTemporalExtent
geometa::geometaLogger -> geometa::ISOAbstractObject -> geometa::ISOTemporalExtent -> ISOSpatialTemporalExtent
spatialExtentspatialExtent [1..*]: ISOGeographicExtent
geometa::geometaLogger$ERROR()geometa::geometaLogger$INFO()geometa::geometaLogger$WARN()geometa::ISOAbstractObject$addFieldAttrs()geometa::ISOAbstractObject$addListElement()geometa::ISOAbstractObject$checkMetadataStandardCompliance()geometa::ISOAbstractObject$contains()geometa::ISOAbstractObject$createLocalisedProperty()geometa::ISOAbstractObject$decode()geometa::ISOAbstractObject$delListElement()geometa::ISOAbstractObject$encode()geometa::ISOAbstractObject$getClass()geometa::ISOAbstractObject$getClassName()geometa::ISOAbstractObject$getNamespaceDefinition()geometa::ISOAbstractObject$isDocument()geometa::ISOAbstractObject$isFieldInheritedFrom()geometa::ISOAbstractObject$print()geometa::ISOAbstractObject$save()geometa::ISOAbstractObject$setAttr()geometa::ISOAbstractObject$setCodeList()geometa::ISOAbstractObject$setCodeListValue()geometa::ISOAbstractObject$setCodeSpace()geometa::ISOAbstractObject$setHref()geometa::ISOAbstractObject$setId()geometa::ISOAbstractObject$setIsNull()geometa::ISOAbstractObject$setValue()geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()geometa::ISOAbstractObject$validate()geometa::ISOAbstractObject$wrapBaseElement()geometa::ISOTemporalExtent$setTimeInstant()geometa::ISOTemporalExtent$setTimePeriod()new()Initializes object
ISOSpatialTemporalExtent$new(xml = NULL)
xmlobject of class XMLInternalNode-class
addSpatialExtent()Adds spatial extent
ISOSpatialTemporalExtent$addSpatialExtent(spatialExtent)
spatialExtentobject of class ISOGeographicExtent
TRUE if added, FALSE otherwise
delSpatialExtent()Deletes spatial extent
ISOSpatialTemporalExtent$delSpatialExtent(spatialExtent)
spatialExtentobject of class ISOGeographicExtent
TRUE if deleted, FALSE otherwise
clone()The objects of this class are cloneable with this method.
ISOSpatialTemporalExtent$clone(deep = FALSE)
deepWhether to make a deep clone.
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
- ISO 19139 https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_EX_SpatialTemporalExtent
- ISO 19115-3 https://schemas.isotc211.org/19115/-3/gex/1.0/gex/#element_EX_SpatialTemporalExtent
#create object
md <- ISOSpatialTemporalExtent$new()
start <- ISOdate(2000, 1, 12, 12, 59, 45)
end <- ISOdate(2010, 8, 22, 13, 12, 43)
tp <- GMLTimePeriod$new(beginPosition = start, endPosition = end)
md$setTimePeriod(tp)
spatialExtent <- ISOGeographicBoundingBox$new(minx = -180, miny = -90, maxx = 180, maxy = 90)
md$addSpatialExtent(spatialExtent)
xml <- md$encode()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.