Skip to content

Commit

Permalink
Merge pull request #97 from lsst-sitcom/tickets/DM-43346
Browse files Browse the repository at this point in the history
DM-43346: Update seeing corrections
  • Loading branch information
mfisherlevine authored Mar 15, 2024
2 parents dddaf95 + 4b416c8 commit aaf8cfd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions python/lsst/summit/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -963,11 +963,15 @@ def getFilterSeeingCorrection(filterName):
"""
match filterName:
case "SDSSg_65mm":
return (477.0 / 500.0) ** 0.2
return (474.41 / 500.0) ** 0.2
case "SDSSr_65mm":
return (623.0 / 500.0) ** 0.2
return (628.47 / 500.0) ** 0.2
case "SDSSi_65mm":
return (762.0 / 500.0) ** 0.2
return (769.51 / 500.0) ** 0.2
case "SDSSz_65mm":
return (871.45 / 500.0) ** 0.2
case "SDSSy_65mm":
return (986.8 / 500.0) ** 0.2
case _:
raise ValueError(f"Unknown filter name: {filterName}")

Expand Down

0 comments on commit aaf8cfd

Please sign in to comment.