-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDESCRIPTION
71 lines (71 loc) · 3.34 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Package: gdalraster
Title: Bindings to the 'Geospatial Data Abstraction Library' Raster API
Version: 1.12.0.9186
Authors@R: c(
person("Chris", "Toney", email = "[email protected]",
role = c("aut", "cre"), comment = "R interface/additional functionality"),
person("Michael D.","Sumner", role = c("ctb")),
person("Frank", "Warmerdam",
role = c("ctb", "cph"), comment = "GDAL API documentation; src/progress_r.cpp from gdal/port/cpl_progress.cpp"),
person("Even", "Rouault",
role = c("ctb", "cph"), comment = "GDAL API documentation"),
person("Marius", "Appel",
role = c("ctb", "cph"), comment = "configure.ac based on https://github.com/appelmar/gdalcubes"),
person("Daniel", "James",
role = c("ctb", "cph"), comment = "Boost combine hashes method in src/cmb_table.h"),
person("Peter", "Dimov",
role = c("ctb", "cph"), comment = "Boost combine hashes method in src/cmb_table.h"))
Description: Interface to the Raster API of the 'Geospatial Data Abstraction
Library' ('GDAL', <https://gdal.org>). Bindings are implemented in an
exposed C++ class encapsulating a 'GDALDataset' and its raster band
objects, along with several stand-alone functions. These support manual
creation of uninitialized datasets, creation from existing raster as
template, read/set dataset parameters, low level I/O, color tables, raster
attribute tables, virtual raster (VRT), and 'gdalwarp' wrapper for
reprojection and mosaicing. Includes 'GDAL' algorithms ('dem_proc()',
'polygonize()', 'rasterize()', etc.), and functions for coordinate
transformation and spatial reference systems. Calling signatures resemble
the native C, C++ and Python APIs provided by the 'GDAL' project. Includes
raster 'calc()' to evaluate a given R expression on a layer or stack of
layers, with pixel x/y available as variables in the expression; and raster
'combine()' to identify and count unique pixel combinations across multiple
input layers, with optional output of the pixel-level combination IDs.
Provides raster display using base 'graphics'. Bindings to a subset of the
'OGR' API are also included for managing vector data sources. Bindings to a
subset of the Virtual Systems Interface ('VSI') are also included to support
operations on 'GDAL' virtual file systems. These are general utility
functions that abstract file system operations on URLs, cloud storage
services, 'Zip'/'GZip'/'7z'/'RAR' archives, and in-memory files.
'gdalraster' may be useful in applications that need scalable, low-level
I/O, or prefer a direct 'GDAL' API.
License: MIT + file LICENSE
Copyright: See file inst/COPYRIGHTS for details.
URL: https://usdaforestservice.github.io/gdalraster/,
https://github.com/USDAForestService/gdalraster
BugReports: https://github.com/USDAForestService/gdalraster/issues
Depends: R (>= 4.2.0)
Imports:
bit64,
graphics,
grDevices,
methods,
Rcpp (>= 1.0.7),
stats,
tools,
utils,
wk,
xml2
LinkingTo: Rcpp, RcppInt64
Suggests:
gt,
knitr,
rmarkdown,
scales,
testthat (>= 3.0.0)
NeedsCompilation: yes
SystemRequirements: C++17, GDAL (>= 3.1.0, built against GEOS), PROJ, libxml2
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
VignetteBuilder: knitr
Config/testthat/edition: 3