Skip to content

Commit

Permalink
one line bugfix (#81)
Browse files Browse the repository at this point in the history
B grid error. Not sure how this happened? Means that the demo notebook for ACCESSom2 output stopped working. Need to include B grid example in CI tests
  • Loading branch information
ashjbarnes authored Nov 15, 2023
1 parent 39bb631 commit e68d87b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions regional_mom6/regional_mom6.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,12 +1401,9 @@ def brushcut(self, ryf=False):
),
regridder_tracer(
rawseg[
[self.eta.rename({self.xh: "lon", self.yh: "lat"})]
+ [
self.tracers[i].rename({self.xh: "lon", self.yh: "lat"})
for i in self.tracers
]
]
[self.eta]
+ [self.tracers[i] for i in self.tracers]
].rename({self.xh: "lon", self.yh: "lat"})
),
]
)
Expand Down

0 comments on commit e68d87b

Please sign in to comment.