Skip to content

Commit

Permalink
Update radius as default has changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
delucchi-cmu authored Jan 31, 2024
1 parent 4c7518b commit c6d9893
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# hipscat_cloudtests
# hipscat cloudtests

[![Template](https://img.shields.io/badge/Template-LINCC%20Frameworks%20Python%20Project%20Template-brightgreen)](https://lincc-ppt.readthedocs.io/en/latest/)

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/astronomy-commons/hipscat_cloudtests/smoke-test.yml)](https://github.com/astronomy-commons/hipscat_cloudtests/actions/workflows/smoke-test.yml)
[![benchmarks](https://img.shields.io/github/actions/workflow/status/astronomy-commons/hipscat_cloudtests/asv-main.yml?label=benchmarks)](https://astronomy-commons.github.io/hipscat_cloudtests/)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/astronomy-commons/hipscat-cloudtests/smoke-test.yml)](https://github.com/astronomy-commons/hipscat-cloudtests/actions/workflows/smoke-test.yml)
[![benchmarks](https://img.shields.io/github/actions/workflow/status/astronomy-commons/hipscat-cloudtests/asv-main.yml?label=benchmarks)](https://astronomy-commons.github.io/hipscat-cloudtests/)

Integration tests for cloud read and write through HiPScat and LSDB libraries.

Expand Down
4 changes: 3 additions & 1 deletion tests/lsdb/catalog/test_crossmatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@


def test_kdtree_crossmatch(small_sky_catalog_cloud, small_sky_xmatch_catalog_cloud, xmatch_correct_cloud):
xmatched = small_sky_catalog_cloud.crossmatch(small_sky_xmatch_catalog_cloud).compute()
xmatched = small_sky_catalog_cloud.crossmatch(
small_sky_xmatch_catalog_cloud, radius_arcsec=0.01 * 3600
).compute()
assert len(xmatched) == len(xmatch_correct_cloud)
for _, correct_row in xmatch_correct_cloud.iterrows():
assert correct_row["ss_id"] in xmatched["id_small_sky"].values
Expand Down

0 comments on commit c6d9893

Please sign in to comment.