GeoStat-Framework / PyKrige

Kriging Toolkit for Python
https://pykrige.readthedocs.io
BSD 3-Clause "New" or "Revised" License
759 stars 188 forks source link

Interpolation for time seri #169

Closed hoseinsalehi closed 3 years ago

hoseinsalehi commented 3 years ago

Hello I want to do an interpolation point for a period of 15 years using 10 stations. Is there a way to use this package?

MuellerSeb commented 3 years ago

Hey there,

That is depending on what you want to do. You should be a bit more specific and have a look at the documentation. And you can always contribute to the package, if you see a lack of features, since this is a community project.

Daily interpolation of data? I think so. Spatio-temporal interpolation? No, up to now, we don't support spatio-temporal variograms.

Cheers, Sebastian

hoseinsalehi commented 3 years ago

Hi @MuellerSeb, Thanks for your reply. Yes, I want to do interpolation for daily precipitation data using observation stations and develop a precipitation network for a basin. If the code can be modified to take inputs from an Excel or text file and done in a loop, I can be achieved.

I'm not a developer and I'm not even sure if my idea is right.

MuellerSeb commented 3 years ago

That should be easily possible without modification of PyKrige itself. To read excel files you should have a look at pandas.

Good luck!

Sebastian