-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues with Kriging values #89
Comments
What helped in my case, was to change the estimator to cressie: bin_center, gamma = gs.vario_estimate_unstructured(
(data[:, 0], data[:, 1]), data[:, 2], lags, estimator="cressie"
) But the only difference is a different estimated len-scale. So I think the problem is in the kriging routines. An educated guess is, that the resulting kriging matrix is singular and produces an invalid inverse matrix. Maybe this will be resolved by this suggestion: #79 (comment) I will keep track of that! |
We will use the pseudo-inverse in the future, which should hold equal results as using least-square. Exporting can be done to a "vtk" file as demonstrated here: |
This problem will be solved with #95 |
This should be solved with #97 Feel free to re-open this issue, if you have further questions. |
I am performing an ordinary kriging and the results I get after performing the kriging are totally wrong. For simplicity, my grid points are also my data points. The working code is:
The semivariogram looks good (as attached below).
The value of my kriging should range between 0 and 400 as
data[:, 2]
ranges between this value. However, i am getting values between -3000 and 8000.Find attached the data to reproduce the problem
CNDA-ESP_SIMRAD_MDS_DGPS_2000_2001.xlsx
The text was updated successfully, but these errors were encountered: