ISOGeographicBoundingBox {geometa} | R Documentation |
ISOGeographicBoundingBox
Description
ISOGeographicBoundingBox
ISOGeographicBoundingBox
Format
R6Class
object.
Value
Object of R6Class
for modelling an ISO GeographicBoundingBox
Super classes
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> geometa::ISOGeographicExtent
-> ISOGeographicBoundingBox
Public fields
westBoundLongitude
westBoundLongitude
eastBoundLongitude
eastBoundLongitude
southBoundLatitude
southBoundLatitude
northBoundLatitude
northBoundLatitude
Methods
Public methods
Inherited methods
geometa::geometaLogger$ERROR()
geometa::geometaLogger$INFO()
geometa::geometaLogger$WARN()
geometa::ISOAbstractObject$addFieldAttrs()
geometa::ISOAbstractObject$addListElement()
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$validate()
geometa::ISOAbstractObject$wrapBaseElement()
Method new()
Initializes object
Usage
ISOGeographicBoundingBox$new( xml = NULL, minx = NULL, miny = NULL, maxx = NULL, maxy = NULL, bbox = NULL )
Arguments
Method setWestBoundLongitude()
Set west bound longitude
Usage
ISOGeographicBoundingBox$setWestBoundLongitude(minx)
Arguments
minx
minx object of class numeric
Method setEastBoundLongitude()
Set east bound longitude
Usage
ISOGeographicBoundingBox$setEastBoundLongitude(maxx)
Arguments
maxx
maxx object of class numeric
Method setSouthBoundLatitude()
Set south bound latitude
Usage
ISOGeographicBoundingBox$setSouthBoundLatitude(miny)
Arguments
miny
miny object of class numeric
Method setNorthBoundLatitude()
Set north bound latitude
Usage
ISOGeographicBoundingBox$setNorthBoundLatitude(maxy)
Arguments
maxy
maxy object of class numeric
Method clone()
The objects of this class are cloneable with this method.
Usage
ISOGeographicBoundingBox$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.
Author(s)
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
References
ISO 19115:2003 - Geographic information – Metadata
Examples
md <- ISOGeographicBoundingBox$new(minx = -180, miny = -90, maxx = 180, maxy = 90)
xml <- md$encode()
[Package geometa version 0.8-0 Index]