Replies: 1 comment 2 replies
-
Copying the answer from here: https://gis.stackexchange.com/questions/440450/using-pykrige-for-ordinary-kriging-on-an-xyz-file
In order to have the output as a geotiff file, you would need to write one and specify your desired grid beforehand: gridx = np.arange(0.0, 5.5, 0.5)
gridy = np.arange(0.0, 5.5, 0.5) Already defines a grid with a step-size of For writing a GeoTIFF file from a numpy array, have a look here: Hope that helps! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have tried putting my XYZ data into numpy arrays as per the PyKrige documentation
However, from this point on I'm not sure how to apply Ordinary Kriging to the data. I'd ideally like the output to be a Tiff image, but don't require the plotting of graph, etc - so do I still need gridx and gridy??
I'm just abit lost beyond this point
Beta Was this translation helpful? Give feedback.
All reactions