ascii-art-coordinate-grid

2.0.0 • Public • Published

ascii-art-coordinate-grid

Read a 2D coordinate grid from an ASCII-art-like string.

When writing tests for modules that take some list of 2d coordinates as input (e.g. a polygon or an embedding of a graph), I often find it hard to make my the test's input data human readable. For example, a polygon ends up looking like this:

const polygon = [
    [2, 2],
    [0, 0],
    [2, -2],
    [-3, -3],
    [-3, 0],
    [-3, 3]
]

As you can see, it's not really obvious how that polygon looks like or what properties it has (e.g. being concave). So, in order to improve readability, I created this module, which allows you to draw out your points on an ASCII-art-like coordinate grid instead:

import readGrid from 'ascii-art-coordinate-grid'
const coordinateGrid = `
. . . . . + . . . . .
. . F . . + . . . . .
. . . . . + . A . . .
. . . . . + . . . . .
+ + E + + B + + + + +
. . . . . + . . . . .
. . . . . + . C . . .
. . D . . + . . . . .
. . . . . + . . . . .
`

const points = readGrid(coordinateGrid) // check the "usage" section for further explanations
const polygon = [points.A, points.B, points.C, points.D, points.E, points.F]

Now, polygon will contain the same numerical values as before, but the reader might have a much easier time understanding the data.

npm version License Contact me

Installation

npm install ascii-art-coordinate-grid

Usage

This package is ESM only.

import readGrid from 'ascii-art-coordinate-grid'

const gridString = `
. . # . . . .
. . A . . . .
. . # . . . .
. . # . B . .
C # # # # # #
. . # . . . 🇪🇸
`
const options = {
    axisCellCharacter: '#', // defaults to `+`
    normalCellCharacter: '.', // defaults to `.`
    transformCoordinates: ([x, y]) => [x, y], // defaults to the identity function, is applied to all points
    groups: false // if you set this to true, you can use the same character more than once and the points object will contain Sets of coordinates per character instead of one coordinate pair per character
}

const points = readGrid(gridString, options)
// {
//     A: [0, 3],
//     B: [2, 1],
//     C: [-2, 0],
//     '🇪🇸': [4, -1]
// }

const polygon = [points.A, points.B, points.C, points['🇪🇸']]

Note that point names can be any non-whitespace human perceived characters, so even emoji 🇫🇷 or other combined characters like .

Contributing

If you found a bug or want to propose a feature, feel free to visit the issues page.

Package Sidebar

Install

npm i ascii-art-coordinate-grid

Weekly Downloads

1

Version

2.0.0

License

ISC

Unpacked Size

8.4 kB

Total Files

4

Last publish

Collaborators

  • juliuste