Skip to content

Commit

Permalink
Fix filter doing inverse of what it is supposed to do.
Browse files Browse the repository at this point in the history
  • Loading branch information
thorbjoernl committed Jan 8, 2025
1 parent 50ad599 commit 0b84ba2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pyaerocom/aeroval/config/emep/reporting_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,8 +863,8 @@ def get_CFG(reportyear, year, model_dir) -> dict:
"topo": "/lustre/storeB/project/aerocom/aerocom1/AEROCOM_OBSDATA/GTOPO30/merged",
"radius": 5000,
"topovar": "Band1",
"lower": 500,
"upper": None,
"lower": None,
"upper": 500,
},
},
"post_processing": [
Expand Down Expand Up @@ -917,8 +917,8 @@ def get_CFG(reportyear, year, model_dir) -> dict:
"topo": "/lustre/storeB/project/aerocom/aerocom1/AEROCOM_OBSDATA/GTOPO30/merged",
"radius": 5000,
"topovar": "Band1",
"lower": 500,
"upper": None,
"lower": None,
"upper": 500,
},
},
"post_processing": [
Expand Down Expand Up @@ -977,8 +977,8 @@ def get_CFG(reportyear, year, model_dir) -> dict:
"topo": "/lustre/storeB/project/aerocom/aerocom1/AEROCOM_OBSDATA/GTOPO30/merged",
"radius": 5000,
"topovar": "Band1",
"lower": 500,
"upper": None,
"lower": None,
"upper": 500,
},
},
"post_processing": [
Expand Down Expand Up @@ -1022,8 +1022,8 @@ def get_CFG(reportyear, year, model_dir) -> dict:
"topo": "/lustre/storeB/project/aerocom/aerocom1/AEROCOM_OBSDATA/GTOPO30/merged",
"radius": 5000,
"topovar": "Band1",
"lower": 500,
"upper": None,
"lower": None,
"upper": 500,
},
},
"post_processing": [
Expand Down

0 comments on commit 0b84ba2

Please sign in to comment.