-
Notifications
You must be signed in to change notification settings - Fork 34
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
Consider adding option to ABI L1b reader for lower clipping radiances #499
Comments
This is now available as a reader keyword argument now that pytroll/satpy#2499 has been merged. |
It took me forever to find this message from @simonrp84 on the pytroll slack about the speckling in the night microphysics ABI images so I'm putting it here for future reference. This is about how even after the feature mentioned in this issue was added and tested C07-based night microphysics images still had speckling and there doesn't seem to be a reasonable way to get rid of it.
|
Have you checked for specking in all of the input bands? It seems odd to me that an RGB formula would be that sensitive to changes of a single step in representable input values. |
I think the question is what the lower (or higher) ends of each of the bands is. More likely than not the range of values we're interested in in the RGBs is within the "good range" of the band. If I'm remembering correctly C07 is good for detecting fires, right? The speckles we're seeing are in the cold clouds in a band used for detecting hot temperatures...at least that's what I'm telling myself. I'm not sure if other RGBs have band ranges like that or that single band products use limits at those extremes. |
Yes, that is correct. The MIR band has sensitivity at the high end for fire detection but loses sensitivity at the low end. Other bands are more equally tuned for high/low radiances and so rarely suffer from this problem. |
I was going through old emails between some NOAA/CIMSS folks and @simonrp84 where we discussed ways to fix holes in the ABI C07 imagery that shows up in Geo2Grid/GeoSphere, but I don't think it ever resulted in an issue here. The problem we're trying to solve is that sometimes C07 has negative radiances and these result in invalid BTs when the radiances are converted to BTs. The suggestion from Mat Gunshor and Tim Schmidt was to replace the values with the minimum possible BT for a band. We determined that the best way to do that is to (quote from my response in the email thread):
My one concern was that this assumes
add_offset
is always negative. Mat responded with:I think this behavior could be added to Satpy with an additional keyword argument, but in Satpy it would probably not be the default given how much we're "fudging" the data. I'm also not sure if it should be done for radiances or only during the conversion to BT.
The text was updated successfully, but these errors were encountered: