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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@softwarity/sigwx-draw

v2.0.1

Published

Draw SIGWX (significant weather) charts on any map (grafts onto MapLibre, OpenLayers or Leaflet, Terra-Draw-style). Phenomenon-driven geometry whose metadata controls the rendering (jet barbs, scalloped CB, dashed turbulence, …).

Readme

@softwarity/sigwx-draw

Works with  (via @softwarity/draw-adapter)

Headless SIGWX (significant weather) chart editor that grafts onto an existing MapLibre GL, OpenLayers or Leaflet map — the sibling of @softwarity/sigmet-draw. The host owns the map; this library adds the drawing overlays, edit handles and a phenomenon-driven metadata model. The three engines render identically: the map layer is the shared, data-driven @softwarity/draw-adapter, so styling lives in the data and no domain type ever reaches the engine.

The defining idea: a phenomenon's metadata drives its rendering. A jet stream's wind barbs are computed from its maxWindSpeed; a CB gets a scalloped edge and an ISOL/OCNL/FRQ label; turbulence gets a dashed outline and a MOD/SEV glyph. Each phenomenon is a self-contained, data-driven PhenomenonDef in a registry, so adding one never touches the controller.

Status: phenomena are pure-JSON descriptors compiled into a registry and bundled into self-contained profilesWAFS SWH (the inline default) and TEMSI (temsi-france ground→FL150, temsi-euroc ground→FL450). Shipped phenomena: jet stream, CB, turbulence (CAT), icing, tropopause, zero-isotherm, fronts, WMO point symbols, point markers (volcano / TC / radioactive), and convective / non-convective cloud areas (the latter with zone-level icing + turbulence composites). All metadata editing is inline on the map — there is no form.

Install

npm i @softwarity/sigwx-draw
# peer deps (only the engine you use):
npm i maplibre-gl   # and/or  ol   and/or  leaflet

Quick start (MapLibre)

import { SigwxDraw, type SigwxProfile } from "@softwarity/sigwx-draw";
import { MapLibreAdapter, createMapLibreMap } from "@softwarity/sigwx-draw/maplibre";
import temsiEuroc from "@softwarity/sigwx-draw/profiles/temsi-euroc.json";

const map = createMapLibreMap({ container: "map", center: [10, 48], zoom: 4 });
const sigwx = new SigwxDraw({
  adapter: new MapLibreAdapter({ map }),
  toolbar: true,
  profile: temsiEuroc as unknown as SigwxProfile, // omit ⇒ WAFS SWH (the inline default)
});
await sigwx.ready();

// All metadata editing is INLINE on the map (cards / pickers / FL gauges) — there is no form.
sigwx.on("change", (geojson) => console.log(geojson)); // FeatureCollection output

OpenLayers is identical via @softwarity/sigwx-draw/openlayers (OpenLayersAdapter / createOpenLayersMap), and Leaflet via @softwarity/sigwx-draw/leaflet (LeafletAdapter / createLeafletMap, an L.Map). The consumer loads the engine's stylesheet (maplibre-gl/dist/maplibre-gl.css, ol/ol.css, or leaflet/dist/leaflet.css). Each engine is an optional peerDependency — install only the one(s) you use. Capabilities differ: the globe projection is MapLibre-only (OpenLayers & Leaflet are 2D).

API

  • new SigwxDraw({ adapter, profile?, registry?, style?, toolbar?, symbolSprite?, phenomena?, turbulenceTypes? })profile defaults to WAFS SWH (inline); pass a SigwxProfile (e.g. a TEMSI JSON) to swap the set.
  • draw(type) → id (enter draw mode), select(id|null), updateMetadata(id, patch), updateListItem(id, list, i, patch), removeListItem(id, list, i), delete(id), clear(), bringToFront(id), sendToBack(id)
  • save(): FeatureCollection, load(fc) — metadata lives in feature properties
  • on("change" | "select" | "metadata", cb), off(...), ready(), destroy()
  • setProfile(profile) (live re-ingest, document preserved), setArea(id|null) (frame a chart area), setStyle(partial), setPhenomenonStyle(type, style), setPhenomenonFlightLevel(type, { min, max }), addTurbulenceTypes(types)

Profiles & phenomena

Phenomena are pure-JSON descriptors bundled into self-contained profiles (descriptors + glyph atlas + grouped toolbar), each npm/CDN-servable on its own and loaded via new SigwxDraw({ profile }) or live setProfile(). Bundled under the ./profiles entry point:

  • wafs — WAFS SWH, the inline default: jet stream, CB, turbulence (CAT), icing, …
  • temsi-france (ground→FL150) and temsi-euroc (ground→FL450): cloud areas, fronts, tropopause, zero-isotherm, WMO point-symbol pickers, point markers, …

Cloud areas follow ICAO/WAFC doctrine and split in two: cloudConvective (CU / CB — a CB already implies turbulence + icing via the chart legend) and cloudNonConvective (CI / CC / CS / AC / AS / NS / SC / ST). A non-convective cloud zone can carry zone-level icing and turbulence composites — each one its own card glued above / below the zone (severity picker + its own FL gauge, delete ✕), declared with a composites: [{ key, ref, place }] token that reuses the stock icing / turbulence descriptors (no data duplication). Editing is fully inline.

Headless core (no map)

@softwarity/sigwx-draw/core exposes the pure pieces — the PhenomenonRegistry, the metadata schema/validation, the decoration generators (barbCounts, windBarbFeatures, scallopRing, …) and the GeoJSON (de)serialization. All unit-testable without a map.

Develop

npm run build        # tsc → dist (ESM + d.ts)
npm test             # vitest (pure core + controller via a mock adapter)
cd demo && npm start # Angular demo at http://localhost:4211 (MapLibre + OpenLayers + Leaflet)