survey.py
Functions and classes related to loading and searching of the survey data.
Fields
¶
Class to represent the VAST Pilot survey fields of a given epoch.
Attributes:
Name | Type | Description |
---|---|---|
fields | DataFrame | DataFrame containing the fields information for the selected epoch. |
direction | SkyCoord | SkyCoord object representing the centres of each beam that make up each field in the epoch. |
Source code in vasttools/survey.py
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 |
|
__init__(epochs)
¶
Constructor method.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
epochs | Union[str, List[str]] | The epoch number(s) of fields to collect. | required |
Returns:
Type | Description |
---|---|
None | None |
Source code in vasttools/survey.py
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 |
|
Image
¶
Represent and interact with an Image file from the VAST Pilot Survey.
Attributes:
Name | Type | Description |
---|---|---|
sbid | int | The SBID of the image. |
field | str | The field name. |
epoch | str | The epoch the image is part of. |
stokes | str | The Stokes value of the image. |
path | str | The path to the image file on the system. |
header | Header | The header of the image |
wcs | WCS | The WCS object generated from the header. |
data | ndarry | Array of the image data. |
beam | Beam | radio_beam.Beam object representing the beam of the image. Refer to the radio_beam documentation for more information. |
rmspath | str | The path to the rms file on the system. |
bkgpath | str | The path to the bkg file on the system. |
rms_header | Header | The header of the RMS image |
rmsname | str | The name of the RMS image. |
bkgname | str | The name of the BKG image. |
rms_fail | bool | Becomes |
bkg_fail | bool | Becomes |
Source code in vasttools/survey.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 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 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 |
|
__init__(field, epoch, stokes, base_folder, tiles=False, sbid=None, path=None, rmspath=None, bkgpath=None, rms_header=None, corrected_data=False, post_processed_data=True)
¶
Constructor method.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field | str | Name of the field. | required |
epoch | str | The epoch of the field requested. Do not zero pad the epoch number. | required |
stokes | str | Stokes parameter of interest. | required |
base_folder | str | Path to base folder if using default directory structure. | required |
tiles | bool | Will use 'COMBINED' images when 'True' and 'TILES' when 'False', defaults to | False |
sbid | Optional[str] | SBID of the field, defaults to None. | None |
path | Optional[str] | Path to the image file if already known, defaults to None. | None |
rmspath | Optional[str] | The path to the corresponding rms image file if known, defaults to None. | None |
bkgpath | Optional[str] | The path to the corresponding bkg image file if known, defaults to None. | None |
rms_header | Optional[Header] | Header of rms FITS image if already obtained, defaults to None. | None |
corrected_data | bool | Access the corrected data. Only relevant if | False |
post_processed_data | bool | Access the post-processed data. Only relevant if | True |
Returns:
Type | Description |
---|---|
None | None |
Source code in vasttools/survey.py
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 |
|
get_bkg_img()
¶
Load the background map corresponding to the image.
Returns:
Type | Description |
---|---|
None | None |
Source code in vasttools/survey.py
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 |
|
get_img_data()
¶
Load the data from the image, including the beam.
Returns:
Type | Description |
---|---|
None | None |
Source code in vasttools/survey.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
|
get_paths_and_names()
¶
Configure the file names if they have not been provided.
Returns:
Type | Description |
---|---|
None | None |
Source code in vasttools/survey.py
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 |
|
get_rms_img()
¶
Load the noisemap corresponding to the image.
Returns:
Type | Description |
---|---|
None | None |
Source code in vasttools/survey.py
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 |
|
measure_coord_pixel_values(coords, img=False, rms=False, bkg=False)
¶
Measures the pixel values at the provided coordinate values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
coords | SkyCoord | Coordinate of interest. | required |
img | Optional[bool] | Query the image, defaults to | False |
rms | Optional[bool] | Query the RMS image, defaults to | False |
bkg | Optional[bool] | Query the background image, defaults to | False |
Returns:
Type | Description |
---|---|
ndarray | Pixel values stored in an array at the coords locations. |
Raises:
Type | Description |
---|---|
ValueError | Exactly one of img, rms or bkg must be |
Source code in vasttools/survey.py
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 |
|
get_askap_observing_location()
¶
Function to return ASKAP observing location.
Returns:
Type | Description |
---|---|
EarthLocation | Location of ASKAP. |
Source code in vasttools/survey.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
|
get_fields_per_epoch_info()
¶
Function to create a dataframe suitable for fast field querying per epoch.
Returns:
Type | Description |
---|---|
DataFrame | Dataframe of epoch information |
Source code in vasttools/survey.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
|
get_supported_epochs()
¶
Returns the user a list of supported VAST Pilot epochs.
Returns:
Type | Description |
---|---|
List[str] | List of supported epochs. |
Source code in vasttools/survey.py
207 208 209 210 211 212 213 214 |
|
load_field_centres()
¶
Loads the field centres csv files as a dataframe for use.
Columns present are, 'field', 'centre-ra' and 'centre-dec'. The coordinates are in units of degrees.
Returns:
Type | Description |
---|---|
DataFrame | Dataframe containing the field centres. |
Source code in vasttools/survey.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|
load_fields_file(epoch)
¶
Load the csv field file of the requested epoch as a pandas dataframe.
Columns present are 'SBID', 'FIELD_NAME', 'BEAM', 'RA_HMS', 'DEC_DMS', 'DATEOBS', 'DATEEND', 'NINT', 'BMAJ', 'BMIN', 'BPA'
Parameters:
Name | Type | Description | Default |
---|---|---|---|
epoch | str | Epoch to load. Can be entered with or without zero padding. E.g. '3x', '9' or '03x' '09'. | required |
Returns:
Type | Description |
---|---|
DataFrame | DataFrame containing the field information of the epoch. |
Raises:
Type | Description |
---|---|
ValueError | Raised when epoch requested is not released. |
Source code in vasttools/survey.py
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 |
|
load_fields_skycoords(epoch)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
epoch | str | Epoch to load. Can be entered with or without zero padding. E.g. '3x', '9' or '03x' '09'. | required |
Returns:
Type | Description |
---|---|
DataFrame | DataFrame containing the field information of the epoch. |
Raises:
Type | Description |
---|---|
ValueError | Raised when epoch requested is not released. |
Source code in vasttools/survey.py
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 |
|