Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue/150/box matching #153

Merged
merged 27 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
conda install -c conda-forge cmake swig
git clone https://github.com/LSSTDESC/CCL
cd CCL
git checkout v3.0.0
pip install .
- name: Install healsparse from source
run: |
Expand Down
1 change: 1 addition & 0 deletions clevar/catalog/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ def id_dict_list(self):
def __init__(self, name, tags=None, labels=None, **kwargs):
if tags is not None and not isinstance(tags, dict):
raise ValueError("tags must be dict.")
self.mt_input = kwargs.pop("mt_input", None)
self.__id_dict_list = {}
Catalog.__init__(
self,
Expand Down
1 change: 1 addition & 0 deletions clevar/match/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from .parent import Match
from .proximity import ProximityMatch
from .membership import MembershipMatch
from .box import BoxMatch


def get_matched_pairs(cat1, cat2, matching_type, mask1=None, mask2=None):
Expand Down