new_sources.py
check_primary_image(row)
¶
Checks if the primary image is in the image list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
row | Series | Row of the missing_sources_df, need the keys 'primary' and 'img_list'. | required |
Returns:
Type | Description |
---|---|
bool | True if the primary image is in the image list. |
Source code in vast_pipeline/pipeline/new_sources.py
23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
gen_array_coords_from_wcs(coords, wcs)
¶
Converts SkyCoord coordinates to array coordinates given a wcs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
coords | SkyCoord | The coordinates to convert. | required |
wcs | WCS | The WCS to use for the conversion. | required |
Returns:
Type | Description |
---|---|
ndarray | Array containing the x and y array coordinates of the input sky coordinates, e.g.: np.array([[x1, x2, x3], [y1, y2, y3]]) |
Source code in vast_pipeline/pipeline/new_sources.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
get_image_rms_measurements(group, nbeam=3, edge_buffer=1.0)
¶
Take the coordinates provided from the group and measure the array cell value in the provided image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
group | DataFrame | The group of sources to measure in the image, requiring the columns: 'source', 'wavg_ra', 'wavg_dec' and 'img_diff_rms_path'. | required |
nbeam | int | The number of half beamwidths (BMAJ) away from the edge of the image or a NaN value that is acceptable. | 3 |
edge_buffer | float | Multiplicative factor applied to nbeam to act as a buffer. | 1.0 |
Returns:
Type | Description |
---|---|
DataFrame | The group dataframe with the 'img_diff_true_rms' column added. The column will contain 'NaN' entires for sources that fail. |
Source code in vast_pipeline/pipeline/new_sources.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
|
new_sources(sources_df, missing_sources_df, min_sigma, edge_buffer, p_run, n_cpu=5, max_partition_mb=15)
¶
Processes the new sources detected to check that they are valid new sources. This involves checking to see that the source should be seen at all in the images where it is not detected. For valid new sources the snr value the source would have in non-detected images is also calculated.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sources_df | DataFrame | The sources found from the association step. | required |
missing_sources_df | DataFrame | The dataframe containing the 'missing detections' for each source. See the source code comments for the layout of this dataframe. | required |
min_sigma | float | The minimum sigma value acceptable when compared to the minimum rms of the respective image. | required |
edge_buffer | float | Multiplicative factor to be passed to the 'get_image_rms_measurements' function. | required |
p_run | Run | The pipeline run. | required |
n_cpu | int | The desired number of workers for Dask | 5 |
max_partition_mb | int | The desired maximum size (in MB) of the partitions for Dask. | 15 |
Returns:
Type | Description |
---|---|
DataFrame | The original input dataframe with the 'img_diff_true_rms' column added. The column will contain 'NaN' entires for sources that fail. Columns: source - source id, int. img_list - list of images, List. wavg_ra - weighted average RA, float. wavg_dec - weighted average Dec, float. skyreg_img_list - list of sky regions of images in img_list, List. img_diff - The images missing from coverage, List. primary - What should be the first image, str. detection - The first detection image, str. detection_time - Datetime of detection, datetime.datetime. img_diff_time - Datetime of img_diff list, datetime.datetime. img_diff_rms_min - Minimum rms of diff images, float. img_diff_rms_median - Median rms of diff images, float. img_diff_rms_path - rms path of diff images, str. flux_peak - Flux peak of source (detection), float. diff_sigma - SNR in differnce images (compared to minimum), float. img_diff_true_rms - The true rms value from the diff images, float. new_high_sigma - peak flux / true rms value, float. |
Source code in vast_pipeline/pipeline/new_sources.py
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 |
|
parallel_get_rms_measurements(df, edge_buffer=1.0, n_cpu=0, max_partition_mb=15)
¶
Wrapper function to use 'get_image_rms_measurements' in parallel with Dask. nbeam is not an option here as that parameter is fixed in forced extraction and so is made sure to be fixed here to. This may change in the future.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df | DataFrame | The group of sources to measure in the images. | required |
edge_buffer | float | Multiplicative factor to be passed to the 'get_image_rms_measurements' function. | 1.0 |
n_cpu | int | The desired number of workers for Dask | 0 |
max_partition_mb | int | The desired maximum size (in MB) of the partitions for Dask. | 15 |
Returns:
Type | Description |
---|---|
DataFrame | The original input dataframe with the 'img_diff_true_rms' column added. The column will contain 'NaN' entires for sources that fail. |
Source code in vast_pipeline/pipeline/new_sources.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|