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-noaa-sonar-charts

v1.2.0

Published

NOAA high-resolution underwater relief charts (NOAA sonar + BlueTopo bathymetry/relief) for Signal K / Freeboard. Renders missing tiles on demand into an MBTiles cache and masks out land.

Readme

signalk-noaa-sonar-charts

screenshot

A Signal K chart provider for high resolution underwater relief charts around the eastern United States and parts of the Caribbean. It adds three chart layers to Freeboard-SK and serves their tiles from local caches, fetching any missing tile from NOAA on demand and saving it so the charts work offline from whatever you've already viewed.

| Chart | Description | |---|---| | NOAA Hi-Res Relief | High resolution relief (coverage limited) | | BlueTopo Relief | Mid resolution underwater relief | | BlueTopo Depth Color | Colorized depth indicator |

The layers are pre-baked with set opacities so they should play well with other layers with minimal configuration. The two BlueTopo layers have land masked out (made transparent) so they don't cover the land features of your base chart. If you have any difficulties, change the stack order. The HiRes relief is best when its the top layer.

Coverage area

coverage

Requirements

  • Signal K server with Freeboard-SK v2 or later.
  • Node.js ≥ 22.5.0.

Installation

Locate the plugin in the Signal K App Store and install from there.

Then restart Signal K and enable the plugin under Server → Plugin Config → "NOAA Sonar Chart Provider". The three charts appear in Freeboard's chart list.

Configuration

| Setting | Default | Notes | |---|---|---| | Download missing tiles dynamically | on | Disable for offline viewing (serve only tiles already cached). | | Baked layer opacity (advanced) | 0.75 / 0.50 / 0.30 | Per-layer opacity baked into the tiles so the layers stack well. Most users won't change these. |

Tile caches are stored in the plugin's data directory (<signalk-config>/plugin-config-data/noaa-sonar-chart-provider/).

Land masking (one-time download)

To mask out land, the plugin downloads a worldwide coastline dataset the first time it runs (stored in the plugin's data directory). It's a large, one-time download that happens automatically in the background; until it finishes, the BlueTopo layers are shown without land masking. On a slow connection you can pre-build this dataset on another computer and copy it over — see AGENTS.md.

Pre-loading an area (optional)

By default, tiles are fetched as you view them. To pre-load an area in advance (e.g. before heading offline), use the bundled noaa-sonar-charts command from your Signal K configuration directory:

cd ~/.signalk
npx noaa-sonar-charts --bbox -82.0 24.4 -80.05 25.6

--bbox is west south east north in decimal degrees (WGS84) — west/east are longitude, south/north are latitude, and western longitudes / southern latitudes are negative. The example above covers the Florida Keys.

It pre-loads all three layers by default. Choose layers with +/- (default +all): e.g. -all +color for only Depth Color, or +all -hi to skip the hi-res layer. Other options: --min-zoom, --max-zoom, --workers, --dir. Run npx noaa-sonar-charts with no arguments for full help.

It is resumable and additive — re-run it to extend the area or add zoom levels.

Data sources & attribution

  • NOAA NCEI bathymetric sonar (BAG hillshade subsets).
  • NOAA Office of Coast Survey BlueTopo via nowCOAST.
  • Coastline: OpenStreetMap land polygons (© OpenStreetMap contributors, ODbL).

NOAA data is in the public domain. This plugin is not for navigation.

License

Apache-2.0.

Developers: see AGENTS.md for architecture, build/development setup, and implementation notes.