Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inclusion of BATSE systematic error #2

Open
eburnsastro opened this issue Oct 29, 2024 · 0 comments
Open

Inclusion of BATSE systematic error #2

eburnsastro opened this issue Oct 29, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@eburnsastro
Copy link

In gdt-fermi gdt.missions.fermi.gbm.localization contains a few different GBM systematic errors (ground position, hitl, roboBA, etc). It would be beneficial to have a similar file handling the BATSE systematic options. A basic one is below, but I believe the reference contains more complex representations which consider spacecraft pointing, etc

def BATSE_Basic_Model():
    """The localization systematic model for the Ground-Automated localization:
    A mixture of a 1.85 deg Gaussian (78% weight) and a 5.1 deg Gaussian.

    Note: a more detailed systematic is available, dependent on data used
    
    References:
        https://iopscience.iop.org/article/10.1086/313221/pdf
    """
    sigma1 = np.deg2rad(1.85)
    sigma2 = np.deg2rad(5.1)
    frac1 = 0.78
    return ([sigma1, sigma2], [frac1])
@AdamGoldstein-USRA AdamGoldstein-USRA added the enhancement New feature or request label Nov 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants