quarry {quarrint} | R Documentation |
Create a Quarry Object
Description
This function create a S3 object of type 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:
the geological (
geological.context
), hydrological (hydrogeological.context
) and piezometric (piezometric.context
) contexts defining the hazard that a quarry represents;the relative position of the quarry and the water catchments (
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.
Usage
quarry(geological.context = 1, hydrogeological.context = 1,
piezometric.context = 1, quarry.position = 1, production.catchment = 1,
quality.catchment = 1, ...)
## S3 method for class 'quarry'
print(x, verbose = FALSE, ...)
Arguments
geological.context |
The geological context of the quarry. Characterizes the lithology and extension of the geological formation exploited in the quarry and those of the neighbouring geological formations that will govern the groundwater flow directions. By default the possible values are:
|
hydrogeological.context |
The hydrogeological context of the quarry. Refers to the combinations of geological formations according to their hydrodynamic characteristics. By default the possible values are:
|
piezometric.context |
The piezometric context of the quarry, i.e. the altimetric level of the quarry floor. Characterizes the relative position between the quarry pit bottom and the groundwater piezometric level. By default the possible values are:
|
quarry.position |
Relative position of the quarry and the water catchments. By default the possible values are:
|
production.catchment |
Production of the catchments. Volume exploited in catchments for public distribution in the hydrogeological formation near the quarry. By default the possible values are:
|
quality.catchment |
Potential quality of the catchments. Quality and the potability of the groundwater. By default the possible values are:
|
verbose |
If set to TRUE, then the |
... |
Further arguments passed to or from other methods. For instance if
the values of the variables must be in the range |
x |
An object of type |
Value
A quarry object consisting of a list whose elements are
G |
The geological context of the quarry. |
H |
The hydrogeological context of the quarry. |
Z |
The piezometric context of the quarry. |
C |
The relative position of the quarry and the water catchment. |
T |
The production of the water catchments. |
L |
The potential quality of the water catchments. |
G.dummy |
A vector of binary components for the dummy variable encoding of |
H.dummy |
A vector of binary components for the dummy variable encoding of |
Z.dummy |
A vector of binary components for the dummy variable encoding of |
C.dummy |
A vector of binary components for the dummy variable encoding of |
T.dummy |
A vector of binary components for the dummy variable encoding of |
L.dummy |
A vector of binary components for the dummy variable encoding of |
Note
By default, the modalities are integer in [1,4], but that can be changed
to be an integer in any given range by passing in ...
the arguments
low.bound
and up.bound
of the function
int.in.range
.
Author(s)
Johan Barthelemy.
Maintainer: Johan Barthelemy johan@uow.edu.au.
References
Barthelemy, J., Carletti, T., Collier L., Hallet, V., Moriame, M., Sartenaer, A. (2016) Interaction prediction between groundwater and quarry extension using discrete choice models and artificial neural networks Environmental Earth Sciences (sumbitted)
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
See Also
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.
Examples
# 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)