Skip to content

Commit

Permalink
check weights by default
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin committed Sep 6, 2023
1 parent 118475c commit 3961940
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions maps/bin/spt3g-coadd-maps
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ P.add_argument(
)
P.add_argument("-i", "--output-map-id", help="Id for output coadd map frame")
P.add_argument(
"-w",
"--weighted",
action="store_true",
help="Ensure that weights are applied before coadding.",
"--no-check-weighted",
dest="weighted",
action="store_false",
help="Do not check that weights are applied before coadding.",
)

args = P.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion maps/python/map_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def coadd_map_files(
map_ids=None,
collate=False,
output_map_id="Coadd",
weighted=False,
weighted=True,
):
"""
Coadd map files, optionally collating map Id's into separate frames.
Expand Down

0 comments on commit 3961940

Please sign in to comment.