Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.02 KB | None | 0 0
  1. 6 Oct 2017: vast-1.0rc80:
  2.  
  3. * Added a workaround for the PV/SIP WCS convention problem that does not allow
  4. SExtractor to take into account the distortion corrections determined by Astrometry.net
  5. see http://adsabs.harvard.edu/abs/2012SPIE.8451E..1MS for a detailed discussion.
  6. The workaround is to use xy2sky routine from WCSTools to convert SExtractor-derived
  7. pixel coordinates to celestial coordinates rather than relying on SExtractor
  8. to do this conversion.
  9.  
  10. * The magnitude measurements are now performed in multiple apertures for each image:
  11. ref. ap. = median(A_IMAGE) * CONST the reference aperture (the same used by previous
  12. version of VaST), here median(A_IMAGE) is the median semi-major axis lengths among all
  13. the sources detected at the current image, CONST = 6 (may be changed in src/vast_limits.h),
  14. ap. 1 = AP01 * ref. ap., by default AP01=-0.1
  15. ap. 2 = AP02 * ref. ap., by default AP02=0.1
  16. ap. 3 = AP03 * ref. ap., by default AP03=0.2
  17. ap. 4 = AP04 * ref. ap., by default AP04=0.3
  18. the values of AP* parameters may be change in src/vast_limits.h. The measurements in
  19. multiple apertures are used to reject blended sources if '--magsizefilter' is enabled
  20. (see below) or to select for each object an aperture producing its lightcurve with
  21. the smallest scatter. The second is an experimental option, it is disabled by default
  22. and may be activated by specifying '--selectbestaperture' or '-3' option on the command line.
  23. Please try and see if enabling this option actually improves the results with your data.
  24.  
  25. * The magnitude-size filter now includes a battery of filters aimed at rejecting blended
  26. and extended sources. For each frame VaST rejects outliers on the instrumental magnitude
  27. vs parameter plots where the parameters are A_IMAGE, FWHM_IMAGE, mag(ref. ap.)-MAG_AUTO,
  28. mag(ref. ap.)-mag(ap. 1), mag(ref. ap.)-mag(ap. 2), mag(ref. ap.)-mag(ap. 3),
  29. mag(ref. ap.)-mag(ap. 4), A_IMAGE/B_IMAGE.
  30. The filtering is now enabled by default. You may disable it
  31. with '--nomagsizefilter' or '-2' command line options. If image contains many artifacts such as
  32. cosmic rays or hot pixels (often found in CMOS chips) that outnumber stars at some magnitude range,
  33. the filter may do more harm than good. If this is the case for your images, try disabling the filter
  34. and set more conservative SExtractor source detection parameters in default.sex
  35. Details about VaST magnitude-size filtering for each image may be visualized in gnuplot using the log files
  36. image*.cat.magsizefilter_* (for A_IMAGE) and image*.cat.magparameter*filter_* for the remaining
  37. filtering parameters. See SExtractor manual for the detailed description of A_IMAGE, FWHM_IMAGE, MAG_AUTO.
  38.  
  39. * The magnitude calibration script now scales the photometric errorbars, not only the magnitudes themselves.
  40. This makes a big difference with 'photocurve' calibration at the bright end.
  41.  
  42. * Photometric measurements with errorbars larger than MAX_MAG_ERROR=1.086/MIN_SNR=0.362mag (for the default MIN_SNR=3)
  43. are now ignored at all processing stages. You may change the maximum allowed error in src/vast_limits.h
  44.  
  45. * VaST now tries to rescale the errorbars determined by SExtractor using the relation
  46. sigma_new=sqrt( (gamma*sigma_old)^2 + epsilon^2 )
  47. where the coefficients gamma and epsilon are determined using all non-variable stars in the current dataset.
  48. This relation is inspired by the OGLE rescaling of photometric errors in DIA as described by
  49. http://adsabs.harvard.edu/abs/2017MNRAS.468.2189Z
  50. http://adsabs.harvard.edu/abs/2009MNRAS.397.1228W
  51. VaST is not allowed to make the errors smaller than the ones reported by SExtractor,
  52. so the parameters are forced to have the values gamma>=1.0 and epsilon^2>=0.0.
  53. Here epsilon may be interpreted as the systematic noise floor in the current dataset.
  54. The photometric errorbars rescaling is enabled by default. It may be disabled by running
  55. './vast --noerrorsrescale /path/to/images/*fit' or './vast -4 /path/to/images/*fit'
  56. The new line in vast_summary.log indicates if the errorbars rescaling was requested or not:
  57. Photometric errors rescaling: YES / NO
  58. The photometric errorbars rescaling is usually not needed in the PSF photometry mode,
  59. but should do no harm if applied.
  60.  
  61. * VaST selects candidate variables (listed in 'vast_autocandidates.log' and highlighted in blue in './find_candidates')
  62. as objects that stand out in one or more variability index vs. magnitude plots. VaST also lists
  63. candidate non-variable stars in 'vast_list_of_likely_constant_stars.log' -- these are well-measured
  64. stars that do not stand out in multiple variability indexes simultaneously. The process of selecting
  65. candidate variables and candidate constant stars may now be controlled via the parameters set in 'src/vast_limits.h'
  66. (they follow the 'Automated selection of candidate variables' comment). See http://adsabs.harvard.edu/abs/2017MNRAS.464..274S
  67. for a detailed discussion of variability indexes implemented in VaST.
  68.  
  69. * ./find_candidates now deletes the list of previously-viewed lightcurves kept in vast_viewed_lightcurves.log
  70. if started with no command line arguments ('recompute everything' mode). In earlier versions this file
  71. was kept which caused unexpected behaviour: every time the candidate viewer was run as
  72. './find_candidates aa'
  73. (in the 're-display previously-computed variability statistics' mode) it was highlighting
  74. all the previously-viewed objects, regardless of how many times variability statistics
  75. were recomputed with './find_candidates'
  76.  
  77. * It is now possible to send a lightcurve to the online period search tool from
  78. the lightcurve viewer ('./lc') by pressing 'L' key when the lightcurve viewer was
  79. not started from the VaST directory. For example:
  80. cd /path/to/my_lightcurve_archive
  81. /home/path_to/vast-1.0rc80/lc my_lightcurve.txt
  82.  
  83. * Implemented a more efficient procedure that should speed-up lightcurve writing
  84. on all systems supporting OpenMP.
  85.  
  86. * Fixed the bug that prevented VaST from saving magnitude calibration details
  87. under some circumstances. The symptom was that vast_magnitude_calibration_details_log
  88. was an ASCII file instead of being a directory containing the calibration details.
  89.  
  90. * VaST should now be able to understand observation start dates written in DATE-BEG
  91. FITS header keyword instead of the usual DATE-OBS (as recommended by the draft FITS Standard V4.0).
  92.  
  93. * VaST may now open "slice of a data cube" i.e. an image with NAXIS = 3 and NAXIS3 = 1.
  94. Such slice number $CUBE_SLICE may be extracted from an actual 3D data cube named $INPUT_IMAGE_CUBE
  95. using 'fitscopy' example program from CFITSIO:
  96. fitscopy "$INPUT_IMAGE_CUBE[*,*,$CUBE_SLICE:$CUBE_SLICE]" \!"$OUTPUT_IMAGE_NAME"
  97.  
  98. * VaST will now complain if it encounters a FITS image compressed by MaxIM DL.
  99. These images have to be uncompressed in MaxIM DL before they can be processed with VaST
  100. (or any other software that is not MaxIM DL - I love proprietary data formats).
  101.  
  102. * Changed axis labels in './find_candidates' to indicate that the displayed values of MAD and IQR
  103. are scaled to sigma (to ease comparison with the mag-sigma plot).
  104.  
  105. * The new '--starmatchraius' command line option may be used to tweak the star matching radius -
  106. the maximum distance in pixels (after applying XY coordinates transformation) between the objects
  107. detected on two images for these objects to be assumed the same. You may need to tweak this parameter
  108. in case you experience problems with blending.
  109.  
  110. * Fixed the numerical overflow issue in the flat-field correction routine 'util/ccd/md'
  111. that was causing centers of saturated stars to appear black.
  112.  
  113. * Added support for the I band to the magnitude calibration script 'util/magnitude_calibration.sh',
  114. as with the R band, I magnitudes are computed from APASS r and i magnitudes of the field stars
  115. using the color transformations by Jester et al. 2005 AJ, 130, 873 http://adsabs.harvard.edu/abs/2005AJ....130..873J
  116.  
  117. * A safe value for one of the memory-management parameters MAX_MEASUREMENTS_IN_RAM in src/vast_limits.h
  118. is now set automatically at compile time based on the available amount of physical memory.
  119.  
  120. * Minor bug fixes.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement