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

v1.2.0

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: v1 demonstratorjetStream, cb, turbulence. The architecture (registry + decoration pipeline + layer manifest + schema-driven form) is built so the remaining phenomena (icing, fronts, tropopause, tropical cyclone, volcanic ash, …) plug in as new PhenomenonDefs.

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 } from "@softwarity/sigwx-draw";
import { MapLibreAdapter, createMapLibreMap } from "@softwarity/sigwx-draw/maplibre";
import { registerSigwxMetadataForm } from "@softwarity/sigwx-draw/form";

const map = createMapLibreMap({ container: "map", center: [2.3, 46.6], zoom: 5 });
const sigwx = new SigwxDraw({ adapter: new MapLibreAdapter({ map }), toolbar: true });

// Drive the metadata form (optional convenience web component):
registerSigwxMetadataForm();
const form = document.querySelector("sigwx-metadata-form");
sigwx.on("select",   (spec) => (form.spec = spec));   // selection changed
sigwx.on("metadata", (spec) => (form.spec = spec));   // values/visibility/errors
form.addEventListener("change", (e) =>
  sigwx.updateMetadata(e.detail.featureId, { [e.detail.key]: e.detail.value }),
);

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, registry?, style?, toolbar?, symbolSprite?, phenomena?, turbulenceTypes? })
  • 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()
  • setStyle(partial), setPhenomenonStyle(type, style), setPhenomenonFlightLevel(type, { min, max }), addTurbulenceTypes(types)

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)