Learn R Programming

geometa (version 0.8-0)

ISOAddress: ISOAddress

Description

ISOAddress

ISOAddress

Arguments

Value

Object of R6Class for modelling an ISO Address

Format

R6Class object.

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOAddress

Public fields

deliveryPoint

delivery point

city

city

postalCode

postal code

country

country

electronicMailAddress

email

Methods

Inherited methods


Method new()

Initializes object

Usage

ISOAddress$new(xml = NULL)

Arguments

xml

object of class XMLInternalNode-class


Method setDeliveryPoint()

Set delivery point

Usage

ISOAddress$setDeliveryPoint(deliveryPoint, locales = NULL)

Arguments

deliveryPoint

delivery point

locales

list of localized names


Method setCity()

Set city

Usage

ISOAddress$setCity(city, locales = NULL)

Arguments

city

city

locales

list of localized names


Method setPostalCode()

Set postal code

Usage

ISOAddress$setPostalCode(postalCode, locales = NULL)

Arguments

postalCode

postal code

locales

list of localized names


Method setCountry()

Set country

Usage

ISOAddress$setCountry(country, locales = NULL)

Arguments

country

country

locales

list of localized names


Method setEmail()

Set email

Usage

ISOAddress$setEmail(email, locales = NULL)

Arguments

email

email

locales

list of localized names


Method clone()

The objects of this class are cloneable with this method.

Usage

ISOAddress$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

References

ISO 19115:2003 - Geographic information -- Metadata

Examples

Run this code
 md <- ISOAddress$new()
 md$setDeliveryPoint("theaddress")
 md$setCity("thecity")
 md$setPostalCode("111")
 md$setCountry("France")
 md$setEmail("someone@theorg.org")
 xml <- md$encode()
 

Run the code above in your browser using DataLab