You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("--catalog", required=True, type=Path, help="The detection catalog to search. An astropy-readable table containing at least 'ra', 'dec', and 'time' columns (with units).")
178
+
parser.add_argument("--psfs", required=False, default=None, type=Path, help="An astropy-readable table containing a 'psf' column (with units) that specifies the PSF-widths of the images from which the detection catalog is derived. If not provided, a value of 1 arcsec is assumed.")
179
+
parser.add_argument("--velocity", required=True, nargs=2, type=float, help="The velocity range over which to search, in units of deg/day.")
180
+
parser.add_argument("--angle", required=True, nargs=2, type=float, help="The on-sky angles over which to search, in units of deg.")
181
+
parser.add_argument("--dx", required=True, type=float, help="Search bin-width, in units of the PSF-width.")
182
+
parser.add_argument("--num-results", required=True, type=int, help="Number of results to produce.")
183
+
parser.add_argument("--results-dir", type=Path, required=True, help="The directory into which to write results.")
184
+
parser.add_argument("--precompute", action='store_true', help="Precompute projected positions of detections for all trial velocities (uses more memory, but may be faster).")
185
+
parser.add_argument("--gpu", action='store_true', help="Run the core-search components of the algorithm on GPU.")
186
+
parser.add_argument("--gpu-kernels", action='store_true', help="Run the entirety of the search algorithm on the GPU.")
187
+
parser.add_argument("--device", type=int, required=False, default=-1, help="The GPU device number to use.")
188
+
parser.add_argument("--output-format", type=str, default='ecsv', help="The astropy.table supported format for writing results.")
0 commit comments