Skip to content

Commit

Permalink
Merge pull request #383 from astronomy-commons/fix_broken_unittests
Browse files Browse the repository at this point in the history
Fix broken unittests
  • Loading branch information
jeremykubica authored Oct 17, 2024
2 parents f6d84a8 + c9ca586 commit ffae445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hats/pixel_math/margin_bounding.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def check_margin_bounds(r_asc, dec, pixel_order, pixel, margin_threshold, step=1
points_coords = SkyCoord(ra=ra_matrix, dec=dec_matrix, unit="deg")
bounds_coords = SkyCoord(ra=bounds_ra_matrix, dec=bounds_dec_matrix, unit="deg")

separations = points_coords.separation(bounds_coords)
separations = points_coords.separation(bounds_coords).deg

bisectors = np.apply_along_axis(
_find_minimum_distance,
Expand Down

0 comments on commit ffae445

Please sign in to comment.