- data
A dataframe in long format with three columns for Easting,
Northing and values to be plotted.
- x
character. Name of the column containing Easting (longitude)
coordinates (default "x").
- y
character. Name of the column containing Northing (latitude)
coordinates (default "y").
- z
character. Name of the column containing concentration values
(default "z").
- domain
optional list of six numeric values defining the boundaries of
the domain to be plotted and the number of ticks on X & Y axis
(minimum X, maximum X, minimum Y, maximum Y, number of ticks on X axis,
number of ticks on Y axis). Example: c(340000, 346000, 4989500, 4995500, 5, 5).
If missing, the full domain of the input data is considered, with 5 ticks
(deprecated, see xlim, ylim, nticks).
- xlim
optional list of two numeric values defining the abscissa axis boundaries
of the plot (minimum x, maximum x).
- ylim
optional list of two numeric values defining the ordinate axis boundaries
of the plot (minimum y, maximum y).
- nticks
optional list of one or two numeric integers defining the number
of ticks on X & Y axes. If a single number is given, the same number of ticks
is plotted on both axes (default = 5 ticks).
- background
filename. Optional path to a raster file to be plotted as
the basemap (deprecated, see basemap)
- basemap
filename. Optional path to a raster file to be plotted as
the basemap (see Details).
- underlayer
optional list of layers to be plotted between basemap
and contour plot. See Details.
- overlayer
optional list of layers to be plotted on top of the contour
plot. See Details.
- legend
character. Optional title of the legend.
- levels
numeric vector of levels for contour plot. If not set,
automatic pretty levels are computed. If -Inf and Inf are used
as the lowest and highest limits of the array, the lowest and highest bands
are unbounded and the legend shows < and >= symbols.
- size
numeric. Width of the contour line.
- fill
logical. If TRUE, the contour plot is filled with colour (default = TRUE).
- tile
logical. If TRUE, rectangular tiles are plotted (default = FALSE).
- transparency
transparency level of the contour plot between 0.0
(fully transparent) and 1.0 (fully opaque). Default = 0.75.
- colors
colour palette for contour plot, as an array of colours.
- mask
character. Path to shp file used as a mask. It must be a closed polygon.
- inverse_mask
logical. If TRUE, areas on mask are masked. Default is
to mask areas outside the polygon defined in the shp file.
- bare
boolean (default FALSE). Deprecated in favour of theme_void.
- theme_void
boolean (default FALSE). If TRUE, only the bare plot is shown:
axis, legend, titles and any other graphical element of the plot are removed.