You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to build a full AEON plugin to the REM telescope.
REM is an Italian robotic telescope http://www.rem.inaf.it/ installed in La Silla, Chile. Diameter 60cm, it observes in griz and JHK filters, with a nice feature that griz are taken all at the same time.
Their scheduler at this moment accepts automated requests in the form of an email in a defined format. This has been coded and it works. It requires an active proposal of course.
REM Archive is a Postgres database, which has a nicely designed API. The Warsaw team has been processing the data collected for our proposals using a batch script.
It requires these settings, I list there the proposals we have active now.
'REM': {
'proposalIDs': ((50823, "ORP-PI:Mariusz Gromadzki"),(50712,"CNTAC-PI:Rene Mendez") ),
'email': "[email protected]",
},
Additionally, the emailing has to be setup, currently I do it by adding these in the settings:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = secret.get('EMAIL_HOST')
EMAIL_PORT = secret.get('EMAIL_PORT')
EMAIL_USE_TLS = secret.get('EMAIL_USE_TLS', True)
EMAIL_HOST_USER = TOMEMAIL
EMAIL_HOST_PASSWORD = TOMEMAILPASSWORD
The code for accessing the data archive will be attached later.
A footnote: the proposal model should also be changed in TOM to avoid the need of updating the settings every semester. Also not every user can have access to all the proposals, as it is now.
The text was updated successfully, but these errors were encountered:
We would like to build a full AEON plugin to the REM telescope.
REM is an Italian robotic telescope http://www.rem.inaf.it/ installed in La Silla, Chile. Diameter 60cm, it observes in griz and JHK filters, with a nice feature that griz are taken all at the same time.
Their scheduler at this moment accepts automated requests in the form of an email in a defined format. This has been coded and it works. It requires an active proposal of course.
REM Archive is a Postgres database, which has a nicely designed API. The Warsaw team has been processing the data collected for our proposals using a batch script.
To my understanding, all pieces are there to build a full AEON plugin for REM - sending requests and accessing the data.
The facility code for REM is now part of bhtom3 repo and has been tested there:
https://github.com/BHTOM-Team/bhtom3/blob/main/bhtom3/bhtom_observations/facilities/rem.py
It requires these settings, I list there the proposals we have active now.
'REM': {
'proposalIDs': ((50823, "ORP-PI:Mariusz Gromadzki"),(50712,"CNTAC-PI:Rene Mendez") ),
'email': "[email protected]",
},
Additionally, the emailing has to be setup, currently I do it by adding these in the settings:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = secret.get('EMAIL_HOST')
EMAIL_PORT = secret.get('EMAIL_PORT')
EMAIL_USE_TLS = secret.get('EMAIL_USE_TLS', True)
EMAIL_HOST_USER = TOMEMAIL
EMAIL_HOST_PASSWORD = TOMEMAILPASSWORD
The code for accessing the data archive will be attached later.
A footnote: the proposal model should also be changed in TOM to avoid the need of updating the settings every semester. Also not every user can have access to all the proposals, as it is now.
The text was updated successfully, but these errors were encountered: