-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* synthetic injection pipeline frame work, scatter stars to come * synthetic injection pipeline complete, begin bug check * injextnamelist rename * verbose increase for troubleshoot * verbose * is injextnames empty? * injextnames * eliminate injextnames * filter is just a letter but fits header is soooo long... * merge extname, name, and key to key * supress warnings from load nonstd keywords * apparently and ordered dictionary has to be defined... python nonsense * zero safe inversion * redefine cat * make sure to add I before the injected run loop * help with I handling * export outmodel to big dig and pass bigdict tothe save fxn * errant colon * just edit big dict rather than recopy params * update big dict so we can just pass everything to save fxn * change mock cat header name * match Eddie's xy convention, I think psfmod.render will need this * FIX ME number of inject limit * different seed for fits compressin test * update leda to remove by hand list AKS * verbose * more verbose * lift assertion threshold * fix path from scratch to home * recompute coordinates on reduced list * verbose * verbose diam_mod * verbose idx_mod and idx * verbose idx_bad * idx and idx_bad orders seem to have been messed up during the last PR * remove verbose * point to new galmask path * wrap injection write files to clean up deacm_proc * injectfrac fix * psf_shift now just a simple call * seed rng with date of file for reproducible but different inject tests * save decam_proc * import os * add overwrite * injectfrac consistent naming * silent fits files! * indent * indent * force injected sources to be positive * verbose * isnan not is_nan... * verbose gain? * seems to be in the psf shift * print min to confirm it is small and I can set to zero * more psf stats * print key * update size to account for negative stars stripped out * sample star positions with the date seeded rng * save the mock catalogue with the Eddie normalization * psfmod define * scattering returns 6 values * need to have length x now * rename main folder, add pypi required setup.py * remove intermediate files
- Loading branch information
1 parent
6662e79
commit 1b0cc73
Showing
20 changed files
with
51 additions
and
20 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name = 'crowdsource', | ||
packages = ['crowdsource'], | ||
version = '0.5.1', | ||
description = 'Crowded field photometry pipeline', | ||
author = 'Andrew Saydjari', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/schlafly/crowdsource', | ||
download_url = 'https://github.com/schlafly/crowdsource/archive/refs/tags/v0.5.1.tar.gz', | ||
license = 'MIT', | ||
install_requires=[ | ||
'astropy', | ||
'numpy', | ||
'scipy', | ||
'scikit-image', | ||
'guppy3', | ||
'matplotlib', | ||
'keras', | ||
'tensorflow >= 2' | ||
] | ||
) |