Skip to content

Commit 82fb7fd

Browse files
committed
Merge branch 'meteoswiss-dev' into metoffice
2 parents 2b5d5e2 + a69c714 commit 82fb7fd

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ __pycache__/
55
*log.txt
66
.idea/
77
.~lock.*
8+
.vscode/
89

910
offline/
1011
dist/

mwr_raw2l1/measurement/measurement_qc_helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ def check_receiver_sanity(data, channel):
2020
if data['mfr'] == 'attex':
2121
logger.info('Cannot check receiver sanity for Attex as no status variable is in data file')
2222
return None, False
23-
elif data['mfr'] == 'radiometrics': # quality good if quality=0
24-
return flag_check(data, 'quality', 1, channel=None)
23+
elif data['mfr'] == 'radiometrics': # quality good if quality=1 (confirmed by Radiometrics to CHMI in March 2025)
24+
return flag_check(data, 'quality', 0, channel=None)
2525
elif data['mfr'] == 'rpg': # quality good if channel_quality_ok=1 and alarm=0
2626
masks_and_checks = [] # collect all output tuples from flag_check here
2727
masks_and_checks.append(flag_check(data, 'channel_quality_ok', 0, channel))

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
name = "mwr_raw2l1"
77
version = "1.0.1"
8-
description = "This project provides readers for the data files of the the most prominent types of operational ground-based K- and V-band microwave radiometers and a writer for NetCDF files according to E-PROFILE/ACTRIS standards."
8+
description = "Readers for the most prominent types of operational ground-based K- and V-band microwave radiometers and a writer for NetCDF files according to E-PROFILE/ACTRIS standards."
99
authors = ["Rolf Rüfenacht <rruefenacht@users.noreply.github.com>","Eric Sauvageat <eric.sauvageat@meteoswiss.ch>"]
10-
11-
[tool.isort]
12-
line_length = 120
10+
license = "BSD 3-Clause"
1311

1412
[tool.poetry.dependencies]
1513
python = ">3.6 <3.8"
Binary file not shown.

0 commit comments

Comments
 (0)