Lightning Tools

Top | Presentations | Data | Climatology | Storms

The purpose of this project is to explore methods of conducting geospatial analyses of ungridded lightning data. In the course of this research, a more generalized module was developed. This work depends heavily on that module (see pointprocess module for more details).

This research was largely conducted in Python with some 2D spatial tracking done in R. All of the analysis was conducted in Jupyter Notebooks to ease reproducibility and reuse. This project focuses on the American Southwest but examples are provided of how a different geographic region could be used.

Note: clicking on any of the images below will bring you to the notebook that was used to generate the image.

Presentations

Top | Presentations | Data | Climatology | Storms

This research has been presented at:

  • The American Geophysical Union (AGU) fall meeting

  • The Scientific Python Conference (SciPy)

Data

Top | Presentations | Data | Climatology | Storms

Lightning data was provided by the National Lightning Detection Network (NLDN):

"The National Lightning Detection Network, NLDN, consists of over 100 remote, ground-based sensing stations located across the United States that instantaneously detect the electromagnetic signals given off when lightning strikes the earth's surface. These remote sensors send the raw data via a satellite-based communications network to the Network Control Center operated by Vaisala Inc. in Tucson, Arizona. Within seconds of a lightning strike, the NCC's central analyzers process information on the location, time, polarity, and communicated to users across the country." (NASA)

Transformation

To facilitate data-use we reformatted the data into NetCDF files and served these files on an internal server using a THREDDS OpenDAP portal.

Reading

Once the data are in NetCDF, it is straightforward to read the data using the xarray package.

Subsetting

For our purposes, we have chosen several research sites and pulled the data out for these sites. However, we have also provided methods for subsetting different geographic regions as in this case looking at Cape Cod:

Climatology

Top | Presentations | Data | Climatology | Storms

Flash Density

One of the most fundamental climatological analyses of lightning is the flash density - the number of lightning strikes per unit area per unit time.


Diurnal Cycle

Another interesting aspect of lightning is the time of day at which it occurs. We can explore the seasonal dependence in the diurnal cycle of lightning using a plot with polar coordinates where the top represents midnight and the bottom represents noon. Months are indicated by color.

To examine diurnal patterns in space, we map the hour of peak flash count. This shows the topographic dependence of the timing of lightning.

Initiation

When looking at storms it can be interesting to explore how one strike is related to another. As a first pass, we mapped the locations of strikes in July and August of one year and colored them by the number of strikes that would occur in the proceeding hour.

Storm level analyses

Top | Presentations | Data | Climatology | Storms

For this research we looked at several case studies over a roughly 1 degree by 1 degree box in Utah. This is what one of the 24 hour case-study periods looks like:

Conditional Rate of Occurrence

Given a strike at a particular location, what is the rate of occurrence of strikes within 20km in a 2 minute window surrounding the time of strike?

Tracking

We can use an object based method to track features using the r package SpatialVx and compare how radar based tracking compares to lightning tracking by loading in output from TITAN for the same storms:

Point Process Modeling

The most common point process model is the Poisson process. Lightning strikes constitute a space-time Poisson process if the number of strikes in disjoint time and space intervals are independent and have a Poisson distribution. This independent increment assumption does not hold, because lightning strikes are strongly “clustered”.

Our models build on Cox process models, which are conditional Poisson models in that the rate of occurrence is not a deterministic function of space and time, but a random process.

We setup a model for several case studies and found that the lightning strikes predicted by radar reflectivity agreed reasonably well with observed strikes.

Top | Presentations | Data | Climatology | Storms