nexrad-level-2-data

2.4.0 • Public • Published

nexrad-level-2-data

A javascript implementation for decoding Nexrad Level II radar archive files.

You can find more information on how radar data is encoded at NOAA mainly in the document ICD FOR RDA/RPG - Build RDA 20.0/RPG 20.0 (PDF)

Contents

  1. Changes in v2.0.0
  2. Install
  3. Usage
  4. API
  5. Testing
  6. Error Recovery and handling
  7. Supported Messages
  8. Acknowledgements

Changes in v2.0.0

v2.0.0 is a major overhaul of the parsing engine and has several breaking changes. See UPGRADE.md for detailed breaking changes.

  • Allow for processing of "chunks" in addition to entire volume scan archives.
    • Chunks (real time data) is provided by Unidata in the s3 bucket s3://unidata-nexrad-level2-chunks/
    • Full archives are provided by Unidata in the s3 bucket s3://noaa-nexrad-level2
    • When processing a chunk all data may not be populated in the resulting object. This is deatiled in UPGRADE.md
  • Improve error reporting by throwing when data is not present or invalid elevations or scans are accessed.
  • Unify the data accessor functions (breaking change)
  • Follow NOAA convention of the lowest elevation being 1, and properly sort elevations above 1 into a sparse array (breaking change)
  • Provide a mechanism for consolidating data read from several chunks.

Install

$ npm i nexrad-level-2-data

Usage

const { Level2Radar } = require('nexrad-level-2-data')
const fs = require('fs');
const file_to_load = "./data/KTLX20130420_205120_V06" // The radar archive file to load

const rawData = fs.readFileSync(file_to_load);

new Level2Radar(rawData).then(radar => {
    console.log(radar.getHighresReflectivity())
})

API

Complete API documentation

Testing

A formal testing suite is not provided. Several test-*.js are provided with matching data in the ./data folder. These can be run individually as shown below.

node test.js
node test-chunks.js
node test-error.js

The output of each test script is sent to the console.

Error recovery and handling

This library will throw on many errors including:

  • Buffer not provided for parsing
  • Calling a data accessor on non-existant data such as invalid elevations or azimuths
  • A successfully parsed file that did not contain any data
  • A cursory check on data validity is done by checking the ICAO identifier of each record in the file before further parsing occurs.
  • Basic file length checks against offsets and block lengths listed in the file. The Nexrad archives and chunks do contain errors when read from the Unidata archives in s3 buckets s3://noaa-nexrad-level2 and s3://unidata-nexrad-level2-chunks/. A very basic attempt is made to detect these errors, discard the affected record and find the begining of the next record. This does not always succeeded. The following are the possible outcomes:
  • Successful error detection and skipping to a known good block.
    • Logs to console Invlaid record id or Invalid block type
    • Returns as much data that could be parsed with some gaps in data. The actual gaps are not logged. A manual scan of the Level2Radar.data[] arrays looking at Azimuths would need to be performed to find the gaps in data. However any program calling this routine should be considering the Level2Radar.data[].azimuth data for further processing and thus should be unaffected.
    • Level2Data.hasGaps is set to true
  • Error detection with no skipping to a known good block
    • Logs to console Invalid record id or Invalid block id
    • Later logs to console Unable to recover message
    • Returns as much data that could be parsed.
    • Level2Data.isTruncated is set to trueThe scripttest-error.jscan be run to test some of this functionality. It parses data in./data/messagesizeerror`.

Supported Messages

Nexrad data is stored as message types. This package currently processes the following messages.

Message Title Description
1 Digital Radar Data Reflectivity and velocity data. Replaced by message 31 in 2008 which supports a higher resolution.
2 RDA Status
5 Volume Coverage Pattern Overview of the scanning paramaters
7 Volume Coverage Pattern Overview of the scanning paramaters
31 Digital Radar Data Generic Format Reflectivity and velocity data

Acknowledgements

This work is based on the project of Unidata and nexrad-radar-data

Package Sidebar

Install

npm i nexrad-level-2-data

Weekly Downloads

73

Version

2.4.0

License

MIT

Unpacked Size

95.2 kB

Total Files

24

Last publish

Collaborators

  • netbymatt