-
Notifications
You must be signed in to change notification settings - Fork 301
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
Improving resolution when setting extent #2979
Comments
Do you have an example image from those other tools? Or can you provide more details about what's signaling a lower resolution when you look at this image? I assume the size of your area is similar to the size of the images you're comparing against? |
I'm replying because you use an approach that is quite similar to mine and I had this issue in the past.
scn = satpy.Scene(**scene_inputs)
scn.load(['ash'], upper_right_corner='NE')
scn = scn.crop(ll_bbox=tuple(cust_area))
scn = scn.resample(resampler='native') which should hopefully choose the highest possible resolution. |
Apologies on the late reply (university life before Thanksgiving break is always hectic 😛), but as @djhoese and @guidocioni essentially indicated there wasn't really an issue with the code perse. The actual issue was the dataset I was importing to create the image. The TL;DR if anyone has similar problems in the future, don't get the data from the ABI-L2-MCMIP product. The ABI L2 Cloud and Moisture Imagery has two slightly different products: My new method is to check the composite the user is selecting first, then pull in the individual bands from the ABI instrument radiance product (ABI-L1B-Rad) and using glob to pull in the filenames. Satpy will automatically detect what composites that are available based on the bands you pull in (can use scn.available_composite_names() to check). |
I am having an issue on exactly what would give me 'true' resolution of a geostationary data set (GOES in particular) while allowing for conversion to cartopy. I have provided minimal code to reproduce below, but what would give me the highest resolution when setting a more 'zoomed' in extent? Is this where I need to use native resampling or are there some attributes I'm missing?
In this particular image below, I've set the extent for Florida (info below) and the recipe/composite to cimss_true_color_sunz_rayleigh:
When cross-comparing this to products I've created in goes2go and to NESDIS satellite output, this appears to not match the resolution for the green/blue abi-bands (3 and 1). I'm confident this is just a lack of my understanding on how to sample properly or missing an attribute, but where am I going wrong?
My output image:
The text was updated successfully, but these errors were encountered: