ISOImageryGCPCollection
ISOImageryGCPCollection
ISOImageryGCPCollection class
R6Class
object.
Object of R6Class
for modelling an ISO imagery gcp collection
md <- ISOImageryGCPCollection$new() md$setCollectionIdentification(1L) md$setCollectionName("name") rs <- ISOReferenceSystem$new() rsId <- ISOReferenceIdentifier$new(code = "4326", codeSpace = "EPSG") rs$setReferenceSystemIdentifier(rsId) md$setCoordinateReferenceSystem(rs) xml <- md$encode()
ISO 19139 https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_GCPCollection
ISO 19115-3 https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_GCPCollection
Emmanuel Blondel emmanuel.blondel1@gmail.com
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> geometa::ISOImageryAbstractGeolocationInformation
-> ISOImageryGCPCollection
collectionIdentification
: collectionIdentification [1..1]: integer
collectionName
: collectionName [1..1]: character|ISOLocalisedCharacterString
coordinateReferenceSystem
: coordinateReferenceSystem [1..1]: ISOAbstractReferenceSystem
gcp
: gcp [0..*]: list of ISOImageryGCP
list("ISOImageryGCPCollection$setCollectionIdentification()")
list("ISOImageryGCPCollection$setCoordinateReferenceSystem()")
new()
Initializes object
ISOImageryGCPCollection$new(xml = NULL)
xml
: object of class XMLInternalNode-class
setCollectionIdentification()
Set collection identification id
ISOImageryGCPCollection$setCollectionIdentification(id)
id
: object of class integer
setCollectionName()
Set collection name
ISOImageryGCPCollection$setCollectionName(name, locales = NULL)
name
: object of class character
locales
: list of localized names. Default is NULL
setCoordinateReferenceSystem()
Set coordinate reference system
ISOImageryGCPCollection$setCoordinateReferenceSystem(crs)
crs
: object of class inheriting ISOAbstractReferenceSystem
addGCP()
Adds GCP
ISOImageryGCPCollection$addGCP(gcp)
gcp
: object of class ISOImageryGCP
TRUE
if added, FALSE
otherwise
delGCP()
Deletes GCP
ISOImageryGCPCollection$delGCP(gcp)
gcp
: object of class ISOImageryGCP
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISOImageryGCPCollection$clone(deep = FALSE)
deep
: Whether to make a deep clone.