Skip to content

Commit

Permalink
Merge pull request #1163 from peters77/feature-s5p-no2-composites
Browse files Browse the repository at this point in the history
Add TROPOMI NO2 LEVEL2 composites
  • Loading branch information
mraspaud authored Apr 27, 2020
2 parents da8bc77 + 7746fdf commit 65cd83f
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
16 changes: 16 additions & 0 deletions satpy/etc/composites/tropomi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
sensor_name: tropomi

composites:

no2_tropospheric_clean:
compositor: !!python/name:satpy.composites.GenericCompositor
prerequisites:
- nitrogendioxide_tropospheric_column
standard_name: no2_tropospheric_clean

no2_tropospheric_polluted:
compositor: !!python/name:satpy.composites.GenericCompositor
prerequisites:
- nitrogendioxide_tropospheric_column
standard_name: no2_tropospheric_polluted

25 changes: 25 additions & 0 deletions satpy/etc/enhancements/tropomi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
enhancements:

no2_tropospheric_clean:
standard_name: no2_tropospheric_clean
operations:
- name: colorize_no2_tropospheric_clean
method: !!python/name:satpy.enhancements.colorize
kwargs:
palettes:
# 0 to 50 10e-6 mol/m2
- {colors: ylgnbu, min_value: 0.0, max_value: 0.00005, reverse: true}
# 50 to 90 10e-6 mol/m2
- {colors: ylorrd, min_value: 0.00005, max_value: 0.00009}

no2_tropospheric_polluted:
standard_name: no2_tropospheric_polluted
operations:
- name: colorize_no2_tropospheric_poulluted
method: !!python/name:satpy.enhancements.colorize
kwargs:
palettes:
# 0 to 120 10e-6 mol/m2
- {colors: ylgnbu, min_value: 0.0, max_value: 0.00012, reverse: true}
# 120 to 600 10e-6 mol/m2
- {colors: ylorrd, min_value: 0.00012, max_value: 0.0006}

0 comments on commit 65cd83f

Please sign in to comment.