imdlib
imdlib copied to clipboard
Download and process binary IMD meteorological data in Python
Usage demo on: https://gist.github.com/answerquest/16aac80eab154fd276cabcf4eafbcb33 example for syntax: ``` data = imdlib.open_data_file_year('tmax','Maxtemp_MaxT_1979.GRD',1979) ``` 1st arg: var_type : 'rain', 'tmax' or 'tmin' 2nd arg: filename / path to file 3rd arg: year...
Hi Saswata, first of all thanks a ton for making this amazing lib which made the gridded data usage a breeze. There is a separate section in IMD website: https://imdpune.gov.in/lrfindex.php...
IMD has released new data GPM + Guages merged product. IMDLIB can support this. Real Time: https://www.imdpune.gov.in/cmpg/Realtimedata/gpm/Rain_Download.html Monthly Data: https://www.imdpune.gov.in/cmpg/Griddata/Rainfall25Merged.html
The current implementation uses `year` to download and open datasets. It is better to provide `start_date` and `end_date` to download and read the dataset. Current Implementation: ```python import imdlib as...
Currently, `get_data` and `get_real_data` will download files before checking if the files already exist in the folder. I think it would be better if we could check before downloading the...
I'm downloading IMD temperature data (min/max), but I need mean temperature also, but there is no variable I came across which gives mean temperature. Please provide a solution for above....
Thank you for this useful package. I’ve been using imdlib to download and analyse IMD datasets, and I noticed an issue related to the file_dir parameter in the get_data() function....
`Could not solve for environment specs The following packages are incompatible ├─ imdlib =* * is installable with the potential options │ ├─ imdlib 0.0.3 would require │ │ └─...
This pull request resolves an issue where the file_dir parameter wasn’t respected when saving .grd files. The bug has been fixed to ensure that the specified file_dir is used correctly...