npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nexrad-level-2-data

v2.4.2

Published

Decode Nexrad Level II radar archive files

Downloads

86

Readme

nexrad-level-2-data

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

Demo

A live demo showing the output of this library (via nexrad-level-2-plot) for select radar sites is available at https://nexrad-demo.netbymatt.com/

Contents

  1. Changes in v2.0.0
  2. Install
  3. Usage
  4. API
  5. Testing
  6. Error Recovery and handling
  7. Supported Messages
  8. Source Data Documentation
  9. 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

Source Data Documentation

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)

Acknowledgements

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