Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ The following people have made contributions to this project:
- [Johannes Johansson (JohannesSMHI)](https://github.com/JohannesSMHI)
- [Sauli Joro (sjoro)](https://github.com/sjoro)
- [Przemyslaw Juda (pjuda)](https://github.com/pjuda)
- [Inderpreet Kaur](https://github.com/ikaur17)
- [Pouria Khalaj](https://github.com/pkhalaj)
- [Janne Kotro (jkotro)](https://github.com/jkotro)
- [Beke Kremmling (bkremmli)](https://github.com/bkremmli) - Deutscher Wetterdienst
Expand Down
46 changes: 46 additions & 0 deletions satpy/etc/enhancements/generic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,52 @@ enhancements:
- dataset: ctth_tempe_pal
color_scale: 255

cloud_base_height:
standard_name: cloud_base_height
operations:
- name: colorize
method: !!python/name:satpy.enhancements.colormap.colorize
kwargs:
palettes:
- dataset: cbh_alti_pal

cloud_base_pressure:
standard_name: cloud_base_pressure
operations:
- name: colorize
method: !!python/name:satpy.enhancements.colormap.colorize
kwargs:
palettes:
- dataset: cbh_pres_pal

cloud_base_height_in_hectofeet:
standard_name: cloud_base_height_in_hectofeet
operations:
- name: colorize
method: !!python/name:satpy.enhancements.colormap.colorize
kwargs:
palettes:
- dataset: cbh_hfeet_pal

cloud_base_temperature:
standard_name: cloud_base_temperature
operations:
- name: colorize
method: !!python/name:satpy.enhancements.colormap.palettize
kwargs:
palettes:
- dataset: cbh_tempe_pal
color_scale: 255

adcot:
standard_name: adcot
operations:
- name: colorize
method: !!python/name:satpy.enhancements.colormap.colorize
kwargs:
palettes:
- dataset: adcot_pal

cloud_top_phase:
standard_name: cloud_top_phase
operations:
Expand Down
81 changes: 81 additions & 0 deletions satpy/etc/readers/nwcsaf-pps_nc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@ file_types:
file_patterns: ['S_NWC_CMIC_{platform_id}_{orbit_number}_{start_time:%Y%m%dT%H%M%S%f}Z_{end_time:%Y%m%dT%H%M%S%f}Z.nc']
file_key_prefix: cmic_

nc_nwcsaf_cbh:
file_reader: !!python/name:satpy.readers.nwcsaf_nc.NcNWCSAF
file_patterns: ['S_NWC_CBH_{platform_id}_{orbit_number}_{start_time:%Y%m%dT%H%M%S%f}Z_{end_time:%Y%m%dT%H%M%S%f}Z.nc']

nc_nwcsaf_adcot:
file_reader: !!python/name:satpy.readers.nwcsaf_nc.NcNWCSAF
file_patterns: ['S_NWC_ADCOT_{platform_id}_{orbit_number}_{start_time:%Y%m%dT%H%M%S%f}Z_{end_time:%Y%m%dT%H%M%S%f}Z.nc']


datasets:

lon:
Expand All @@ -53,6 +62,8 @@ datasets:
- nc_nwcsaf_cma
- nc_nwcsaf_ct
- nc_nwcsaf_ctth
- nc_nwcsaf_cbh
- nc_nwcsaf_adcot
units: "degrees"
standard_name: longitude
lat:
Expand All @@ -61,6 +72,8 @@ datasets:
- nc_nwcsaf_cma
- nc_nwcsaf_ct
- nc_nwcsaf_ctth
- nc_nwcsaf_cbh
- nc_nwcsaf_adcot
units: "degrees"
standard_name: latitude

Expand Down Expand Up @@ -350,3 +363,71 @@ datasets:
file_key: dcot
file_type: [nc_nwcsaf_cpp, nc_nwcsaf_cmic]
coordinates: [lon, lat]

# ---- CBH products ------------

cbh_alti:
name: cbh_alti
file_type: nc_nwcsaf_cbh
coordinates: [lon, lat]

cbh_alti_pal:
name: cbh_alti_pal
scale_offset_dataset: cbh_alti
file_type: nc_nwcsaf_cbh

cbh_quality:
name: cbh_quality
file_type: nc_nwcsaf_cbh
coordinates: [lon, lat]

cbh_conditions:
name: cbh_conditions
file_type: nc_nwcsaf_cbh
coordinates: [lon, lat]

cbh_status_flag:
name: cbh_status_flag
file_type: nc_nwcsaf_cbh
coordinates: [lon, lat]

cbh_pres:
name: cbh_pres
file_type: nc_nwcsaf_cbh
coordinates: [lon, lat]

cbh_pres_pal:
name: cbh_pres_pal
scale_offset_dataset: cbh_pres
file_type: nc_nwcsaf_cbh

cbh_tempe:
name: cbh_tempe
file_type: nc_nwcsaf_cbh
coordinates: [lon, lat]

cbh_tempe_pal:
name: cbh_tempe_pal
scale_offset_dataset: cbh_tempe
file_type: nc_nwcsaf_cbh

cbh_hfeet:
name: cbh_hfeet
file_type: nc_nwcsaf_cbh
coordinates: [lon, lat]

cbh_hfeet_pal:
name: cbh_hfeet_pal
scale_offset_dataset: cbh_hfeet
file_type: nc_nwcsaf_cbh

# -------------------------------------
adcot:
name: adcot
file_type: nc_nwcsaf_adcot
coordinates: [lon, lat]

adcot_pal:
name: adcot_pal
scale_offset_dataset: adcot
file_type: nc_nwcsaf_adcot
Loading