diff --git a/DESCRIPTION b/DESCRIPTION index 1479240..a5c6f8a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,5 +1,5 @@ Package: marshal -Version: 0.0.1-9001 +Version: 0.0.1-9002 Title: Framework to Marshal Objects to be Used in Another R Process Depends: R (>= 3.2.0) diff --git a/R/marshal.raster.R b/R/marshal.raster.R index e1b4e16..99fdb0f 100644 --- a/R/marshal.raster.R +++ b/R/marshal.raster.R @@ -18,9 +18,15 @@ #' Marshalling of `RasterLayer` objects is _leaky_. More precisely, #' the method _cannot_ guarantee that multiple rounds of marshalling #' and unmarshalling produce numerically identical objects. +#' For further information, see (1). #' #' @example incl/marshal.raster.R #' +#' @references +#' 1. Issue #311 - 'Incorrect large values saved to disk with writeRaster()', +#' **raster** GitHub repostory, 2023-05-17, +#' . +#' #' @rdname marshal.raster #' @aliases marshal.RasterLayer #' @export diff --git a/man/marshal.raster.Rd b/man/marshal.raster.Rd index 67b3b24..914636a 100644 --- a/man/marshal.raster.Rd +++ b/man/marshal.raster.Rd @@ -31,6 +31,7 @@ original object from the marshalled object. Marshalling of \code{RasterLayer} objects is \emph{leaky}. More precisely, the method \emph{cannot} guarantee that multiple rounds of marshalling and unmarshalling produce numerically identical objects. +For further information, see (1). } \examples{ @@ -46,3 +47,10 @@ if (requireNamespace("raster", quietly = TRUE)) { print(r2) } } +\references{ +\enumerate{ +\item Issue #311 - 'Incorrect large values saved to disk with writeRaster()', +\strong{raster} GitHub repostory, 2023-05-17, +\url{https://github.com/rspatial/raster/issues/311}. +} +}