-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
106 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: spatstat.geom | ||
Version: 3.3-3.005 | ||
Date: 2024-10-28 | ||
Version: 3.3-4 | ||
Date: 2024-11-18 | ||
Title: Geometrical Functionality of the 'spatstat' Family | ||
Authors@R: c(person("Adrian", "Baddeley", | ||
role = c("aut", "cre", "cph"), | ||
|
@@ -24,9 +24,9 @@ Authors@R: c(person("Adrian", "Baddeley", | |
person("Dominic", "Schuhmacher", role = "ctb"), | ||
person("Rasmus", "Waagepetersen", role = "ctb")) | ||
Maintainer: Adrian Baddeley <[email protected]> | ||
Depends: R (>= 3.5.0), spatstat.data (>= 3.1), spatstat.univar (>= 3.0-0), stats, graphics, grDevices, utils, methods | ||
Imports: spatstat.utils (>= 3.1-0.001), deldir (>= 1.0-2), polyclip (>= 1.10-0) | ||
Suggests: spatstat.random, spatstat.explore, spatstat.model, spatstat.linnet, spatial, fftwtools (>= 0.9-8), spatstat (>= 3.0) | ||
Depends: R (>= 3.5.0), spatstat.data (>= 3.1), spatstat.univar (>= 3.1-0), stats, graphics, grDevices, utils, methods | ||
Imports: spatstat.utils (>= 3.1-1), deldir (>= 1.0-2), polyclip (>= 1.10-0) | ||
Suggests: spatstat.random (>= 3.3), spatstat.explore (>= 3.3), spatstat.model (>= 3.3), spatstat.linnet (>= 3.2), spatial, fftwtools (>= 0.9-8), spatstat (>= 3.2) | ||
Description: Defines spatial data types and supports geometrical operations | ||
on them. Data types include point patterns, windows (domains), | ||
pixel images, line segment patterns, tessellations and hyperframes. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
\name{default.image.colours} | ||
\alias{default.image.colours} | ||
\alias{reset.default.image.colours} | ||
\title{ | ||
Default Colours for Images in Spatstat | ||
} | ||
\description{ | ||
Extract or change the default colours for images in \pkg{spatstat}. | ||
} | ||
\usage{ | ||
default.image.colours() | ||
reset.default.image.colours(col = NULL) | ||
} | ||
\arguments{ | ||
\item{col}{ | ||
A vector of colour values. | ||
} | ||
} | ||
\details{ | ||
These functions extract and change the current default colours | ||
used for plotting colour images in the \pkg{spatstat} family of | ||
packages, in particular by the functions | ||
\code{\link[spatstat.geom]{plot.im}} | ||
and \code{\link[spatstat.linnet]{plot.linim}}. | ||
|
||
The default colour values are a vector of | ||
character strings which can be interpreted as colours. | ||
In any particular instance of | ||
\code{\link[spatstat.geom]{plot.im}} | ||
or \code{\link[spatstat.linnet]{plot.linim}}, | ||
the default colours are interpolated to obtain a vector of colour | ||
values of the required length (usually 256, controlled by the | ||
argument \code{ncolours} to the plot command). | ||
|
||
\code{default.image.colours()} returns the current default colours. | ||
\code{reset.default.image.colours(col)} sets the default colours to | ||
be the vector \code{col}. | ||
\code{reset.default.image.colours()} or | ||
\code{reset.default.image.colours(NULL)} resets the | ||
factory default, which is row 29 of the Kovesi uniform | ||
perceptual contrast table described in \code{\link[spatstat.data]{Kovesi}}. | ||
} | ||
\value{ | ||
A character vector of values which can be interpreted as colours. | ||
} | ||
\author{ | ||
\adrian. | ||
} | ||
\seealso{ | ||
\code{\link[spatstat.geom]{plot.im}} | ||
} | ||
\examples{ | ||
a <- default.image.colours() | ||
length(a) | ||
} | ||
\keyword{color} | ||
\keyword{hplot} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters