Skip to content

Commit

Permalink
fix typo and remove debugging statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
KathleenLabrie committed Oct 7, 2021
1 parent 4fc9fad commit a59e6ff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ with the calibration manager and it is not working for some reason.
Whatever the specific situation, the following syntax can be used to bypass
the calibration manager and set the input processed calibration yourself::

$ reduce @sci_images.list --user_cal processed_dark:N20120102S0538_dark.fits processed_flat:N20120117S0034_flat.fits
$ reduce @target.lis --user_cal processed_dark:N20120102S0538_dark.fits processed_flat:N20120117S0034_flat.fits

The list of recognized processed calibration is:

Expand Down
1 change: 0 additions & 1 deletion gempy/library/astrotools.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def boxcar(data, operation=np.median, size=1):
except (ValueError, TypeError): # Handle things like np.logical_and
boxarray = np.array([operation.reduce(data[max(i-size, 0):i+size+1])
for i in range(len(data))])
print(boxarray)

return boxarray

Expand Down

0 comments on commit a59e6ff

Please sign in to comment.