You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the great tool. I've managed to setup the tool for smaller xyz datasets (around 5,000 points total), however I have a very large xyz survey dataset that I'd like to implement PyKrige with. Below is my code, note there are approx 116,000 points in the initial dataset. I'm wondering if there are any known workarounds or suggestions for working with pyKrige on such large datasets?
Code
#Extract XYZ Datax=model.df_main_sn.ny=model.df_main_sn.sz=model.df_main_sn.zprint(x.shape)
#Create grid for data and trim points by polygondx=25;dy=25nmin,nmax,smin,smax=x.min(),x.max(),y.min(),y.max()
gridx=np.arange(nmin,nmax,dx)
gridy=np.arange(smin,smax,dy)
#Setup kriging ObjectOK=OrdinaryKriging(x=x,
y=y,
z=z,
variogram_model='linear',
verbose=False,
enable_plotting=False,
anisotropy_angle=90,
anisotropy_scaling=5,
nlags=6,
weight=True)
#Execute Krigingz, ss=OK.execute(style='points', xpoints=point_n, ypoints=`point_s)`
Thanks for the great tool. I've managed to setup the tool for smaller xyz datasets (around 5,000 points total), however I have a very large xyz survey dataset that I'd like to implement PyKrige with. Below is my code, note there are approx 116,000 points in the initial dataset. I'm wondering if there are any known workarounds or suggestions for working with pyKrige on such large datasets?
Code
Error
Thanks again!
The text was updated successfully, but these errors were encountered: