open.py | R Documentation |
Title
## S3 method for class 'py' open( fp, mode = "r", driver = NULL, width = NULL, height = NULL, count = NULL, crs = NULL, transform = NULL, dtype = NULL, nodata = NULL, sharing = FALSE )
fp |
file path, or url, or database connection string, or VRT string, anything GDAL can open as raster |
mode |
open mode, readonly by default |
driver |
driver to use, optional is autodetected |
width |
width of data set (ignored in readonly) |
height |
height of data set (ignored in readonly) |
count |
number of bands (ignored in readonly) |
crs |
projection of data set (ignored in readonly) |
transform |
geotransform of data set, see details (ignored in readonly) |
dtype |
data type of dataset (ignored in readonly) |
nodata |
missing data value of dataset (ignored in readonly) |
sharing |
open shared mode (FALSE by default) |
x <- open.py(rgba_tif())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.