Netcdf file extraction #23
-
|
If we have satellite data e.g. TRMM file in .NC form how do we extract this file to different stations at once using the station longitude and latitude to compare with the point station data and also for different periods of years? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Nice question! General approach:
awtiCode package After installing, what you need to use, is the function ncDataSelect from the module mixedFileTypes under awtiCode. In other words, after installation was successful, in Jupyter Notebook or Spyder run: If you want, you can input that data, together with your station data, into the function Let me know if you run into any problems, or if installation and using those functions works for you! |
Beta Was this translation helpful? Give feedback.
Nice question! General approach:
awtiCode package
I have written code for selecting data from a netcdf file based on station coordinates, and included it in the package awtiCode. I would like it very much if you try out this code, and let me know whether it works or not, and whether it is clear to use or not. To be able to use it, you first need to install the package awtiCode. You can follow the instructions of this page.
After installing, what you need to use, is th…