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

signalk-avurnav

v0.1.4

Published

Publishes French nautical warnings (AVURNAV/AVINAV) from the PING platform as SignalK notes, regions and distance-based notifications

Downloads

578

Readme

signalk-avurnav

SignalK plugin that publishes active French nautical warnings (AVURNAV, AVINAV, NAVAREA) from the PING platform operated by SHOM.

Features

  • Fetches warnings from the PING WFS API for all available series (Cherbourg, Brest, Toulon, Fort-de-France, Cayenne, NAVAREA II…)
  • Publishes each warning as a SignalK region (polygons) or note (points, lines) → native display in FreeboardSK
  • Warnings without geometry (e.g. summary bulletins) are published as notes positioned at the center of France
  • Emits alert notifications based on vessel position:
    • Polygons: alert when the vessel enters the zone (point-in-polygon)
    • Points / Lines: alert when the vessel is within the configured radius (default: 1 NM)
  • Each note includes a direct link to the warning page on the PING portal
  • Automatic cleanup of obsolete resources and notifications between polls

Requirements

  • SignalK Server v2+
  • @signalk/resources-provider plugin active (included by default in SignalK)
  • Vessel position available in SignalK (navigation.position)

Installation

From the SignalK admin UI → Plugin Store, search for signalk-avurnav.

Or manually:

npm install signalk-avurnav

Configuration

| Parameter | Default | Description | |---|---|---| | series | AVURNAV CHERBOURG, BREST, TOULON | Series to fetch (checklist) | | language | fr | Message language (fr or en) | | pollInterval | 3600 s | Refresh interval | | distanceAlert | 1 NM | Alert radius for points/lines |

Available series

| Area | Series | |---|---| | Worldwide | NAVAREA II | | English Channel / North Sea | AVURNAV CHERBOURG, AVURNAV LOCAL CHERBOURG, AVIRADE CHERBOURG, AVINAV CHERBOURG | | Atlantic | AVURNAV BREST, AVURNAV LOCAL BREST, AVIRADE BREST, AVINAV BREST | | Mediterranean | AVURNAV TOULON, AVURNAV LOCAL TOULON, AVINAV TOULON | | Caribbean | AVURNAV FORT DE FRANCE, AVURNAV LOCAL FORT DE FRANCE, AVINAV FORT DE FRANCE | | French Guiana | AVURNAV CAYENNE, AVURNAV LOCAL CAYENNE, AVINAV CAYENNE |

Published resources

Regions (/resources/regions)

Warnings with polygon geometry are published as SignalK regions, visible in FreeboardSK under the "Regions" layer. An alert notification is triggered when the vessel enters the zone.

Notes (/resources/notes)

Warnings with point or line geometry (and those without geometry) are published as SignalK notes, visible in FreeboardSK under the "Notes" layer. Each note contains the full warning text and a link to the PING portal. An alert notification is triggered when the vessel is within distanceAlert.

Notifications

notifications.navigation.avurnav.<id>

Notification structure:

{
  "state": "alert",
  "method": ["visual", "sound"],
  "message": "[ALERT] AVURNAV TOULON 244/2026 — inside zone — Firing exercise",
  "data": {
    "id": "825f3ba4-...",
    "number": "244/2026",
    "series": "AVURNAV TOULON",
    "title": "Firing exercise — PROVENCE",
    "latitude": 43.2,
    "longitude": 5.5,
    "insideZone": true,
    "url": "https://portail.ping-info-nautique.fr/avurnav-notice/825f3ba4-...",
    "valid_from": "2026-04-15 04:00:00",
    "valid_until": "2026-04-15 13:59:00"
  }
}

Data source

PING — France's national nautical information platform, co-published by SHOM and DGAMPA. Data freely available via OGC WFS API.

License

MIT