Skip to content

Commit

Permalink
update dec_bounds default
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Wilensky committed May 28, 2024
1 parent 4df309a commit 5be3560
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion beam_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@
parser.add_argument("--ra-bounds", type=float, action="store", default=(0, 1),
nargs=2, required=False, dest="ra_bounds",
help="Bounds for the Right Ascension of the randomly simulated sources")
parser.add_argument("--dec-bounds", type=float, action="store", default=(-0.6, 0.4),
parser.add_argument("--dec-bounds", type=float, action="store",
default=(-np.pi/2, 1.),
nargs=2, required=False, dest="dec_bounds",
help="Bounds for the Declination of the randomly simulated sources")
parser.add_argument("--lst-bounds", type=float, action="store", default=(0.2, 0.5),
Expand Down

0 comments on commit 5be3560

Please sign in to comment.