Transition_Zone_Near_Boundary: Transition_Zone_Near_Boundary

Description Usage Arguments Details Value Examples

Description

Transition_Zone_Near_Boundary

Usage

1

Arguments

map

object returned by function genMap

Z

list of zones.

numZ

number of the zone whose values will be approximated.

Details

funtion that approximates the value in a transition zone (which has commun boundary with the map) by the solution of the Laplace's equation. The numerical resolution of the Laplace's equation will be based on the discretisation of the data on the grid (map$krigGrid). The domaine of study is a transition zone which have a commun border with the map.

Value

approximated values of the zone (numZ) given as parameter.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
data(mapTest)
ZK=initialZoning(qProb=c(0.55,0.85),mapTest)
Z=ZK$resZ$zonePolygone # list of zones
lab = ZK$resZ$lab # label of zones
plotM(map = mapTest,Z = Z,lab = lab, byLab = FALSE)
# zone 7 is a transition zone that has commun boundary with the map
numZ = 7
Estimation = Transition_Zone_Near_Boundary(map = mapTest, Z = Z, numZ = numZ)
# compute the cost
cL = Cost_By_Laplace(map = mapTest, Z = Z, numZ = numZ, Estimation = Estimation)
cM = Cost_By_Mean(map = mapTest, Z = Z, numZ = numZ)
print(cL$cost_Laplace)
print(cM$cost_Mean)
# zone 7 is a zone with gradient

hazaeljones/geozoning documentation built on May 30, 2019, 3:06 p.m.