Skip to content

Commit

Permalink
add detection limit to the list of ignored statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Griesfeller committed Apr 18, 2024
1 parent 8e254ab commit 85f13d3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/pyaro_readers/nilupmfebas/EbasPmfReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ def read_file(self, filename):
# single column file
pass

assert True

def _unfiltered_data(self, varname) -> Data:
return self._data[varname]

Expand Down Expand Up @@ -266,7 +268,14 @@ class ReadEbasOptions(dict):

def __init__(self, **args):
self.prefer_statistics = ["arithmetic mean", "median"]
self.ignore_statistics = ["percentile:15.87", "percentile:84.13", "uncertainty"]
# the last two are not part of the pyaerocom EBAS reader, but were needed to
# get to the right data columns with the NILU provided PMF data
self.ignore_statistics = [
"percentile:15.87",
"percentile:84.13",
"uncertainty",
"detection limit",
]

self.wavelength_tol_nm = 50

Expand Down

0 comments on commit 85f13d3

Please sign in to comment.