Replies: 2 comments
-
The I extended the original class last year to be able to use universal kriging, but since external drift kriging needs a specified drift at the output locations, I didn't know how to properly pass them. This was decided here: #158 (comment) We need further discussion about that internally. |
Beta Was this translation helpful? Give feedback.
0 replies
-
For now you could use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I currently use your very useful kriging package PyKrige for Universal Kriging with 2 external drifts (gridded temperature and gridded elevation) as follow:
where:
lon= longitudes of stations,
lat= latitudes of stations,
temp= the temperature values of stations that I want to krige,
z= the elevation of stations used as external drift,
raw= the temperature values used as external drift,
gridx= vector of longitudes,
gridy= vector of latitudes ,
dem_indo= gridded elevation data ,
raw_temp_fit.values= gridding temperature data
I would like to use Kriging CV to search optimal parameters amongst different variograms and number of bins (nlags).
I’ve tried following code:
As I don’t find the specified drift argument in the Krige() function, I wonder how to manage the drift values. Could you help me?
Thanks in advance,
Julien
Beta Was this translation helpful? Give feedback.
All reactions