Telescope Array Weather Classification and Other Interesting Pedestal Animations
Telescope Array, Research, Machine Learning, Transient Luminous Events,
In order to determine the weather of the field of view (FOV) of the array of telescopes at a Fluorescence Detector (FD) site at the Telescope Array Cosmic Ray Observatory, false color snapshots of the night sky were created using the minute average pedestal for each photomultiplier tube (PMT) in the whole array at the night sky and then classified using a trained neural network. More information on how the snapshots were created and results of the different neural network used for classification can be found in
A series of different neural networks were designed starting from a deep neural network (DNN) to test keras with the data. However much of the features of the data, most importantly it’s dimensionality were lost. A Convolution Neural Network (CNN) was built to capture the spatial information when learning. Next a Recurrent Neural Network (RNN) was
designed to capture the temporal features of the data. Lastly combing a the RNN and CNN into a Recurrent Convolution Neural Network (RCNN) to take full advantage of the temporal and spatial information of the data was designed. Training accuracy above 90% was achieved with good convergence between the training and validation set. Example code used in the project which were run on the Center for High Performance Computing (CHPC) computational clusters at the University of Utah can be found on my github page.
- Pedestal Snapshots
- Clear
- Cloudy
- Noisy
- Meteor Showers
- Meteor Candidates
- High Atmospheric Elves Candidate
- Aurora Borelas and Air Glow Candidates
- Octocopter
- Venus
Below are some examples of animations and some that were found to be interesting.
Pedestal Snapshots
The arrangement of each 16x16 hexagonal grid of PMT cluster for each telescope was reconstructed to match the nominal pointing direction of each PMT to reconstruct FOV of the whole FD site. Each hexagonal pixel represents the pedestal minute average value of each PMT to create a false color image of the night sky in the field of view. Timing information and the nominal pointing direction were marked.
Feature Enhancement
To make the false color snapshot of the night features more clear, the following enhancements were made:
- Each frame had proceeding the frame’s pixel values subtracted to make moving objects more prominent.
- All the values in the frame were logarithmically normalized when mapping the pixel(each Hexagonal PMT) to a false color scale.
Clear
Example of a clear data part. Stars are clearly visible and moving across the FOV with the earth's rotation. Notice the asterism, the Big Dipper, in the upper right of the FOV.
Cloudy
Example of a cloudy data part. Stars are obscured as nebulous clouds move across the whole FOV.
Noisy
Example of a noisy data part. No determinable structure or points in the field of view. FDs were possibly not behaving properly or overloaded from a bright source getting too close to the FD.
Meteor Showers
2009 Geminid Meteor Shower seen in BR's FOV. Blips and transient streaks are seen throughout the FOV as oppossed to the smooth movement of the stars. Some of them have oblong, track shapes to them. Some Airplanes are flying through the BR FOV as seen by the longer streaks that persist for a couple of minutes and track across from one edge to another. Also small clouds are seen forming at some points in the FOV.
2016 Persied Meteor Shower seen in BR's FOV.
Meteor Candidates
Bright Flash in BR's FOV. First idea is a meteor given the track shape. Again notice the asterism, the Big Dipper, in the upper right of the FOV.
Bright Flash in BR's FOV.
Bright Flash in BR's FOV in the lower right.
High Atmospheric Elves Candidate
Expanding rings on the left, possibly an Elf.
Two other similar detectors to TA have seen this: Auger and Mini JEM EUSO.
Aurora Borelas and Air Glow Candidates
Bright vertical flowing source that seems to ripple in the northern part of the FOV. Thus I think this is a good candidate of the northern lights.
According to this source there was observed Aurora Borealis that night.
Transitions from being able to see stars into something bright rolling in. Seems different than the clouds given it's uniformity in the bands.
Octocopter
An octocopter with a UVLED attached to it was flown in BR's FOV as a calibration method.
Venus
A snapshot of the planet Venus, on the left, one of the biggest and brightest objects in BR's FOV.
Back to Top