Code Monkey home page Code Monkey logo

weather-alerts-geojson's Introduction

Weather Alerts GeoJSON

Streaming conversion of National Weather Service alerts to GeoJSON

Usage

geojson.stream()

geojson.stream() is a through-stream that converts alerts into geojson FeatureCollections. It is intended to be used downstream of weather-alerts-parser. Each alert will be converted to a separate feature collection.

stylize

The stylize option will add simple styles based on the official NWS hazard map colors.

geojson.collect()

geojson.collect() will a convert a stream of alert FeatureCollections into a single FeatureCollection where each feature (e.g. a specific county) contains all the alerts that apply to it in the properties attribute.

flatten

By default, properties will be an array containing these alerts, but if flatten option is set to true, then properties will be a JSON object containing the alert properties. If there is only one alert, then those attributes will be directly available on properties. If there is more than one alert, then properties will contain an alert-count attribute and for each alert, the alert properties will be prefixed with alert-<N>- where N is the index (starting at 1) of the each alert's properties. Putting properties into a single flat object is a little more standard and will probably be supported in more tools/environs.

sort

If the sort option is set to true, then alerts will be sorted by severity, urgency, and certainty. More severe alerts will be first, if there is a tie in severity then more urgent alerts will be first. If severity and urgency are the same, then certainty is used to break any ties there.

Example

Here's an example that writes a GeoJSON FeatureCollection representing the current alerts to stdout:

var es = require('event-stream');
var geojson = require('weather-alerts-geojson');
var parser = require('weather-alerts-parser');
var request = require('request');

request.get('http://alerts.weather.gov/cap/us.php?x=1')
  .pipe(parser.stream())
  .pipe(geojson.stream({'stylize': true}))
  .pipe(geojson.collect({'sort': true, 'flatten': true}))
  .pipe(es.stringify())
  .pipe(process.stdout)

weather-alerts-geojson's People

Contributors

wilsaj avatar jseppi avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.