Skip to content

Commit

Permalink
Merge pull request #179 from ytangnoaa/patch-2
Browse files Browse the repository at this point in the history
fix the bug of calculating NOx in cmaq.py
  • Loading branch information
zmoon authored Jul 30, 2024
2 parents 80f2903 + 56d189f commit 33cb622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monetio/models/cmaq.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def add_lazy_rh(d):

def add_lazy_nox(d):
keys = _get_keys(d)
allvars = Series(["NO", "NOX"])
allvars = Series(["NO", "NO2"])
index = allvars.isin(keys)
if can_do(index):
newkeys = allvars.loc[index]
Expand Down

0 comments on commit 33cb622

Please sign in to comment.