Skip to content
Snippets Groups Projects
Commit 44c7e28e authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Intgrid: set knnParams.method

parent e4b2460c
No related branches found
No related tags found
1 merge request!281M214003/develop
Pipeline #87380 passed
......@@ -370,12 +370,16 @@ public:
INTGRID_KNN = INTGRID_NN;
knnParams.k = 1;
knnParams.kMin = 1;
knnParams.extrapolate = true;
knnParams.method = KnnMethod::distanceWeighted;
}
if (operatorID == INTGRID_DIS)
{
INTGRID_KNN = INTGRID_DIS;
knnParams.k = 4;
knnParams.kMin = 1;
knnParams.extrapolate = true;
knnParams.method = KnnMethod::distanceWeighted;
}
}
else if (operatorID == INTGRID_KNN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment