Skip to content

Commit

Permalink
fix: format for coord rotation in pixell was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
zonca committed Dec 20, 2024
1 parent 61b0e55 commit 64ff98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pysm3/models/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def get_emission(

frames_dict = {"Q": "equ", "C": "equ", "G": "gal"}
if coord is not None:
coord = [frames_dict[frame] for frame in coord]
coord = ",".join([frames_dict[frame] for frame in coord])

log.info("Reprojecting to HEALPix")
output_map_healpix = (
Expand Down

0 comments on commit 64ff98f

Please sign in to comment.