Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (5.1%) to scientific vocabulary
Keywords
astronomy
jwst
Last synced: 6 months ago
·
JSON representation
·
Repository
Algorithms for cleaning JWST data
Basic Info
Statistics
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 6
- Releases: 0
Topics
astronomy
jwst
Created over 2 years ago
· Last pushed 8 months ago
Metadata Files
Readme
License
Code of conduct
Citation
README.md
Algorithms for cleaning JWST data.
SnowblindStep: mask cosmic ray showers and snowballsJumpPlusStep: Propagate JUMP_DET and SATURATED flags in GROUPDQ properly for frame-averaged groupsPersistenceFlagStep: flag pixels effected by persistence exposure-to-exposureOpenPixelStep: flag new open pixels, hot pixels, or open adjacent pixels via self-cal
Installation
pip install snowblind
Usage
The steps in snowblind run like any other pipeline steps. From the command line you can run SnowblindStep (aliased as snowblind) on the result file from JumpStep:
strun snowblind jw001234_010203_00001_nrcalong_jump.fits --suffix=snowblind
Or you can run SnowblindStep and JumpPlusStep as post-hooks after JumpStep in a full pipeline, remembering to turn off the default snowball flagging.
strun calwebb_detector1 jw001234_010203_00001_nrcalong_uncal.fits --steps.jump.post_hooks="snowblind.SnowblindStep","snowblind.JumpPlusStep" --steps.jump.flag_large_events=False
In Python, we can insert SnowblindStep and JumpPlusStep after JumpStep as a post-hook:
from snowblind import SnowblindStep, JumpPlusStep
from jwst.pipeline import Detector1Pipeline
steps = {
"jump": {
"save_results": True,
"flag_large_events": False,
"post_hooks": [
SnowblindStep,
JumpPlusStep,
],
},
}
Detector1Pipeline.call("jw001234_010203_00001_nrcalong_uncal.fits", steps=steps, save_results=True)
More to come on the other steps available.
Owner
- Name: Max Planck Institute for Astronomy
- Login: mpi-astronomy
- Kind: organization
- Website: https://www.mpia.de/en
- Repositories: 3
- Profile: https://github.com/mpi-astronomy
Citation (CITATION.cff)
--- cff-version: 1.2.0 message: If you use this software, please cite as below. title: snowblind abstract: Mask cosmic ray showers (snowballs) in JWST data authors: - name: James Davies email: jdavies@mpia.de orcid: https://orcid.org/0000-0002-5079-9098 version: 0.2.1 doi: 10.5281/zenodo.7038885 date-released: '2024-02-08' type: software license: BSD-3-Clause url: https://github.com/mpi-astronomy/snowblind ...
GitHub Events
Total
- Watch event: 1
Last Year
- Watch event: 1
Packages
- Total packages: 1
-
Total downloads:
- pypi 2,649 last-month
- Total dependent packages: 1
- Total dependent repositories: 0
- Total versions: 5
- Total maintainers: 1
pypi.org: snowblind
Mask cosmic ray showers (snowballs) in JWST data
- Documentation: https://snowblind.readthedocs.io/
- License: BSD 3-Clause License Copyright (c) 2023, Max Planck Institute for Astronomy All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
Latest release: 0.2.1
published about 2 years ago
Rankings
Dependent packages count: 7.4%
Average: 38.1%
Dependent repos count: 68.8%
Maintainers (1)
Last synced:
6 months ago