Skip to content

Commit

Permalink
Merge pull request #297 from DavidT3/bug/swiftBATFoVSmall
Browse files Browse the repository at this point in the history
Changed the default BAT FoV from 50 arcmin to 50 degrees. Should sort…
  • Loading branch information
DavidT3 authored Sep 7, 2024
2 parents 89d9c08 + fcfe91a commit 7ba529b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions daxa/mission/swift.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This code is a part of the Democratising Archival X-ray Astronomy (DAXA) module.
# Last modified by David J Turner (turne540@msu.edu) 24/04/2024, 10:27. Copyright (c) The Contributors
# Last modified by David J Turner (turne540@msu.edu) 07/09/2024, 13:48. Copyright (c) The Contributors

import gzip
import io
Expand Down Expand Up @@ -188,7 +188,7 @@ def fov(self) -> Union[Quantity, dict]:
# here (https://swift.gsfc.nasa.gov/about_swift/bat_desc.html).
# BAT is somewhat complicated, because the half-coded region (which can do imaging) has a 100x60deg FoV, so I
# have gone with half the long side
self._approx_fov = {'XRT': Quantity(11.8, 'arcmin'), 'BAT': Quantity(50, 'arcmin'),
self._approx_fov = {'XRT': Quantity(11.8, 'arcmin'), 'BAT': Quantity(50, 'deg'),
'UVOT': Quantity(8.5, 'arcmin')}
return self._approx_fov

Expand Down

0 comments on commit 7ba529b

Please sign in to comment.