GDALMajorObject-class {rgdal} | R Documentation |
"GDALMajorObject" is a virtual base class for all GDAL objects.
getDescription(object)
object |
an object inheriting from "GDALMajorObject" |
getDescription
:
Objects can be created by calls of the form new("GDALMajorObject", ...)
, but are only created for classes that extend this class.
handle
:"externalptr"
, used internally; not for public consumptionNo methods defined with class "GDALMajorObject" in the signature.
Timothy H. Keitt, modified by Roger Bivand
http://www.keittlab.org/, http://www.gdal.org/
GDALDriver-class
,
GDALReadOnlyDataset-class
, GDALDataset-class
and
GDALTransientDataset-class
driver <- new('GDALDriver', as.character(getGDALDriverNames()[1,1])) driver rm(driver) logo <- system.file("pictures/logo.jpg", package="rgdal")[1] x <- new("GDALReadOnlyDataset", logo) x getDescription(x) dim(x) GDAL.close(x)