Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
c1e5e97
implement wcs checking with sep and astropy
emirkmo Jan 8, 2021
22e10ae
wcs_checking_fix
emirkmo Jan 13, 2021
3e435ad
Adjust WCS with identified stars
sholmbo Jan 12, 2021
fffc31a
Remove astroalign & improve wcs checking loop
emirkmo Jan 15, 2021
eb8e028
Auto stash before merge of "wcs_fix" and "emirkmo/wcs_fix"
emirkmo Jan 15, 2021
145c6e9
Revert "Adjust WCS with identified stars"
sholmbo Jan 25, 2021
88dc233
Merge remote-tracking branch 'rasmus/devel' into devel
sholmbo Jan 25, 2021
fb4a019
CoordinateMatch for WCS
sholmbo Jan 25, 2021
dc3fc44
Merge devel into wcs_fix
emirkmo Jan 25, 2021
62cc7bd
Merge branch 'wcs_fix' of github.com:emirkmo/flows into emir_wcs_fix
sholmbo Jan 25, 2021
71c0640
Coordinate Match
sholmbo Jan 30, 2021
eb9bc01
Added docstrings
sholmbo Jan 31, 2021
5818798
Making the pipeline work with Simon's new changes
emirkmo Feb 3, 2021
9b7363a
Merge remote-tracking branch 'origin/devel' into emir_wcs_fix
emirkmo Feb 3, 2021
10158b4
Bugfix
emirkmo Feb 3, 2021
3ee000e
Bug Fix in final clean
emirkmo Feb 17, 2021
af65ca6
Weave in wcs correction, bugfix,
emirkmo Feb 17, 2021
2941574
Merge remote-tracking branch 'origin/devel' into emir_wcs_fix
emirkmo Feb 17, 2021
ffc790c
add pandas to requirements
emirkmo Feb 17, 2021
67fa7c5
Add keep_fixed_diff arg
emirkmo Feb 17, 2021
487a1b4
missing return statement
emirkmo Feb 17, 2021
8e353b6
log rsq values for debug
emirkmo Feb 17, 2021
b6a51cf
typo
emirkmo Feb 17, 2021
99c42e9
testing wcs.py
emirkmo Feb 17, 2021
47f39d5
lower timeout error
emirkmo Feb 17, 2021
5a0720f
fix masked array
emirkmo Feb 17, 2021
b448b8f
add force hidpi option
emirkmo Feb 17, 2021
511b380
Timeout Time as parameter
emirkmo Feb 18, 2021
52b9479
add timeout par as command line arg
emirkmo Feb 18, 2021
5c79ebe
timeout par bug
emirkmo Feb 18, 2021
332af3c
Testing impact of changes
emirkmo Feb 18, 2021
a7ec43f
?
emirkmo Feb 18, 2021
1aff965
FITS commands and local webserver
sholmbo Feb 18, 2021
41a1bfd
Merge remote-tracking branch 'simon/emir_wcs_fix'
sholmbo Feb 18, 2021
5d9ef2a
Tabs to spaces in photometry.py
sholmbo Feb 18, 2021
29d6894
Merge remote-tracking branch 'emir/wcs_fix'
sholmbo Feb 18, 2021
27a18a7
week08
sholmbo Feb 24, 2021
a75bf4e
Merge remote-tracking branch 'simon/master' into emir_wcs_fix
emirkmo Mar 3, 2021
290c3f5
remove explicit centroid_com
emirkmo Mar 3, 2021
d2cc0d5
nan to 0
emirkmo Mar 3, 2021
2ccb698
byte order
emirkmo Mar 3, 2021
512b478
byte swap
emirkmo Mar 3, 2021
f111c4d
Endian Fix for sep
emirkmo Mar 4, 2021
99fe287
week12
sholmbo Mar 23, 2021
2a886ac
Merge remote-tracking branch 'emir/wcs_fix'
sholmbo Mar 23, 2021
2f5c6e3
Merge branch 'master' into week12
sholmbo Mar 23, 2021
4328391
Bunch of stuff
sholmbo Mar 23, 2021
d18dd43
-web +pep8
sholmbo Apr 14, 2021
249f44e
Rasmus Comments, flake8 things.
emirkmo Apr 21, 2021
c415fd6
Merge pull request #2 from emirkmo/week12_2
sholmbo Apr 21, 2021
045e6f5
Fix missing )
emirkmo Apr 21, 2021
5beb8dc
flake8 changes
emirkmo Apr 21, 2021
6033838
Merge pull request #3 from emirkmo/week12_2
sholmbo Apr 21, 2021
11d2f8b
Changed astropy requirement to 4.1
rhandberg Apr 21, 2021
2febc2f
Merge remote-tracking branch 'sholmbo/week12' into week12
rhandberg Apr 21, 2021
9546238
missing operator flake8
emirkmo Apr 21, 2021
730fb73
Merge pull request #4 from emirkmo/week12_2
sholmbo Apr 21, 2021
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,4 @@ dmypy.json
.vscode/

# OSX stuff:
.DS_Store
.DS_Store
2 changes: 2 additions & 0 deletions flows/coordinatematch/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .coordinatematch import CoordinateMatch # noqa: F401
from .wcs import WCS2 # noqa: F401
Loading