Skip to content

Commit

Permalink
Merge pull request #476 from mwcraig/fix-change-in-apass-vizie
Browse files Browse the repository at this point in the history
Change ID field in apass_dr9 catalog
  • Loading branch information
mwcraig authored Oct 27, 2024
2 parents a84498c + b9bf579 commit fca8b92
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
"matplotlib",
"papermill",
"pandas",
"photutils >=1.9",
"photutils >=1.9,<2",
"pydantic >=2",
"pyyaml",
"platformdirs",
Expand Down
5 changes: 4 additions & 1 deletion stellarphot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,10 @@ def apass_dr9(field_center, radius=1 * u.degree, clip_by_frame=False, padding=10
"""
apass_colnames = {
"recno": "id", # There is no APASS ID, this is the one generated by Vizier
# There is no APASS ID, and this isn't a real ID either...but we need something
# for ID, and every APASS line is guaranteed to have a field number, so we'll
# use it. We replace the id column below anyway.
"Field": "id",
"RAJ2000": "ra",
"DEJ2000": "dec",
}
Expand Down

0 comments on commit fca8b92

Please sign in to comment.