R/GMLAffineCS.R

#' GMLAffineCS
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO GML affine coordinate system
#' @return Object of \code{\link{R6Class}} for modelling an GMLAffineCS
#' @format \code{\link{R6Class}} object.
#' 
#' @note Experimental
#' 
#' @references 
#'   ISO 19136:2007 Geographic Information -- Geographic Markup Language.
#'   http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=32554 
#'   
#'   OGC Geography Markup Language. http://www.opengeospatial.org/standards/gml
#' 
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
GMLAffineCS <- R6Class("GMLAffineCS",
    inherit = GMLAbstractCoordinateSystem,
    private = list(
      xmlElement = "AffineCS",
      xmlNamespacePrefix = "GML"
    ),
    public = list()
)

Try the geometa package in your browser

Any scripts or data that you put into this service are public.

geometa documentation built on Oct. 29, 2022, 1:06 a.m.