A TOM Toolkit app that integrates Astrophysics Cross-Observatory Science Support (ACROSS) functionality and features into the target page.
tom_across brings 2 main features to the target page as a separate tab. Each of these come with a form to
filter and query the ACROSS servers.
- An observation table that displays observations within a cone search of the target's RA and Dec
- A visibility plot for ACROSS observatories.
- Install the package into your TOM environment:
pip install tom-across- In your project
settings.py, addtom_acrossto yourINSTALLED_APPSsetting:
INSTALLED_APPS = TOMTOOKIT_INSTALLED_APPS + [
'custom_code',
...
'tom_across',
]- Optionally add the following to your
settings.pyto alter the default initial query parameters on page load. More parameters can be filtered upon through the front-end form.
ACROSS_DEFAULT_ARGS = {
'OBSERVATION_TABLE_DEFAULTS':{
'cone_search_radius': 0.1,
},
'VISIBILITY_OBSERVATORY_DEFAULTS':[
'JWST', 'HST', 'Swift'
]
}