Skip to content

Commit 9fe3baf

Browse files
committed
Merge branch 'main' into getting_started
2 parents c6edeea + ffae445 commit 9fe3baf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/guide/pixel_math.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The functions made to find the pixels that make up the border region of a given
66
healpixel. Primarly used as a way to speed up the neighbor/margin caching code
77
for [hats-import](https://github.com/astronomy-commons/hats-import/). Code
88
originally created by Mario Juric for HIPS, found
9-
[here](https://github.com/mjuric/HIPS/blob/feature/multiprocess/hats/healpix.py).
9+
[here](https://github.com/mjuric/HIPS/blob/feature/multiprocess/hipscat/healpix.py).
1010

1111
### get_edge
1212
Given a pixel pix at some order, return all

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ operations on top of these utilities. Some known extensions:
2020

2121
* `LSDB <https://lsdb.readthedocs.io/>`_ - Large Survey Database - A framework for scalable
2222
spatial analysis using ``dask`` for job scheduling and execution.
23-
* `hats-import <https://hipscat-import.readthedocs.io/>`_ - map reduce pipelines for converting
23+
* `hats-import <https://hats-import.readthedocs.io/>`_ - map reduce pipelines for converting
2424
large or custom catalogs into HATS format.
2525

2626
.. toctree::

src/hats/pixel_math/margin_bounding.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def check_margin_bounds(r_asc, dec, pixel_order, pixel, margin_threshold, step=1
6969
points_coords = SkyCoord(ra=ra_matrix, dec=dec_matrix, unit="deg")
7070
bounds_coords = SkyCoord(ra=bounds_ra_matrix, dec=bounds_dec_matrix, unit="deg")
7171

72-
separations = points_coords.separation(bounds_coords)
72+
separations = points_coords.separation(bounds_coords).deg
7373

7474
bisectors = np.apply_along_axis(
7575
_find_minimum_distance,

0 commit comments

Comments
 (0)