I use nco
linux-command line for cuting my '.nc' files. Normally use lat
and lon
of my specific area like below:
ncks -d lat,17.52,30.98 -d lon,-98.52,-78.02 img.nc -O cut.nc
I need to make a loop for a daily cut of 365 files (all year). I am going to do it with Python, but I really want to know if anyone knows a way to do it with the nco package.
Thanks.