Skip to content

Commit 4a92351

Browse files
committed
rel284
1 parent 332bc98 commit 4a92351

File tree

3 files changed

+10
-19
lines changed

3 files changed

+10
-19
lines changed

DESCRIPTION

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
Package: raster
22
Type: Package
33
Title: Geographic Data Analysis and Modeling
4-
Version: 2.8-3
5-
Date: 2018-10-31
4+
Version: 2.8-4
5+
Date: 2018-11-02
66
Depends: methods, sp (>= 1.2-0), R (>= 3.0.0)
7-
Suggests:
8-
rgdal (>= 0.9-1),
9-
rgeos (>= 0.3-8),
10-
ncdf4,
11-
igraph,
12-
tcltk,
13-
parallel,
14-
rasterVis,
15-
MASS,
16-
sf,
17-
testthat
7+
Suggests: rgdal (>= 0.9-1), rgeos (>= 0.3-8), ncdf4, igraph, tcltk, parallel, rasterVis, MASS, sf, testthat
188
LinkingTo: Rcpp
199
Imports: Rcpp
2010
SystemRequirements: C++11

man/programming.Rd

+4-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,10 @@ getCluster: snow cluster object
6363
\examples{
6464
r <- raster(nrow=100, ncol=100)
6565
canProcessInMemory(r, 4)
66-
r <- raster(nrow=100000, ncol=100000)
67-
canProcessInMemory(r, 2)
66+
r <- raster(nrow=50000, ncol=50000)
67+
canProcessInMemory(r, 2, verbose=TRUE)
68+
rasterOptions(maxmem=Inf, memfrac=.8)
69+
rasterOptions(default=TRUE)
6870
}
6971

7072
\keyword{ spatial }

man/raster-package.Rd

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ Overview of the functions in the raster package
1111
\description{
1212
The raster package provides classes and functions to manipulate geographic (spatial) data in 'raster' format. Raster data divides space into cells (rectangles; pixels) of equal size (in units of the coordinate reference system). Such continuous spatial data are also referred to as 'grid' data, and be contrasted with discrete (object based) spatial data (points, lines, polygons).
1313

14-
The package should be particularly useful when using very large datasets that can not be loaded into the computer's memory. Functions will
15-
work correctly, because they they process large files in chunks, i.e., they read, compute, and write blocks of data, without loading all values into memory at once.
14+
The package should be particularly useful when using very large datasets that can not be loaded into the computer's memory. Functions will work correctly, because they they process large files in chunks, i.e., they read, compute, and write blocks of data, without loading all values into memory at once.
1615
1716
Below is a list of some of the most important functions grouped by theme. See the vignette for more information and some examples (you can open it by running this command: \code{vignette('Raster')})
1817
}
@@ -243,8 +242,8 @@ Basic parameters of existing Raster* objects can be obtained, and in most cases
243242
\code{\link{projection}} \tab The coordinate reference system (map projection) \cr
244243
\code{\link{isLonLat}} \tab Test if an object has a longitude/latitude coordinate reference system \cr
245244
\code{\link{filename}} \tab Filename to which a RasterLayer or RasterBrick is linked \cr
246-
\code{\link{band}} \tab layer (=band) of a multi-band file that this RasterLayer is linked to \cr
247-
\code{\link{nbands}} \tab How many bands (layers) does the file have? \cr
245+
\code{\link{bandnr}} \tab layer (=band) of a multi-band file that this RasterLayer is linked to \cr
246+
\code{\link{nbands}} \tab How many bands (layers) does the file associated with a RasterLayer object have? \cr
248247
\code{\link{compareRaster}} \tab Compare the geometry of Raster* objects \cr
249248
\code{\link{NAvalue}} \tab Get or set the \code{NA} value (for reading from a file) \cr
250249
--------------------------- \tab ------------------------------------------------------------------------------------------ \cr

0 commit comments

Comments
 (0)