5
$\begingroup$

I am trying to generate skymaps for a set of Fermi GBM triggers, containing the probability that a trigger originated in a given part of the sky. For each trigger, I have access to the RA, dec, error radius, and reliability values.

This website is a perfect example of what I am trying to do. There is a table with with RA, Dec, error, and reliability values, which were used to generate maps (sample). My question is, how was this done?

My understanding of the problem is that I must first generate fits files based on the data, and then use either a python library or external program to render the skymap from the file.

I have already looked at both healpy and astropy, which provide a means to create and manipulate fits files. Creating a blank fits file is easy, but I am at a loss as to how to populate the files I generate with relevant probabilities based on the data I have access to. Any help, even just a pointer in the right direction, would be greatly appreciated. Thank you for your time.

edit- description of the error radius parameter:

This parameter is the uncertainty in the position, in degrees. The GBM errors are not symmetric, and the given value is the average of the error ellipse.

This is what results in the asymmetrical blob shapes.

$\endgroup$
4
  • $\begingroup$ Isn't this "just" a Bayesian estimate? You want to calculate $Pr[\mathrm{location} = x|\mathrm{data}]= C Pr[\mathrm{data}|\mathrm{location}=x] Pr[\mathrm{location}=x]$ for some normalization constant C. I assume the prior term at the end is uniform, so all you need to do is to convert the error/reliability data into some distribution like the en.wikipedia.org/wiki/Kent_distribution or en.wikipedia.org/wiki/Von_Mises%E2%80%93Fisher_distribution and then calculate it for all points on the sky sphere. $\endgroup$ Commented Apr 3, 2018 at 10:16
  • $\begingroup$ There doesn't seem to be enough information. The maps show an asymmetric "blob" shaped distribution. The values that you have are just a measure of location and a measure of spread. On its own that just gives you a circle on the sky. If you assume a gaussian distribution, you get a fuzzy circle. But you need more information to justify a non circular distribution. $\endgroup$
    – James K
    Commented Apr 3, 2018 at 17:14
  • $\begingroup$ It looks like the map may be based on inference from the different sensors (the ovals) plus what I assume is some noise estimate data, resulting in the non-Gaussian blob. I can't see whether that raw data from the sensors is in the fits file, but otherwise the only thing Mike can do is to put a Gaussian (or Kent or von Mieses) blob on the map accordingly. $\endgroup$ Commented Apr 3, 2018 at 18:37
  • $\begingroup$ @JamesK Very good point, I forgot to mention that the error_radius values given are not symmetric, and the given value is the average of the error ellipse. This is what causes the asymmetrical blob shape in the skymap. I will edit the main question to include this new piece of information. Thank you all for your help thus far. $\endgroup$
    – Mike
    Commented Apr 3, 2018 at 20:17

0

You must log in to answer this question.

Browse other questions tagged .