Skip to content

Commit

Permalink
Merge pull request #4 from pllim/ticket-8763
Browse files Browse the repository at this point in the history
Changed sat det order from 2 to 1
  • Loading branch information
pllim committed Apr 25, 2016
2 parents dfd6528 + ff6ed86 commit d8c2505
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/acstools/satdet.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@
warnings.warn('matplotlib not found, plotting is disabled',
AstropyUserWarning)

__version__ = '0.3'
__vdate__ = '07-Dec-2015'
__version__ = '0.3.1'
__vdate__ = '25-Apr-2016'
__author__ = 'David Borncamp, Pey Lian Lim'
__all__ = ['detsat', 'make_mask', 'update_dq']

Expand Down Expand Up @@ -808,7 +808,7 @@ def make_mask(filename, ext, trail_coords, sublen=75, subwidth=200, order=3,
done = True
# End while

rot = transform.rotate(mask, -deg, resize=True, order=2)
rot = transform.rotate(mask, -deg, resize=True, order=1)
ix0 = (rot.shape[1] - image.shape[1]) / 2
iy0 = (rot.shape[0] - image.shape[0]) / 2
lowerx, upperx, lowery, uppery = _get_valid_indices(
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = acstools
version = 2.0.0
version = 2.0.1
author = Matt Davis, Warren Hack, Norman Grogin, Pey Lian Lim, Sara Ogaz, Leornado Ubeda, Mihai Cara, David Borncamp
author-email = help@stsci.edu
summary = Python Tools for ACS (Advanced Camera for Surveys) Data
Expand Down

0 comments on commit d8c2505

Please sign in to comment.