Lightning Detection from Weather Radar

Total Page:16

File Type:pdf, Size:1020Kb

Lightning Detection from Weather Radar Lightning Detection from Weather Radar Da Fan Drew Polasky [email protected] [email protected] Department of Meteorology and Atmospheric Science, Department of Meteorology and Atmospheric Science, Pennsylvania State University Pennsylvania State University State College, PA State College, PA Sree Sai Teja Lanka Sumedha Prathipati [email protected] [email protected] Department of Computer Science and Engineering, Department of Computer Science and Engineering, Pennsylvania State University Pennsylvania State University State College, PA State College, PA ACM Reference Format: data, with an F1 score of 0.29. Da Fan, Drew Polasky, Sree Sai Teja Lanka, and Sumedha Prathipati. 2019. Lightning Detection from Weather Radar. In IST 597 Fall’19: Keywords: Geostationary Lightning Mapper, Next Gen- Deep Learning, December 16, 2019, State College, PA. ACM, New York, eration Weather Radar, UNet, ResNet, Inception V3, Data NY, USA, 8 pages. https://doi.org/10.1145/1122445.1122456 Augmentation, Data Downsampling 1 ABSTRACT 2 INTRODUCTION In this study, we use Radar Images in deep learning algo- rithm to detect lightning. Radar reflectivity represents the Lightning is a significant and difficult to predict weather quantity and size of water and ice particles in the atmosphere. hazard, causing an average of about 50 deaths and 9000 wild- This value does not directly relate to the presence of light- land fires annually in the United States ning, but similar processes that produce high reflectivity (https://www.weather.gov/safety/lightning-victims). Light- values also lead to a greater probability of lightning. We ning is often accompanied by heavy rainfall, hail, and strong use radar data along with lightening labels from the Geo- winds. It’s important to predict lightning and provide timely stationary Lightning Mapper to train deep learning models alerts about the possible lightning strikes. However, it’s still for lightning detection. The radar image was captured once a hard task to give precise information about their timing every 5 minutes.The lightning strikes were captured once and location. Current methods for predicting lightning in every 20 seconds and combined into one lightning label ev- operational settings rely on simple thresholds from radar ery 5 minute. These data are available from Mar, 2018 to Oct, images [13]. 2019, giving around 150,000 images in total. We use data Artificial Intelligence can be used to predict various weather augmentation and downsampling to overcome the unbal- phenomenon [5]. One possible way to predict lightning is to anced nature of the data and reduce the memory demands use machine learning algorithms, which has already been ap- of the model. We test UNet, Google Inception v3 and ResNet plied to weather prediction. Logistic regression and random architectures initially. In the initial testing, UNet performed forest models were employed by Ruiz and Villa (2007)[8] to the best. Training a new UNet model from scratch we find distinguish convective and non-convective systems based on that it can reasonably predict lightning locations from radar features extracted from satellite images. Similarly, Veillette et al.(2013)[12] applied decision tree and neural networks to Permission to make digital or hard copies of all or part of this work for predict convection initiation from various features including personal or classroom use is granted without fee provided that copies satellite image and radar data. are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. Copyrights Deep learning methods [4] offer the ability to encode spa- for components of this work owned by others than the author(s) must tial features at multiple scales and levels of abstraction with be honored. Abstracting with credit is permitted. To copy otherwise, or the explicit goal of encoding the features that maximize pre- republish, to post on servers or to redistribute to lists, requires prior specific dictive skill. Schon et al. (2018)[10] trained tree classifiers permission and/or a fee. Request permissions from [email protected]. and neural networks with optical flow error based on satellite IST 597 Fall’19, December 16, 2019, State College, PA images to predict lightning, and achieve a high accuracy but © 2019 Copyright held by the owner/author(s). Publication rights licensed to ACM. also a high false alarm rate. Yunish et al. (2019)[14] applied ACM ISBN 978-1-4503-9999-9/18/06...$15.00 also artificial neural networks with storm parameters from https://doi.org/10.1145/1122445.1122456 polarimetric radar to predict and nowcast lightning. IST 597 Fall’19, December 16, 2019, State College, PA Da, Polasky, Lanka, Prathipati In this work, we used three different Convolutional Neural Network (CNN) models, including UNet, ResNet, and Incep- tion V3, to predict lightning based on NEXRAD radar images and lightning labels from Geostationary Lightning Mapper (GLM) data. 3 DATA Dataset In this analysis, the following datasets were used: 1) the lightning data from the Geostationary Lightning Mapper Figure 2: Sample lightning label. The green dot indicates (GLM), 2) the composite radar reflectivity fields from the lightning strike at the grid box. National Severe Storms Laboratory (NSSL) 3D mosaic Next Generation Weather Radar (NEXRAD). Our analysis covers the period from 1 March 2018 until 31 October 2019, during Unbalanced Data which GLM data are available. Lightning is relatively rare, present in about 0.000072 of the Radar reflectivity images come from the National Severe pixels in our dataset. This presents a challenge for training Storms Laboratory (NSSL) 3D mosaic Next Generation Weather models, as the accuracy of model that never predicts light- Radar (NEXRAD). The radar mosaic data have a 1-km hori- ning will be highly accurate. To overcome this issue, we zontal resolution, a 5-min temporal resolution, with 2600x6000 tune the data, and select training cases with more lightning pixels per image, covering the Continental US (CONUS). The present. For this reason, we do not focus on accuracy as the sample radar image is shown in figure 1. primary metric for evaluating these models. The lightning labels utilized in this work were detected by the GLM instrument aboard the GOES-16 satellite. GLM Data Downsampling camera pixels detect lightning flashes day and night with a Downsampling is used to reduce the total size of the images, horizontal resolution ranging between 8 and 12 km, with an in order to more easily train the models. Although shrinking average detection efficiency nearing 90 percent (Goodman an image does not require filling in new space as in the case et al. 2013[2]). of upsampling, care must still be taken to ensure that minimal The lightning data centroids initially stored in 20-s intervals useful information is lost. For example, consider an image were binned in 5-minute intervals and then projected onto made up of alternating black and white pixels. If you shrink a uniform 10-km grid with 260x600 data points within the this image to half its size by directly sampling the values Contiguous United States. The sample radar lightning label of every other pixel, you would end up with a completely is shown in figure 2. white or black image. The resolution of the lightning labels is one tenth that of the radar data. We downsample the radar images to match the resolution of the lightning images, to reduce the requirements on the model, while losing as little useful information as possible. Data Augmentation Using the augmentation techniques likes resize, rotate, zoom, to create the different angles of lightening if needed asthe lightening percentage is 1 compared to non lightening. So we have tried to add the labels noise to increase the number of 1s compared to 0 which is lightning vs non lightning proportion. Figure 1: Sample radar image. The shading in the radar im- We followed some techniques of resizing, zooming, scaling age indicates radar reflectivity. and scaling for adding the noise to crop the images with more portion of lightning, which in other terms is called as ’Adding Adversarial Label Noise’. Adding Adversarial Label Noise. We have tried to resize the image and increase the fraction of lightning and non light- ning zooming the image to match the fraction to 3:4. Here are the sample of an image when the image is original(Figure 2 IST 597 Fall’19, December 16, 2019, State College, PA Da, Polasky, Lanka, Prathipati 3) and when the image is cropped(Figure 4) and we can visu- 3X3 CNN layer with the number of feature maps equal to alise the dark portion of original to the dark portion in the the number of segments desired. [9] cropped image. To detect the lightning in the radar images, the UNet model is trained from scratch on the GLM data to produce the seg- mented images as the output. The yellow segmented regions in the output denote the presence of lightning in the image. Figure 3: Original radar image Figure 5: Architecture of UNet Model Figure 4: Image obtained after adding adversarial label noise ResNet Training deep neural networks with gradient based optimiz- ers and learning methods can cause vanishing and exploding 4 TRANSFER LEARNING AND MODELS gradients during backpropagation. With the help of residual Three image deep learning models (UNet, Resnet, and Google blocks, we can increase the number of hidden layers without Inception V3), are evaluated for use on radar data. worrying about this problem. Residual blocks enables the net- work to preserve what it had learnt previously by having an UNet identity mapping weight function where the output is equal This architecture [7] looks like a ‘U’ which justifies its name. to the input, preserving what the neural network has learnt This architecture consists of three sections: the contraction, by not applying diminishing transformations.
Recommended publications
  • The Error Is the Feature: How to Forecast Lightning Using a Model Prediction Error [Applied Data Science Track, Category Evidential]
    The Error is the Feature: How to Forecast Lightning using a Model Prediction Error [Applied Data Science Track, Category Evidential] Christian Schön Jens Dittrich Richard Müller Saarland Informatics Campus Saarland Informatics Campus German Meteorological Service Big Data Analytics Group Big Data Analytics Group Offenbach, Germany ABSTRACT ACM Reference Format: Despite the progress within the last decades, weather forecasting Christian Schön, Jens Dittrich, and Richard Müller. 2019. The Error is the is still a challenging and computationally expensive task. Current Feature: How to Forecast Lightning using a Model Prediction Error: [Ap- plied Data Science Track, Category Evidential]. In Proceedings of 25th ACM satellite-based approaches to predict thunderstorms are usually SIGKDD Conference on Knowledge Discovery and Data Mining (KDD ’19). based on the analysis of the observed brightness temperatures in ACM, New York, NY, USA, 10 pages. different spectral channels and emit a warning if a critical threshold is reached. Recent progress in data science however demonstrates 1 INTRODUCTION that machine learning can be successfully applied to many research fields in science, especially in areas dealing with large datasets. Weather forecasting is a very complex and challenging task requir- We therefore present a new approach to the problem of predicting ing extremely complex models running on large supercomputers. thunderstorms based on machine learning. The core idea of our Besides delivering forecasts for variables such as the temperature, work is to use the error of two-dimensional optical flow algorithms one key task for meteorological services is the detection and pre- applied to images of meteorological satellites as a feature for ma- diction of severe weather conditions.
    [Show full text]
  • 6.4 the Warning Time for Cloud-To-Ground Lightning in Isolated, Ordinary Thunderstorms Over Houston, Texas
    6.4 THE WARNING TIME FOR CLOUD-TO-GROUND LIGHTNING IN ISOLATED, ORDINARY THUNDERSTORMS OVER HOUSTON, TEXAS Nathan C. Clements and Richard E. Orville Texas A&M University, College Station, Texas 1. INTRODUCTION shear and buoyancy, with small magnitudes of vertical wind shear likely to produce ordinary, convective Lightning is a natural but destructive phenomenon storms. Weisman and Klemp (1986) describe the short- that affects various locations on the earth’s surface lived single cell storm as the most basic convective every year. Uman (1968) defines lightning as a self- storm. Therefore, this ordinary convective storm type will propagating atmospheric electrical discharge that results be the focus of this study. from the accumulation of positive and negative space charge, typically occurring within convective clouds. This 1.2 THUNDERSTORM CHARGE STRUCTURE electrical discharge can occur in two basic ways: cloud flashes and ground flashes (MacGorman and Rust The primary source of lightning is electric charge 1998, p. 83). The latter affects human activity, property separated in a cloud type known as a cumulonimbus and life. Curran et al. (2000) find that lightning is ranked (Cb) (Uman 1987). Interactions between different types second behind flash and river flooding as causing the of hydrometeors within a cloud are thought to carry or most deaths from any weather-related event in the transfer charges, thus creating net charge regions United States. From 1959 to 1994, there was an throughout a thunderstorm. Charge separation can average of 87 deaths per year from lightning. Curran et either come about by inductive mechanisms (i.e. al. also rank the state of Texas as third in the number of requires an electric field to induce charge on the surface fatalities from 1959 to 1994, behind Florida at number of the hydrometeor) or non-inductive mechanisms (i.e.
    [Show full text]
  • Datasheet: Thunderstorm Local Lightning Sensor TSS928
    Thunderstorm Local Lightning Sensor ™ TSS928 lightning Vaisala TSS928™ is a local-area lightning detection sensor that can be integrated with automated surface weather observations. Superior Performance in Local- area TSS928 detects: Lightning Tracking • Optical, magnetic, and electrostatic Lightning-sensitive operations rely on pulses from lightning events with zero Vaisala TSS928 sensors to provide critical false alarms local lightning information, both for • Cloud and cloud-to-ground lightning meteorological applications as well as within 30 nautical miles (56 km) threat data, to facilitate advance • Cloud-to-ground lightning classified warnings, initiate safety procedures, and into three range intervals: isolate equipment with full confidence. • 0 … 5 nmi (0 … 9 km) The patented lightning algorithms of TSS928 provide the most precise ranging • 5 … 10 nmi (9 … 19 km) of any stand-alone lightning sensor • 10 … 30 nmi (19 … 56 km) available in the world today. • Cloud-to-ground lightning classified The optical coincident requirement into directions: N, NE, E, SE, S, SW, W, Vaisala TSS928™ accurately reports the eliminates reporting of non-lightning and NW range and direction of cloud-to-ground events. The Vaisala Automated lightning and provides cloud lightning TSS928 can be used to integrate counts. Lightning Alert and Risk Management lightning reports with automated (ALARM) system software is used to weather observation programs such as visualize TSS928 sensor data. METAR. Technical Data Measurement Performance Support Services Detection range 30 nmi (56 km) radius from sensor Vaisala TSS928™ is fully supported by our Customer location Support Center, Technical Service Group, and Field Range resolution Three range groups: Service Engineering Team. Maintain optimal 0 … 5 nmi (0 … 9 km) performance by purchasing a service agreement 5 … 10 nmi (9 … 19 km) customized to your unique system requirements.
    [Show full text]
  • METAR/SPECI Reporting Changes for Snow Pellets (GS) and Hail (GR)
    U.S. DEPARTMENT OF TRANSPORTATION N JO 7900.11 NOTICE FEDERAL AVIATION ADMINISTRATION Effective Date: Air Traffic Organization Policy September 1, 2018 Cancellation Date: September 1, 2019 SUBJ: METAR/SPECI Reporting Changes for Snow Pellets (GS) and Hail (GR) 1. Purpose of this Notice. This Notice coincides with a revision to the Federal Meteorological Handbook (FMH-1) that was effective on November 30, 2017. The Office of the Federal Coordinator for Meteorological Services and Supporting Research (OFCM) approved the changes to the reporting requirements of small hail and snow pellets in weather observations (METAR/SPECI) to assist commercial operators in deicing operations. 2. Audience. This order applies to all FAA and FAA-contract weather observers, Limited Aviation Weather Reporting Stations (LAWRS) personnel, and Non-Federal Observation (NF- OBS) Program personnel. 3. Where can I Find This Notice? This order is available on the FAA Web site at http://faa.gov/air_traffic/publications and http://employees.faa.gov/tools_resources/orders_notices/. 4. Cancellation. This notice will be cancelled with the publication of the next available change to FAA Order 7900.5D. 5. Procedures/Responsibilities/Action. This Notice amends the following paragraphs and tables in FAA Order 7900.5. Table 3-2: Remarks Section of Observation Remarks Section of Observation Element Paragraph Brief Description METAR SPECI Volcanic eruptions must be reported whenever first noted. Pre-eruption activity must not be reported. (Use Volcanic Eruptions 14.20 X X PIREPs to report pre-eruption activity.) Encode volcanic eruptions as described in Chapter 14. Distribution: Electronic 1 Initiated By: AJT-2 09/01/2018 N JO 7900.11 Remarks Section of Observation Element Paragraph Brief Description METAR SPECI Whenever tornadoes, funnel clouds, or waterspouts begin, are in progress, end, or disappear from sight, the event should be described directly after the "RMK" element.
    [Show full text]
  • Sensor Mfg. Flexible and Expandable for a Wide Variety of Aviation Wind Speed and Direction RM Young & Taylor Applications
    3.1 THE 21st CENTURY’S AIRPORT WEATHER REPORTING SYSTEM Patrick L. Kelly1, Gary L. Stringer, Eric Tseo, DeLyle M. Ellefson, Michael Lydon and Diane Buckshnis Coastal Environmental Systems, Seattle, Washington sensor readings as well as regular hardware self-tests, 1. INTRODUCTION such as checking the ability to communicate with a serial sensor. It calculates a variety of other parameters Coastal Environmental Systems has built and is including cloud height, obscuration, dew point, altimeter delivering a complete meteorological and RVR setting, RVR and other relevant data. (combined) aviation weather monitoring system. The The following is a table of the sensors used and the system is suitable for CAT I, II or III airports (or smaller) manufacturers: and measures and reports RVR in addition to all the meteorological parameters. The overall system is very Sensor Mfg. flexible and expandable for a wide variety of aviation Wind speed and Direction RM Young & Taylor applications. The following paper describes this system Air Temperature YSI and some of its abilities. Relative Humidity Rotronics Pressure/Altimeter Druck 2. SYSTEM DESCRIPTION Rainfall Met-One Precipitation ID OSI The system has multiple purposes: Ceilometer Eliasson • Display the required weather sensor data in a Visibility Belfort GUI Ambient Light Belfort Freezing Rain Goodrich • Allow multiple displays to connect through a Lightning Detection GAI/Vaisala variety of means Aspirated Temperature Shield RM Young • Allow users to have different levels of access • Provide a Ground To Air voice output Table 1: Sensors and Manufacturers • Provide a dial in voice output • Feed data to other systems (where applicable) The field station is polled by the TDAU and can be • Provide remote maintenance monitoring via the done through direct cable, short haul modem, fiber optic, Internet UHF radio or a combination of these.
    [Show full text]
  • Lightning and the Space Program
    National Aeronautics and Space Administration facts Lightning and the Space NASA Program Lightning protection systems weather radar, are the primary Air Force thunderstorm surveil- lance tools for evaluating weather conditions that lead to the ennedy Space Center operates extensive lightning protec- issuance and termination of lightning warnings. Ktion and detection systems in order to keep its employees, The Launch Pad Lightning Warning System comprises 31 the 184-foot-high space shuttle, the launch pads, payloads and electric field mills uniformly distributed throughout Kennedy processing facilities from harm. The protection systems and the and Cape Canaveral. They serve as an early warning system detection systems incorporate equipment and personnel both for electrical charges building aloft or approaching as part of a at Kennedy and Cape Canaveral Air Force Station (CCAFS), storm system. These instruments are ground-level electric field located southeast of Kennedy. strength monitors. Information from this warning system gives forecasters information on trends in electric field potential Predicting lightning before it reaches and the locations of highly charged clouds capable of support- Kennedy Space Center ing natural or triggered lightning. The data are valuable in Air Force 45th Weather Squadron – The first line of detecting early storm electrification and the threat of triggered defense for lightning safety is accurately predicting when and lightning for launch vehicles. where thunderstorms will occur. The Air Force 45th Weather The Lightning Detection and Ranging system, developed Squadron provides all weather support for Kennedy/CCAFS by Kennedy, detects and locates lightning in three dimensions operations, except space shuttle landings, which are supported using a “time of arrival” computation on signals received at by the National Atmospheric and Oceanic Administration seven antennas.
    [Show full text]
  • JO 7900.5D Chg.1
    U.S. DEPARTMENT OF TRANSPORTATION JO 7900.SD CHANGE CHG 1 FEDERAL AVIATION ADMINISTRATION National Policy Effective Date: 11/29/2017 SUBJ: JO 7900.SD Surface Weather Observing 1. Purpose. This change amends practices and procedures in Surface Weather Observing and also defines the FAA Weather Observation Quality Control Program. 2. Audience. This order applies to all FAA and FAA-contract personnel, Limited Aviation Weather Reporting Stations (LAWRS) personnel, Non-Federal Observation (NF-OBS) Program personnel, as well as United States Coast Guard (USCG) personnel, as a component ofthe Department ofHomeland Security and engaged in taking and reporting aviation surface observations. 3. Where I can find this order. This order is available on the FAA Web site at http://faa.gov/air traffic/publications and on the MyFAA employee website at http://employees.faa.gov/tools resources/orders notices/. 4. Explanation of Changes. This change adds references to the new JO 7210.77, Non­ Federal Weather Observation Program Operation and Administration order and removes the old NF-OBS program from Appendix B. Backup procedures for manual and digital ATIS locations are prescribed. The FAA is now the certification authority for all FAA sponsored aviation weather observers. Notification procedures for the National Enterprise Management Center (NEMC) are added. Appendix B, Continuity of Service is added. Appendix L, Aviation Weather Observation Quality Control Program is also added. PAGE CHANGE CONTROL CHART RemovePa es Dated Insert Pa es Dated ii thru xi 12/20/16 ii thru xi 11/15/17 2 12/20/16 2 11/15/17 5 12/20/17 5 11/15/17 7 12/20/16 7 11/15/17 12 12/20/16 12 11/15/17 15 12/20/16 15 11/15/17 19 12/20/16 19 11/15/17 34 12/20/16 34 11/15/17 43 thru 45 12/20/16 43 thru 45 11/15/17 138 12/20/16 138 11/15/17 148 12/20/16 148 11/15/17 152 thru 153 12/20/16 152 thru 153 11/15/17 AppendixL 11/15/17 Distribution: Electronic 1 Initiated By: AJT-2 11/29/2017 JO 7900.5D Chg.1 5.
    [Show full text]
  • GOES-R Lightning Detection Fact Sheet
    NOAA SATELLITE AND INFORMATION SERVICE | GOES-R SERIES PROGRAM OFFICE GOES-R Lightning Detection This fact sheet This explains fact sheet explainsthe fire the lightningmonitoring detection applications applications available available from GOES-R from Series GOES-R satellites. Series satellites. Why is it important to monitor lightning? Rapid increases in total lightning (in-cloud and cloud-to-ground) activity often precede severe and tornadic thunderstorms. Characterizing lightning activity in storms allows forecasters to focus on intensifying storms before they produce damaging winds, hail or tornadoes. Lightning is a significant threat to life and property, and particularly hazardous for those working outdoors and participating in recreational activities (hiking, boating, golfing, etc.). Lightning is also a Global Climate Observing System essential climate variable, needed to understand and predict changes in climate. Using satellites, we can detect total lightning over vast geographic areas, both day and night, with near-uniform detection efficiency. Lightning during a severe thunderstorm in Las Vegas, Nevada. Credit: David Lund How do GOES-R Series satellites monitor lightning? GOES-R Series satellites carry a Geostationary Lightning Mapper (GLM), the first operational lightning mapper flown in geostationary orbit. GLM is an optical instrument operating at near-infrared wavelengths that detects and maps total lightning activity continuously over the Americas and adjacent ocean regions. GLM data reveal convective storm development
    [Show full text]
  • Three Events Occurred During This Period Which Together Constitute A
    7.3 METEOROLOGICAL AND OCEANIC INSTRUMENTATION AT SPACEPORT FLORIDA – OPPORTUNITIES FOR COASTAL RESEARCH William P. Roeder, Diana L. Hajek, F. Clay Flinn, George A. Maul*, and Michael E. Fitzpatrick 45th Weather Squadron * Department of Marine and Environmental Systems Patrick Air Force Base, FL Florida Institute of Technology Melbourne, FL 1. INTRODUCTION 2.1 Complex Space Launch Weather Requirements The east central coast of Florida has a collection of Weather has a large impact on many aspects of unique and dense meteorological and oceanographic space launch, including: launch operations ground sensors. Data from these instruments are routinely processing operations in preparation for launch, post- saved and thus represent a special resource for coastal launch, various special missions, and routine 24/7 atmospheric and oceanic research. This is especially weather watch and warning responsibilities. true for thunderstorm prediction and convective During launch countdowns, the 45 WS forecasts processes, since central Florida is ‘Lightning Alley’ for and evaluates the Lightning Launch Commit Criteria the U.S. This is an area extremely rich in atmospheric (LCC) and User LCC (Hazen et al., 1995). The boundary layer interactions and subsequent Lightning LCC are a set of complex rules to avoid thunderstorm formation during the summer. Likewise, rocket-triggered lightning (Roeder et al., 1999). All US the nearby coastal waters are dynamically complex. Air Force and NASA space launches use the same The Gulf Stream flows nearby and can cause large Lightning LCC. horizontal sea-surface and vertical sea-to-air The User LCC are limits for three weather temperature gradients that vary in complex patterns categories: 1) near surface winds so the rocket can over space and time with large meteorological and safely clear the launch tower, 2) ceiling and visibility for biological impacts.
    [Show full text]
  • 3.2 Total Lightning As an Indication of Convectively Induced Turbulence Potential in and Around Thunderstorms
    3.2 TOTAL LIGHTNING AS AN INDICATION OF CONVECTIVELY INDUCED TURBULENCE POTENTIAL IN AND AROUND THUNDERSTORMS Ryan Rogers*1, Lawrence Carey1, Kris Bedka2, Wayne Feltz3, Monte Bateman4, Geoffrey Stano5 1 Atmospheric Science Department, University of Alabama-Huntsville 2 SSAI/NASA LaRC 3 CIMSS, University of Wisconsin-Madison 4 USRA, Huntsville, Alabama 5 NASA SPoRT, Huntsville, Alabama 1. INTRODUCTION statistics and found that thunderstorm related flight delays cost the commercial aviation industry Thunderstorms and their associated hazards approximately 2 billion dollars annually in direct pose a serious risk to general, commercial, and operating expenses. All threats to aviation military aviation interests. The threat to aircraft associated with thunderstorms are a result of the from thunderstorms primarily manifests itself in kinetic energy contained in the thunderstorm three areas: icing, lightning, and turbulence. updraft. Just the presence of lightning within a These hazards can be mitigated by avoiding convective cell gives some indication as to the thunderstorms by as wide a margin as is possible. strength of the updraft. Total Lightning (IC+CG) With aviation hazard reduction in mind, the information can reveal not only the location of the Federal Aviation Administration (FAA) provides convective updraft but can also give clues as to some guidelines for pilots to follow to maintain a the strength of the convection. Thunderstorms, by safe distance from thunderstorms in their 2012 definition, contain lightning and the ability to detect publication of the Aeronautical Information Manual and interpret lightning information is a valuable (AIM) in section 7-1-29 dealing with thunderstorm tool to determine which air space has increased flying.
    [Show full text]
  • Lightning Enhancement Over Major Oceanic Shipping Lanes
    PUBLICATIONS Geophysical Research Letters RESEARCH LETTER Lightning enhancement over major oceanic 10.1002/2017GL074982 shipping lanes Key Points: Joel A. Thornton1 , Katrina S. Virts2 , Robert H. Holzworth3 , and Todd P. Mitchell4 • Lightning is enhanced by about a factor of 2 directly over two of the 1Department of Atmospheric Sciences, University of Washington, Seattle, Washington, USA, 2NASA Marshall Space Flight busiest shipping lanes in the Indian 3 Ocean and South China Sea Center, Huntsville, Alabama, USA, Department of Earth and Space Sciences, University of Washington, Seattle, Washington, 4 • Environmental factors such as USA, Joint Institute for the Study of the Atmosphere and Ocean, University of Washington, Seattle, Washington, USA convergence, sea surface temperature, or atmospheric stability do not explain the enhancement Abstract Using 12 years of high-resolution global lightning stroke data from the World Wide Lightning • We hypothesize that ship exhaust Location Network (WWLLN), we show that lightning density is enhanced by up to a factor of 2 directly particles change storm cloud microphysics, causing enhanced over shipping lanes in the northeastern Indian Ocean and the South China Sea as compared to adjacent areas condensate in the mixed-phase with similar climatological characteristics. The lightning enhancement is most prominent during the region and lightning convectively active season, November–April for the Indian Ocean and April–December in the South China Sea, and has been detectable from at least 2005 to the present. We hypothesize that emissions of aerosol Supporting Information: particles and precursors by maritime vessel traffic lead to a microphysical enhancement of convection and • Supporting Information S1 storm electrification in the region of the shipping lanes.
    [Show full text]
  • Demanding Tactical Military
    40813_VaisalaNews_155 7.12.2000 18:30 Sivu 14 Versatile automated weather observation for Demanding Tactical Military Military forces have a universal need for automated weather stations that can be rapidly deployed and used in diverse field operations. They have also tended increasingly to use commercial-off-the-shelf (COTS) products. Vaisala’s new generation MAWS201M Tactical Meteorological Observation System meets the versatile requirements of military forces, and is a genuine COTS product. ilitary forces have a to be portable, capable of quick perature and relative humidity universal need for deployment worldwide, and and precipitation. In addition M rapid-deployment, operational in tactical situa- to the basic functions of pow- automated weather tions in a variety of environ- ering and taking measurements stations that can be used in di- ments. from the sensors, the verse field operations. Two systems can be con- MAWS201M also processes the Furthermore, they are increas- nected to a Windows NT- statistical calculations, per- ingly using commercial-off-the- based workstation via hardwire forms data quality control, logs shelf (COTS) equipment. The or radio modems. The work- data into a secure Flash memo- challenge is to provide COTS station displays the data nu- ry, and formats the data for Hannu Kokko, B.Sc. (Eng.) systems that can be easily merically and graphically, codes output in application-specific Product Manager shipped, installed and field-up- aviation weather reports in formats. Surface Weather Division graded with a variety of sensors METAR/SPECI, and archives The MAWS201M uses a 32- Vaisala Helsinki to give full aviation support ca- and transmits the data for fur- bit Motorola CPU, a 16-bit Finland pabilities in the METAR for- ther processing.
    [Show full text]