It could be a couple of things. First, regression kriging is a fairly complicated method for only 40 data points. You may just not have enough data to apply such a complicated model. Second, the residuals of your OLS model don't appear to display spatial autocorrelation. Looking at the crossvalidation statistics and the empirical semivariances (the blue crosses in the semivariogram screen), your residuals seem to be independent and normally distributed. Sampling more data may reveal more spatial patterns that can be used in kriging, but I don't see anything in those diagnostics that indicates the residuals of your OLS model need to be kriged at all.
Sorry I didn't know it was that simple.. I should have looked into more closely.. I thought such feature would be available when running the kriging.. Thank you!
HelloI would like to know how exactly we can do the external drift kriging using ArcGIS. I couldnot figure it out(got confused) from the above discussion.Also can anyone tell whether it is possible to do it for a time series of data. I have the hourly precipitation data for some staions. I would like to interpolate it for the entire area.Thanks in advance! 🙂
Such features are available through the geoprocessing environment. I.e. when using GP tools. The Wizard, however, does not honor these environment settings.You could, however, use the layer that you created in the GALayerToGrid tool and specify an output extent in the environment and your output raster will then have this new extent.Steve
Yes, you can change the extent of a geostatistical layer. Right-click the layer in ArcMap's Table of Contents and choose "Properties." Go to the Extent tab and specify the new extent.
The steps you've outlined are correct. Unfortunately, there's no way to make a continuous OLS surface. You'll need to make separate rasters for each resolution you want to test, but you only need to krig on the residuals once. You can export the interpolated residual surface to any cell size and extent that you want.I now understand what you're trying to do with the correlation coefficient. However, I don't think a correlation coefficient will work here because if you want to correlate a single point to the mean of its neighbors, you'll only be able to calculate a single coefficient for the entire surface (since you need repeated samples), so it won't help you in deciding which particular locations should be given preference. The first thing that comes to mind is the Voronoi Map tool. It's an interactive graphical tool, and if you use Standard Deviation, Entropy, or Interquartile Range, you'll get an estimate of the local variability. A small local variability indicates that the predictions are more constant in that area, so they might be good candidates for new sites because the area can be better represented by a single value. Note that you'll need to convert your rasters to points to run the tool.
I've looked into why the Voronoi map is ignoring the top-right and lower-left cells. The problem is that when you have gridded points, the Delaunay triangulation is not unique. Since we define polygon neighbors at the triangulation step (the first step of creating the Voronoi polygons), our algorithm drops the top-right and lower-left neighbors. A different but analogous implementation would drop the upper-left and lower-right polygons. We could fix this by defining neighbors after the polygons are created, but this would slow down the tool. We'll have to think whether this hit in performance is worth it, especially considering that Focal Statistics is specifically built to deal with gridded data.
If you have a good MLR model already, I wouldn't try to use the covariates as cokriging variables. If you want to try it anyway, in the Geostatistical Wizard, when you choose kriging on the first page, you can enter up to four datasets. The first one you enter is the variable you will interpolate, and the three additional datasets will be used as cokriging variables. "Kriging" is often called "residual kriging," and there's a reason for this: you always perform kriging on the residuals of some model. This model can be almost anything, but "regression kriging," "kriging with external drift," "universal kriging," and "linear mixed model kriging" all generally refer to the simultaneous estimation of the covariate coefficients and the kriging parameters. However, you may find success with doing a sequential estimation: first calculate the coefficients using your MLR model. Then calculate the residuals, and perform Simple kriging on these residuals (you should use Simple kriging instead of Ordinary kriging because you know that the mean of the residuals is 0). Then add these interpolated residuals back into the MLR predictions. You'll lose some power because you are sequentially calculating parameters (rather than simultaneously estimating them), but you should still get defensible results. As for comparing the values in one point to the average of the neighboring points, the Semivariogram/Covariance cloud is probably the best way to visualize this, but the result is a graph rather than a single correlation coefficient. If you really need to calculate the correlation coefficient (and you're ok with ignoring spatial correlation in the analysis), we have a tool called Neighborhood Selection that selects the neighbors of an input (x,y) location (use the same neighborhood parameters that you used in kriging). It will probably take a lot of work, but I'm sure you can write a Python script that will do what you're trying to do. I've never personally done this, so I don't want to try to outline an algorithm, but I'm sure all the tools are there to accomplish this task.
Universal kriging is available in the Geostatistical Wizard. It's one of the six kriging types. The trend is calculated from polynomials of the (x,y) coordinates; it does not support covariates other than the spatial location. However, covariates can be used as cokriging variables.
Přihlášení členové mohou přispívat, sledovat aktualizace a další. Jste tu noví? Zaregistrujte si bezplatný účet.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.