-
Notifications
You must be signed in to change notification settings - Fork 55
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
Fit of a sum of variogram models #159
Comments
Combining theoretical variogram models has been requested in a couple of instances. That would definitely suit the community. scikit-gstat/skgstat/models.py Line 9 in 01e13fe
Then, the user would combine two models into a new model function and pass that on to the For the second part, I am not sure if I got you right. Basically, it is about calculating many experimental variograms from a large sample, to estimate the uncertainty underlying the estimation, right? scikit-gstat/skgstat/util/uncertainty.py Line 12 in 01e13fe
I hope you get the idea in terms of implementation (although your suggestion goes into another direction). If you agree, we can maybe open a new issue to discuss implementation details. Thanks for all the input! Best Mirko |
Amazing, thanks for the detailed response!
I'll aim to start on the combination of several models after the summer holidays! |
Just to let you know: There is also the https://github.com/hydrocode-de/skgstat_uncertainty project, along with this publication: https://doi.org/10.1016/j.spasta.2023.100737, that deals mainly with observation uncertainty in variorums, as a small part of the puzzle. Maybe we can streamline this and find a interface / api, how to define and handle uncertainty that suits your and mine already developed stuff. |
Hi again @mmaelicke,
Do you think allowing the fit of a combinaison (sum, product) of variogram models could be a functionality that has its place in
scikit-gstat
?We use that a lot for analyzing multiple correlation ranges in satellite data (for example, https://github.com/GlacioHack/xdem/blob/main/xdem/spatialstats.py#L1622).
I could try to add the functionality here! 😄
It would combine well with
RasterMetricSpace
(for which I need to push some minor fixes + add better documentation, at least for the API, it's been a long time coming).We also tend to sample multiple experimental variograms to get an idea of the standard error in the experimental variance at each lag (as we have billions of pairwise samples), and use that to condition the fit (by passing it automatically as
fit_sigma
). Not sure how that'd fit here...What do you think?
The text was updated successfully, but these errors were encountered: