The VLF PyDAQviewer
Which Data to Plot
Narrowband data file naming convention
Folder Path Convention: working directory
Select date from calander
Receiver-Transmitter Information
Reproducing the Lightning-Induced Electron Precipitation (LEP) Tutorial
The data are saved in a Matlab V4 format, allowing an ease read with Matlab. The format consists of a header with basic information, followed by the data itself. The specific format is detailed below, so that it is machine-readable in any digital application.
XXYYMMDDHHMMSSZZZ_ACCT.mat
’C:/NarrowbandData/'
. See the user interface in Figure 1.
The path to your data will be something like: 'C:/NarrowbandData/SiteName/Year/MM/DD/'
(e.g. 'C:/NarrowbandData/Tunisia/2018/03/25/'
). Note that this can be on any drive root drive: C-Z including DVD drives etc. So if you burn data to a DVD burn it in the same folder and the PyDAQviewer will be able to find them.
SiteInfo.py
) in which you will enter two dictionaries. The first one is Rx_ID indicating the AWESOME receiver locations and their IDs. The second dictionary is Tx_ID indicating the VLF transmitter IDs and the orientation of their antennas (e.g. 000 for N/S or 001 for E/W). In this way, it is very easy to add any other receiver and transmitter IDs. Then you can simply select the Rx_ID and Tx_ID of interest via menus as shown in Figures 4 and 5.
# -*- coding: utf-8 -*-
#SiteInfo.py
'''
Purpose: Save VLF Receivers (Rx) and Transmitters (Tx) Info
'''
# Rx info
Rx_ID = {
"Tunisia":"TN",
"Algeria":"AL",
"France":"FR",
"Japan":"JP",
"NewYork":"NY",
"Boulder":"BO",
"Cheyenne":"CH",
"Walsenburg":"WS",
"LasVegas":"LV",
}
# Tx info
Tx_ID = {
"NAA-NS":"NAA_000",
"NAA-EW":"NAA_001",
"NRK-NS":"NRK_000",
"NRK-EW":"NRK_001",
"NLK-NS":"NLK_000",
"NLK-EW":"NLK_001",
"NAU-NS":"NAU_000",
"NAU-EW":"NAU_001",
"NPM-NS":"NPM_000",
"NPM-EW":"NPM_001",
"ICV-NS":"ICV_000",
"ICV-EW":"ICV_001",
"NSC-NS":"NSC_000",
"NSC-EW":"NSC_001",
"GQD-NS":"GQD_000",
"GQD-EW":"GQD_001",
"GBZ-NS":"GBZ_000",
"GBZ-EW":"GBZ_001",
"DHO-NS":"DHO_000",
"DHO-EW":"DHO_001",
"HWU-NS":"HWU_000",
"HWU-EW":"HWU_001",
"JXN-NS":"JXN_000",
"JXN-EW":"JXN_001",
"ISR-NS":"ISR_000",
"ISR-EW":"ISR_001"
}
To start edit the SiteInfo.py
file to include the Rx_IDs: Cheyenne, Boulder, Walsenburg, and Las Vegas (note in the SiteInfo.py
file Las Vegas should be all one word: LasVegas).
The output of this configuration is in below: