Skip to content

Commit

Permalink
Further debug hfunfast extent test
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Oct 10, 2023
1 parent bcc0044 commit 2769666
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/api/hfun.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,10 +485,12 @@ def test_hfun_fast_extent(self):
"Areas",
hfun_box.area,
rast_box.area,
rast_box.difference(hfun_box).area
rast_box.buffer(-0.005 * np.sqrt(rast_box.area)).area,
rast_box.buffer(-0.005 * np.sqrt(rast_box.area)).difference(
hfun_box).area
)
self.assertTrue(hfun_box.covers(
rast_box.buffer(-0.002 * np.sqrt(rast_box.area))
rast_box.buffer(-0.005 * np.sqrt(rast_box.area))
))


Expand Down

0 comments on commit 2769666

Please sign in to comment.