-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2853 from ameraner/feature_add_li_composites
Add first version of LI composites and enhancements for point and accumulated products
- Loading branch information
Showing
6 changed files
with
252 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,75 @@ | ||
--- | ||
sensor_name: visir/li | ||
|
||
# these are tentative recipes that will need to be further tuned as we gain experience with LI data | ||
composites: | ||
acc_flash: | ||
description: Composite to colorise the AF product using the flash accumulation | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: acc_flash | ||
prerequisites: | ||
- flash_accumulation | ||
acc_flash_alpha: | ||
description: Composite to colorise the AF product using the flash accumulation with transparency | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: acc_flash_alpha | ||
prerequisites: | ||
- flash_accumulation | ||
|
||
acc_flash_area: | ||
description: Composite to colorise the AFA product using the flash area | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: acc_flash_area | ||
prerequisites: | ||
- accumulated_flash_area | ||
acc_flash_area_alpha: | ||
description: Composite to colorise the AFA product using the flash area with transparency | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: acc_flash_area_alpha | ||
prerequisites: | ||
- accumulated_flash_area | ||
|
||
acc_flash_radiance: | ||
description: Composite to colorise the AFR product using the flash radiance | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: lightning_radiance | ||
prerequisites: | ||
- flash_radiance | ||
acc_flash_radiance_alpha: | ||
description: Composite to colorise the AFR product using the flash radiance with transparency | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: lightning_radiance_alpha | ||
prerequisites: | ||
- flash_radiance | ||
|
||
flash_radiance: | ||
description: Composite to colorise the LFL product using the flash radiance | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: lightning_radiance | ||
prerequisites: | ||
- radiance | ||
flash_radiance_alpha: | ||
description: Composite to colorise the LFL product using the flash radiance with transparency | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: lightning_radiance_alpha | ||
prerequisites: | ||
- radiance | ||
|
||
group_radiance: | ||
description: Composite to colorise the LGR product using the flash radiance | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: lightning_radiance | ||
prerequisites: | ||
- radiance | ||
group_radiance_alpha: | ||
description: Composite to colorise the LGR product using the flash radiance with transparency | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: lightning_radiance_alpha | ||
prerequisites: | ||
- radiance | ||
|
||
# DEPRECATED, USE acc_flash_area INSTEAD | ||
flash_area: | ||
compositor: !!python/name:satpy.composites.SingleBandCompositor | ||
standard_name: flash_area | ||
standard_name: acc_flash_area | ||
prerequisites: | ||
- accumulated_flash_area |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,60 @@ | ||
enhancements: | ||
# note that the colormap parameters are tuned for 5 minutes of files accumulation | ||
# these are tentative recipes that will need to be further tuned as we gain experience with LI data | ||
|
||
flash_area: | ||
standard_name: flash_area | ||
acc_flash: | ||
standard_name: acc_flash | ||
operations: | ||
- name: colorize | ||
method: !!python/name:satpy.enhancements.colorize | ||
kwargs: | ||
palettes: | ||
- {colors: ylorrd, min_value: 0, max_value: 5} | ||
|
||
acc_flash_alpha: | ||
standard_name: acc_flash_alpha | ||
operations: | ||
- name: colorize | ||
method: !!python/name:satpy.enhancements.colorize | ||
kwargs: | ||
palettes: | ||
- {colors: ylorrd, min_value: 0, max_value: 5, | ||
min_alpha: 120, max_alpha: 180} | ||
|
||
acc_flash_area: | ||
standard_name: acc_flash_area | ||
operations: | ||
- name: colorize | ||
method: !!python/name:satpy.enhancements.colorize | ||
kwargs: | ||
palettes: | ||
- {colors: ylorrd, min_value: 0, max_value: 20} | ||
|
||
acc_flash_area_alpha: | ||
standard_name: acc_flash_area_alpha | ||
operations: | ||
- name: colorize | ||
method: !!python/name:satpy.enhancements.colorize | ||
kwargs: | ||
palettes: | ||
- {colors: ylorrd, min_value: 0, max_value: 20, | ||
min_alpha: 120, max_alpha: 180} | ||
|
||
lightning_radiance: | ||
standard_name: lightning_radiance | ||
operations: | ||
- name: colorize | ||
method: !!python/name:satpy.enhancements.colorize | ||
kwargs: | ||
palettes: | ||
- {colors: ylorrd, min_value: 0, max_value: 1000} | ||
|
||
lightning_radiance_alpha: | ||
standard_name: lightning_radiance_alpha | ||
operations: | ||
- name: colorize | ||
method: !!python/name:satpy.enhancements.colorize | ||
kwargs: | ||
palettes: | ||
- {colors: ylorrd, min_value: 0, max_value: 1000, | ||
min_alpha: 120, max_alpha: 180} |