-
Notifications
You must be signed in to change notification settings - Fork 1
Add capability to process AHI L2 products of cloud top pressure and c… #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
|
In This PR assumes I guess @xwzhang615, do you intend to write out the additional AHI L2 fields into IODA format ? |
Yes, this code has an ability to write out the additional AHI L2 products into the mpas_iodav1.nc file. |
For ABI, it can write out additional L2 product to a MPAS format, but NOT to an IODA format. The question is.... should we merge this PR first, then generalize it in a separate PR? or can we make it generic in this PR ? What do you think, @ibanos90 ? |
It's great to have the addition of these products to the code, so we can have similar capabilities between ABI and AHI. I wonder how the modifications in |
Oh, yes, for AHI is fine. Meanwhile, I tested this code for ABI datasets just now. I found the obs2mpas.x currently can read the ABI datasets, interpolate and generate the index_xxxx.nc file successfully, but the final process of write out mpas_iodav1.nc was failed. So, I think if we want to use the code in more generic way, some codes in 'src/utils_mod.F90' need to be additionally modified, like BJ said, the added dimension of nband+2 and nband+3 for saving other L2 products, may only valid for the AHI data structure, not for ABI. |
|
Thanks for adding this useful feature, @xwzhang615. From the discussion and testing, however, this PR can not be merged in a current form. This will break the use for ABI. Also, some ABI's L2 products does not meet the condition of this PR: Users can still utilize the L2 product in MPAS format to co-locate the obs in IODA format via |
Description
This PR adds the capability to read different file names corresponding with changes throughout the years, allowing to process BT , cloud mask, cloud top pressure and cloud type from Himawari-8/9 AHI L1 and L2 product datasets. The size of the array is hardcoded
nband+3in order to process cloud mask, cloud top pressure and cloud type together and write them out to the same file. These products need to be at the same resolution. The main modification files for this AHI processing are included in thehimawari_ahi_mod.F90and 'utils_mod.F90'.