conn.read_gdal: Read GDAL supported raster files.

Description Usage Arguments Details Value Author(s) See Also Examples

Description

read_gdal creates ursaRaster object from GDAL supported raster files using functions from rgdal packages.

Usage

1
2
3
read_gdal(fname, resetGrid = TRUE, band = NULL, verbose = FALSE, ...)

ursa_read(fname, verbose = FALSE)

Arguments

fname

Character. GDAL supported raster file name.

resetGrid

Logical. If TRUE then new sessional grid is based on opened raster image. Default is TRUE

band

Character (regular expression) or integer.

verbose

Logical. Value TRUE may provide some additional information on console. Default is FALSE.

...

Ignored.

Details

ursa_read is simplified implementation of gdal_read.

The composite GDAL formats (e.g., NetCDF: Network Common Data Format, HDF5: Hierarchical Data Format Release 5) are likely unsupported.

read_gdal uses functions from rgdal:

Category names and color tables are supported.

Value

Object of class ursaRaster.

Author(s)

Nikita Platonov platonov@sevin.ru

See Also

rgdal::GDALinfo() for supported GDAL raster formats

as.ursa is an alternative call for GDAL raster files import.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
session_grid(NULL)

rgdal::gdalDrivers()
Fin1 <- system.file("pictures/Rlogo.jpg",package="rgdal")
a1 <- read_gdal(Fin1)
print(a1)
display(a1)

Fin2 <- system.file("pictures/test_envi_class.envi",package="rgdal")
b1 <- read_gdal(Fin2)
b2 <- read_envi(Fin2,resetGrid=TRUE)
print(identical(ursa_grid(b1),ursa_grid(b2)))
print(identical(ursa_value(b1),ursa_value(b2)))
print(identical(ursa_colortable(b1),ursa_colortable(b2)))
print(ursa_colortable(b1))
print(as.table(b1))
display(b1,detail="l")

ursa documentation built on Feb. 26, 2020, 3:01 p.m.