ISOImageryGCPCollection

ISOImageryGCPCollection

Format

R6Class object.

Value

Object of R6Class for modelling an ISO imagery gcp collection

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Public fields

geographicCoordinates

geographicCoordinates

Methods

Inherited methods


Method new()

Initializes object

Usage

ISOImageryGCP$new(xml = NULL)

Arguments

xml

object of class XMLInternalNode-class


Method setGeographicCoordinates()

Set geographic coordinates

Usage

ISOImageryGCP$setGeographicCoordinates(sfg = NULL, m = NULL)

Arguments

sfg

simple feature object from sf

m

object of class matrix


Method clone()

The objects of this class are cloneable with this method.

Usage

ISOImageryGCP$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

  md <- ISOImageryGCP$new()
#> Error in ISOMetadataNamespace[[id]]: wrong arguments for subsetting an environment
  require(sf)
#> Loading required package: sf
#> Linking to GEOS 3.10.2, GDAL 3.4.1, PROJ 8.2.1; sf_use_s2() is TRUE
  pt <- sf::st_point(c(1,1))
  md$setGeographicCoordinates(sfg = pt) 
#> Error: object 'md' not found
  xml <- md$encode()
#> Error: object 'md' not found