mirror of
https://gitea.psi.ch/APOG/acsmnode.git
synced 2025-06-24 13:11:08 +02:00
Merge branch 'main' of https://gitlab.psi.ch/apog/acsmnode
This updates todo.md
This commit is contained in:
10
TODO.md
10
TODO.md
@ -1,8 +1,10 @@
|
||||
# TODO
|
||||
* [from Leïla] Add flagging based on CPC flags
|
||||
* [from Leïla] Correct calibration_params copying
|
||||
* [from Leïla] Plot for auto flags visualization should be able to zoom in vertically
|
||||
* [from Leïla] Remove inletP column in level 2 .nas data
|
||||
* [from Leïla] Correct error when flags are loaded in the flagging app
|
||||
* [from Leïla] End the file at end of year (or filter only current year)
|
||||
* [from Leïla] Change "9999.999" to "9999999.9999" in header
|
||||
* [from Leïla] Update Detection limit values in L2 header: take the ones (1h) from limits_of_detection.yaml
|
||||
* [from Leïla] For PAY, calculate error as 50% of concentration
|
||||
* [from Leïla] Correct errors (uncertainties) that they can't be lower than 0.0001
|
||||
* [from Leïla] Change flow rate values to 10% of flow rate ref
|
||||
* [New] Create data flows to validate and replace existing data chain params. data/campaignData/param/ -> pipelines/params and campaignDescriptor.yaml -> acsm data converter.
|
||||
* [New] DIMA. Add dictionaries to explain variables at different levels.
|
||||
|
@ -30,8 +30,10 @@ originator:
|
||||
email: leila.simon@psi.ch
|
||||
affiliation: Paul Scherrer Institute, PSI
|
||||
department: Laboratory of Atmospheric Chemistry
|
||||
city: Villigen PSI
|
||||
address_line_1: ""
|
||||
address_line_2: ""
|
||||
postal_code: 5232
|
||||
city: Villigen PSI
|
||||
country: Switzerland
|
||||
|
||||
submitter:
|
||||
@ -39,6 +41,8 @@ submitter:
|
||||
email: leila.simon@psi.ch
|
||||
affiliation: Paul Scherrer Institute, PSI
|
||||
department: Laboratory of Atmospheric Chemistry
|
||||
city: Villigen PSI
|
||||
address_line_1: ""
|
||||
address_line_2: ""
|
||||
postal_code: 5232
|
||||
city: Villigen PSI
|
||||
country: Switzerland
|
||||
|
@ -264,7 +264,7 @@ def generate_species_flags(data_table : pd.DataFrame, calib_param_dict : dict, f
|
||||
|
||||
numflag_columns = [col for col in data_table.columns if 'numflag_' in col]
|
||||
|
||||
if interpolated_cpc_flags:
|
||||
if len(interpolated_cpc_flags)>0:
|
||||
|
||||
data_table = reconcile_flags(data_table, interpolated_cpc_flags, 0, interpolated_cpc_flags.size, numflag_columns)
|
||||
|
||||
|
Reference in New Issue
Block a user