Published January 6, 2023
| Version v0.5.0
Software
Open
vrodgom/statmorph: v0.5.0
Authors/Creators
- 1. IRyA-UNAM
- 2. Space Telescope Science Institute
- 3. University of Copenhagen
Description
The "bad measurement" flag now takes values between 0 and 4 (formerly 0 and 1), as explained in the documentation. In summary, a flag of 1 now indicates mild issues with the measurements, while a flag of 2 is reserved for more serious problems. In practice, users of previous versions of statmorph need to know the following when upgrading to v0.5.0:
- The statement
flag == 0has the same effect as before, since a flag of 0 indicates good measurements. - The statement
flag != 1should be replaced withflag == 0(to avoid erroneously selectingflag == 2cases). - The statement
flag == 1(orflag != 0) should be replaced with eitherflag >= 1(to restore the functionality of previous versions) or withflag == 2, which should result in a smaller fraction of "bad" measurements. - Users who are dealing with a high fraction of "bad" measurements should consider replacing
flag == 0with the less strictflag <= 1condition. - The
flag_catastrophicproperty was removed and is now represented byflag == 4(note that all calculations are aborted when this happens).
Files
vrodgom/statmorph-v0.5.0.zip
Files
(186.6 kB)
| Name | Size | Download all |
|---|---|---|
|
md5:b34d9d1274e7a169722135345838a1c8
|
186.6 kB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/vrodgom/statmorph/tree/v0.5.0 (URL)