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

orienteering-symbols-data

v1.0.1

Published

Standardized data for orienteering map symbols and control descriptions

Downloads

2

Readme

Orienteering Symbols Data

This repository contains standardized data for orienteering map symbols and control descriptions.

Data Files

Control Descriptions

data/control_descriptions_en.json - Contains all standard IOF (International Orienteering Federation) control description symbols with their meanings and references.

Each control description has the following format:

{
  "ref": "1.1",          // Reference number
  "name": "Terrace",     // Name of the feature
  "column": "Column D",  // Which column it appears in control description sheets
  "type": "Landforms",   // Category of the feature
  "description": "...",  // Text description
  "image": "1.1_terrace.png", // Filename of the image, please don't modify
  "map_symbols": ["101", "102", "103"] // Related map symbol references
}

Map Symbols

data/map_symbols_en.json - Contains all standard orienteering map symbols based on ISOM 2017/2022 standards.

Each map symbol has the following format:

{
  "code": "101",           // Symbol code
  "name": "Contour",     // Name of the symbol
  "type": "Landforms",   // Category of the symbol
  "description": "...",  // Text description
  "control_description": ["1.4", "1.5"],      // Related Control Description symbol
  "image": "101_contour.png" // Filename of the image, please don't modify
}

Installation

You can install this package via npm:

npm install orienteering-symbols-data

Or using yarn:

yarn add orienteering-symbols-data

Usage

In a JavaScript/TypeScript project:

// Import the package
const { controlDescriptions, mapSymbols } = require('orienteering-symbols-data');

// Access English control descriptions
console.log(controlDescriptions.en);

// Access English map symbols
console.log(mapSymbols.en);

// Access other language if available (e.g., French)
console.log(controlDescriptions.fr);

With ES modules:

import { controlDescriptions, mapSymbols } from 'orienteering-symbols-data';

// Access the data as above

You can also use this data in your orienteering projects by:

  1. Direct import from GitHub
  2. Downloading the JSON files

Publishing to npm

To publish this package to npm:

  1. Make sure you have an npm account (npm login)
  2. Update the version in package.json when making changes
  3. Run npm publish

License

This data is released under the MIT License. The symbol dictionary is derived from https://www.iknow-o.com/ and open-sourced to facilitate translations and educational use across multiple languages. See the LICENSE file for details.

Translations

Contributions for translations into different languages are welcome. Please follow the format in the existing JSON files and create new files with the appropriate language code (e.g., control_descriptions_fr.json for French).