-
Notifications
You must be signed in to change notification settings - Fork 298
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
hrv_clouds analogue for FCI? #2935
Comments
You can use HRFI and FDHSI data together. Satpy will pick and use the channels with the highest resolution that are available. See my back-of-the-enveolope version HRV Fog here: #2670 (comment) Similarly you could create the HRV Clouds. Currently I'm not going to put these in operations at FMI, so haven't looked at a more streamlined approach which might need creating a new averaging compositor or such. Using the plain 0.6 um channel will not give equivalent HRV composites because it doesn't have the longer wave data that HRV channel has. |
See also #2670 where the table notes that HRV Clouds and HRV Fog are currently missing for FCI. If you develop a composite that you think is of interest to a wider community, you are very welcome to propose it to Satpy as a PR. |
Well actually I wanted to avoid using HRFI and FDHSI together (because it would mean downloading double the amount of data). My idea was to get a composite as close as possible to hrv_clouds using only high resolution data (0.5 km for the visible part and 1 km for the infrared part). What is the easiest way to obtain something like that? I'm not sure what was used to obtain the image of the first post but it seems to be higher resolution than the hrv_clouds of SEVIRI, albeit having similar colors. |
Apparently, just using the same recipe from SEVIRI works pretty well... ( hrv_clouds:
compositor: !!python/name:satpy.composites.GenericCompositor
standard_name: hrv_clouds
prerequisites:
- name: vis_06
modifiers: [sunz_corrected]
- name: vis_06
modifiers: [sunz_corrected]
- ir_105 Here is a comparison of SEVIRI and FCI. Notice I'm only using HRFI data for this, no need for FDHSI. I'm using the native resampler and then cropping to the plotting area, which means that (in theory) everything should be resampled to the highest resolution (0.5 km). I'm not sure I get why this should not be correct, besides the fact that obviously these channels do not have the same wavelength as in SEVIRI. Wouldn't be bad to include this in the main code. |
It's not wrong, just different. At least at DWD, we have not decided yet whether we will do an attempt to simulate SEVIRI looks with FCI channels, or train our users and tell them some RGBs look different now. Either way, the calibration of FCI is not yet finalised, so it's too early for final RGB finetuning. As for the name, I wouldn't call the FCI composite |
Well, taking "HRV" by the letter as "High Resolution Visible", I guess the FCI VIS0.6 at 500m qualifies as that channel, since it's again the highest resolution visible channel on the instrument, as in SEVIRI:) Of course, the FCI VIS0.6 is very different compared to SEVIRI HRV, but at the same time So I would actually support adding Guido's recipe to satpy, lots of users have been asking about it. cc @strandgren |
Sorry i really didn't mean to sparkle a naming debate 😂.In my case it was really convenient to use the same name because it means I can transparently plot the same composite in my scripts with either SEVIRI or FCI data and obtain two virtually equivalent images. |
Naming debates are our favourite hobby around here :D I agree to keep things simple and keep the same name, as it will lead to much easier acceptance and straightforwardness. We can also mention this at the next RGB Workshop, and if a new name is agreed on, we can have that as well in parallel. |
Sorry @ameraner could I disturb you with two small questions about this?
Thanks! |
@guidocioni The inversion is done by the enhancer and defined in the enhancement:
Note that the stretch for the IR channel is min 323, max 203, which means it's inverted. See https://github.com/pytroll/satpy/blob/main/satpy/etc/enhancements/generic.yaml#L1071-L1079. To improve the contrast, one could tweak those numbers. |
Ah ok I see, this is done in the generic enhancements. I was looking for this entry in the seviri enhancements... |
Yes, satpy should find yours first and use that instead of the one defined directly in satpy. I'm not sure about the search order between what's in |
The order in which the configs are taken to use is:
These are stacked and the one that remains is used. |
Thanks for this @guidocioni! It does look much better - Did you maybe check how it compares to SEVIRI with the original recipe for this case? Do you see systematic differences due to the channel differences between the instruments? I am all in for proposing improvements, but we should be careful when changing the recipes drastically, as some atmospheric situations might then look different, which will cause confusion for people used to the SEVIRI default (e.g. as described in the quick guides https://user.eumetsat.int/resources/user-guides/hrv-clouds-rgb-quick-guide). This could be another good use case for discussion at the upcoming RGB workshop in spring :) |
I think we need some detailed investigation for many case studies done by people smarter than me, to get a meaningful conclusion :D |
If you agree, I would propose to push the FCI composite to satpy with the original recipe for now, as from your first example it replicates quite well SEVIRI, so the usual interpretation and guides still apply. |
In SEVIRI the
hrv_clouds
composite is constructed (correct me if I'm wrong) using(
satpy/satpy/etc/composites/seviri.yaml
Lines 415 to 423 in c245cab
I believe Eumetsat has decided not to create an analogue for FCI, as the currently advertised composites are mainly
true_color
andgeo_color
.This is fine for most use cases if one is not using the HRFI data at 0.5/1 km resolution. In this case we only have 4 channels so that these composites (I believe) cannot be computed. Currently i only see these composites available for FCI HR data
However, an analogue composite to
hrv_clouds
could be computed using VIS0.6 and IR10.5 channels (of course with resampling as IR has only 1 km resolution). I've seen some websites that implemented this already, e.g. https://meteologix.com/fr/satellite/italy/satellite-hd-10m-superhd/20241017-0840z.htmlIs this something that could be implemented in satpy?
The text was updated successfully, but these errors were encountered: