quarry
characterizing a quarry
and the groundwater in the quarry's area.A quarry
object has 6 attributes, each classified (by default) in 4
modalities coded as an integer in the range [1, 4]. These attributes are grouped
in 2 distinct categories:
geological.context
), hydrological
(hydrogeological.context
) and piezometric
(piezometric.context
) contexts defining the hazard that a quarry
represents;
quarry.position
), the production of the catchments
(production.catchment
) and the potential quality
(quality.catchment
)of the groundwater characterising the
vulnerability of the groundwater ressources.
The possible values for each attribue are described in the Argument Section.
quarry(geological.context = 1, hydrogeological.context = 1, piezometric.context = 1, quarry.position = 1, production.catchment = 1, quality.catchment = 1, ...)
"print"(x, verbose = FALSE, ...)
print
method will
print the description of parameters' values instead of the integer value.
Default is FALSE. Note that this parameter is only meaningfull when the
parameters have values in the default range [1, 4].
[l, u]
instead of
[1, 4]
, then it can be achieved using low.bound = l
and
up.bound = u
as the function relies on
int.in.range
.
quarry
.
Collier, L., Barthelemy, J., Carletti, T., Moriame, M., Sartenaer, A., Hallet, V. (2015) Calculation of an Interaction Index between the Extractive Activity and Groundwater Resources Energy Procedia 76, 412-420
int.in.range
to a use custom range for the
values of the paramters.print
to print a quarry
object.
as.data.frame
to coerce a quarry to
a data frame.
compute.interaction
to predict the
interaction between between the quarry and the groundwater.
# creating a quarry for which every parameter is within the default range
q1 <- quarry(geological.context = 2, hydrogeological.context = 4,
piezometric.context = 1, quarry.position = 4,
production.catchment = 4, quality.catchment = 3)
print(q1, verbose = TRUE)
# creating a quarry for which the parameters are within a custom range [0, 10]
q2 <- quarry(geological.context = 8, hydrogeological.context = 4,
piezometric.context = 0, quarry.position = 4,
production.catchment = 6, quality.catchment = 3,
low.bound = 0, up.bound = 10)
print(q2)
Run the code above in your browser using DataLab