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

Gp/fix/act flags #947

Merged
merged 30 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
69a337d
linting to debug eventually
iparask Aug 20, 2024
e2f259b
Fix for flags and downsampling. This will allow the ML/depth1 mapmake…
chervias Sep 6, 2024
7b3c00b
setting flags input
iparask Sep 9, 2024
ee19ad0
configurable parsing for flags
iparask Sep 9, 2024
6a452f6
Merge branch 'master' into gp/fix/act_flags
iparask Sep 9, 2024
bd0468d
reverting linting change
iparask Sep 9, 2024
7c44e53
adding missing call
iparask Sep 9, 2024
51b0e3b
moving glitch flags path to init
iparask Sep 23, 2024
815dabc
fix:syntax error
iparask Sep 24, 2024
1519f85
Merge branch 'master' into gp/fix/act_flags
iparask Sep 24, 2024
0a48177
glitch flags in MLmapmaker plus some utils changes
iparask Sep 24, 2024
5a23955
wip: comment addresing
iparask Sep 30, 2024
e0af0f3
wip: docstring in numpy style and unit tests
Oct 1, 2024
9ea8366
wip: fix ctime
iparask Oct 3, 2024
964481d
removing unused imports
iparask Nov 13, 2024
d4d6659
Merge branch 'master' into gp/fix/act_flags
iparask Nov 13, 2024
5f8121f
Merge branch 'master' into gp/fix/act_flags
iparask Nov 15, 2024
98449b7
Merge branch 'master' into gp/fix/act_flags
iparask Dec 12, 2024
09f2b5d
Merge branch 'gp/fix/act_flags' of https://github.com/simonsobs/sotod…
iparask Dec 13, 2024
ae0aabb
redistributing tiled map for multipass
iparask Dec 19, 2024
8097ac4
Updating with Sigurd's suggestions
iparask Jan 8, 2025
176108c
Merge branch 'master' into gp/fix/act_flags
iparask Jan 8, 2025
7a3473c
wip: removing if tiled check
iparask Jan 8, 2025
3e5b0c5
Merge branch 'gp/fix/act_flags' of https://github.com/simonsobs/sotod…
iparask Jan 8, 2025
f9a6a45
wip: fixing autoformat
iparask Jan 8, 2025
9af2ce8
fixing bug after sync with master
iparask Jan 9, 2025
4a96524
Merge branch 'master' into gp/fix/act_flags
iparask Jan 13, 2025
5c68ee2
wip: removing utility functions
iparask Jan 13, 2025
5f9d0f8
Last comment from Matthew
iparask Jan 16, 2025
5891425
adding comment in docstring
iparask Jan 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion sotodlib/coords/pmat.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import so3g.proj
import numpy as np
import scipy
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was not used anywhere in this file.

from pixell import enmap, tilemap

from .helpers import _get_csl, _valid_arg, _not_both, _confirm_wcs
Expand Down
4 changes: 3 additions & 1 deletion sotodlib/core/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

logger = logging.getLogger(__name__)


class Context(odict):
# Sets of special handlers may be registered in this class variable, then
# requested by name in the context.yaml key "context_hooks".
Expand Down Expand Up @@ -326,7 +327,8 @@ def get_meta(self,
check=False,
ignore_missing=False,
on_missing=None,
det_info_scan=False):
det_info_scan=False
):
"""Load supporting metadata for an observation and return it in an
AxisManager.

Expand Down
2 changes: 1 addition & 1 deletion sotodlib/core/g3_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

"""

from spt3g import core
from so3g.spt3g import core
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was an import bug.



class DataG3Module(object):
Expand Down
Loading
Loading