214 | | === Please write human logs === |
| 214 | === Checking the Sky Brightness, Seeing and Transparency === |
| 215 | |
| 216 | The observing strategy files take as input these environmental conditions for |
| 217 | setting the exposure times to achieve the required MzLS survey depth. |
| 218 | |
| 219 | From an IDL prompt, use the MOSSTAT routine to analyze the latest image on disk: |
| 220 | {{{ |
| 221 | IDL> mosstat |
| 222 | }}} |
| 223 | There are keyword options that allow you to choose different exposure numbers or CCDs |
| 224 | within that exposure. For example, to analyze chip 'im16' of the exposure number 12345, type: |
| 225 | {{{ |
| 226 | IDL> mosstat, 12345, ext='im16' |
| 227 | }}} |
| 228 | The full documentation can be seen with: |
| 229 | {{{ |
| 230 | IDL> doc_library,'mosstat' |
| 231 | }}} |
| 232 | |
| 233 | If the telescope pointing has gone off by more than about 30 arcsec (which happens!), then |
| 234 | this routine will likely fail to match stars. If this happens, the operator will need to recenter the telescope. |
| 235 | |
| 236 | One can also check the observing progress using the almanac command: |
| 237 | IDL> almanac, 10001, /noprint |
| 238 | will print out a summary of all the frames from 10001 to the present in a nice tabular form (widen the window). This is useful for checking how the seeing and sky brightness have varied since frame 10001, and whether one should create and upload a new JSON observing script. The /noprint just prevents the decstat output for every frame; if you want to see that, then don't use the /noprint keyword. |
| 239 | |
| 240 | |
| 241 | === Please write useful human logs === |