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 🙏

© 2024 – Pkg Stats / Ryan Hefner

intergrid

v1.0.0

Published

Convert spreadsheet coordinates like A1, d3:e4, AA31..AB33 to equivalent notations (r1c1, R1C1, d3..e4, {col:1,row:1}...) and vice versa

Downloads

72

Readme

InterGrid

Installation

npm install intergrid

Usage

const IG = require( 'intergrid' );

API


Module IG.LETTERS

IG.LETTERS.get_letters = ( nr, alphabet = null ) -> Given an integer above zero and an optional alphabet (a list of characters), return the integer written in the A1 notation format (where after reaching the realm of single-letter codes, the first letter is prepended to the code to make up the next series). This function is wholly generic and works with arbitrary alphabets. Default alphabet is lowercase ASCII, a, b ... z.

Note that although the rest of InterGrid supports negative references to columns and rows, methods IG.LETTERS reject negative values.


IG.LETTERS.get_number = ( letters, alphabet = null ) -> The inverse of IG.LETTERS.get_letters().


Module IG.CELLS

IG.CELLS.parse_cellkey = ( cellkey ) -> Given a cellref like 'a1', '*', 'ac23', b*, ** or similar, return a POD with two or more of the following attributes:

  • star—Set to '*' when the cellref is '*', or when both colstar and rowstar are set.
  • colstar—Set to '*' when the column position has a star, as in '*23' (meaning row 23), and also when star is set.
  • colsign—Set to '-' when the column letter was preceded with a minus sign. An optional '+' in that position will be silently ignored.
  • colletters—Set to the sequence of letters that identify the column of the cell(s). Missing if colstar is set.
  • rowstar—Set to '*' when the row position has a star, as in 'b*' (meaning column b), and also when star is set.
  • rowsign—Set to '-' when the row number was preceded with a minus sign. An optional '+' in that position will be silently ignored.
  • rowdigits—Set to the sequence of digits that identify the row of the cell(s). Missing if colstar is set.
  • cellnr—Set to the numerical value of the referenced cell, starting with 1 when cellletters is set.
  • rownr—Set to the numerical value of the referenced row, starting with 1 when rowdigits is set.
  • cellkey—Set to the concatenation of colletters and rowdigits where those are set.

The sum total of allowed cellrefs is succinctly captured by this railroad diagram:

In general, the respective attribute on the result is set to the text portion that corresponds to the position in question, and will be absent where not applicable. However,

  • plus signs as in '+a3', 'a+3', '+a+3' are silently ignored since they are always redundant; therefore, if either result.colsign or result.rowsign exist, that the colum or row has been given with a minus sign.

  • '*' and '**' are identical and always have all of star, colstar and rowstar set (always to '*').

  • Leading 0s in rowdigits are always trimmed, so both 'a12' and 'a012' will set rowdigits to '12'.

These rules are intended to make evaluation of parsing results as straightforward as possible.

To make the above more digestible, here's what you'll get out when you put in the values shown on the left:

| input | output | | :----- | :----- | | '*' | { star: '*', colstar: '*', rowstar: '*' } | | '**' | { colstar: '*', rowstar: '*', star: '*' } | | 'a1' | { colletters: 'a', rowdigits: '1', colnr: 1, rownr: 1 } | | '-a1' | { colsign: '-', colletters: 'a', rowdigits: '1', colnr: -1, rownr: 1 } | | 'a-1' | { colletters: 'a', rowsign: '-', rowdigits: '1', colnr: 1, rownr: -1 } | | '-a-1' | { colsign: '-', colletters: 'a', rowsign: '-', rowdigits: '1', colnr: -1, rownr: -1 } | | '+a01' | { colletters: 'a', rowdigits: '1', colnr: 1, rownr: 1 } | | 'a*' | { colletters: 'a', rowstar: '*', colnr: 1 } | | '+a*' | { colletters: 'a', rowstar: '*', colnr: 1 } | | '-a*' | { colsign: '-', colletters: 'a', rowstar: '*', colnr: -1 } | | '*1' | { colstar: '*', rowdigits: '1', rownr: 1 } | | '*+12' | { colstar: '*', rowdigits: '12', rownr: 12 } | | '*+00012' | { colstar: '*', rowdigits: '12', rownr: 12 } | | '*-2' | { colstar: '*', rowsign: '-', rowdigits: '2', rownr: -2 } | | 'a+1' | { colletters: 'a', rowdigits: '1', colnr: 1, rownr: 1 } | | '+a+1' | { colletters: 'a', rowdigits: '1', colnr: 1, rownr: 1 } | | '+a-1' | { colletters: 'a', rowsign: '-', rowdigits: '1', colnr: 1, rownr: -1 } | | '+abc-123' | { colletters: 'abc', rowsign: '-', rowdigits: '123', colnr: 731, rownr: -123 } | | '+abc-0000123' | { colletters: 'abc', rowsign: '-', rowdigits: '123', colnr: 731, rownr: -123 } | | 'z1' | { colletters: 'z', rowdigits: '1', colnr: 26, rownr: 1 } | | 'aa1' | { colletters: 'aa', rowdigits: '1', colnr: 27, rownr: 1 } | | 'ab1' | { colletters: 'ab', rowdigits: '1', colnr: 28, rownr: 1 } | | 'ac1' | { colletters: 'ac', rowdigits: '1', colnr: 29, rownr: 1 } | | 'ay1' | { colletters: 'ay', rowdigits: '1', colnr: 51, rownr: 1 } | | 'az1' | { colletters: 'az', rowdigits: '1', colnr: 52, rownr: 1 } | | 'ba1' | { colletters: 'ba', rowdigits: '1', colnr: 53, rownr: 1 } | | 'cv1' | { colletters: 'cv', rowdigits: '1', colnr: 100, rownr: 1 } | | 'all1' | { colletters: 'all', rowdigits: '1', colnr: 1000, rownr: 1 } | | 'whassupman1' | { colletters: 'whassupman', rowdigits: '1', colnr: 126563337975660, rownr: 1 } |


IG.CELLS.get_cellkey = ( cellref ) -> Given a cellref as a Plain Old Dictionary that has (at least) the keys cellnr and rownr set to integer numbers (not digits), return the corresponding cellkey. The input must roughly conform to the rules laid out for IG.CELLS.parse_cellkey. If colnr and/or rownr are unset or set to null or undefined or colstar and / or rowstar are set to '*', a star will be used in that position; when both colnr and rownr are missing a single star will be returned. In any case, colsign, rowsign and other attributes that are present in the return value of IG.CELLS.parse_cellkey will be silently ignored ATM (and not be checked for consistency).

In short, this method will convert the following data structures to the values shown on the right:

| input | output | | :----- | :----- | | { colnr: 10, rownr: 1, } | 'j1' | | { colnr: 26, rownr: 1, } | 'z1' | | { colnr: 27, rownr: 1, } | 'aa1' | | {} | '*' | | { colstar: '*', } | '*' | | { rowstar: '*', } | '*' | | { colstar: '*', rowstar: '*', } | '*' | | { star: '*', } | '*' | | { colnr: 10, rowstar: '*', } | 'j*' | | { colnr: 53, rowstar: '*', } | 'ba*' | | { colnr: -10, rowstar: '*', } | '-j*' | | { colnr: -53, rowstar: '*', } | '-ba*' | | { colnr: 10, } | 'j*' | | { colnr: 53, } | 'ba*' | | { colnr: -10, } | '-j*' | | { colnr: -53, } | '-ba*' | | { rownr: 10, } | '*10' | | { rownr: 53, } | '*53' | | { rownr: -10, } | '*-10' | | { rownr: -53, } | '*-53' | | { colstar: '*', rownr: 10, } | '*10' | | { colstar: '*', rownr: 53, } | '*53' | | { colstar: '*', rownr: -10, } | '*-10' | | { colstar: '*', rownr: -53, } | '*-53' | | { colnr: Number.MAX_SAFE_INTEGER, rownr: -53, } | 'bktxhsoghkke53' |


IG.CELLS.normalize_cellkey = ( cellkey ) -> Given a cellkey, return the same written with leading zeroes and plus signs removed. This is identical to IG.CELLS.get_cellkey(IG.CELLS.parse_cellkey(cellkey)).

Module IG.GRID


INTERGRID.GRID.walk_cells_from_key = ( grid, key ) -> Given a grid and a generalized key, which may contain stars and plus or minus signs and may be written as a cellkey or a rangekey, return an iterator over all the cellrefs in the grid. Constructs like 'a1', 'b-1', 'c*', 'd2..e4' and so on are all allowed as long as they stay within the boundaries of the grid. Cells will be iterated over in no particular order.


INTERGRID.GRID.walk_cells_from_keys = ( grid, keys ) -> Given a grid and a list of keys (in the form of an array of keys or a text with comma-separated keys), return an iterator over all the cellrefs in the grid. Also see INTERGRID.GRID.walk_cells_from_key(). Cells will be iterated over in no particular order.


Disclaimer

This software is a non-profit effort and free to use for anyone. It is not in any way associated with any of the many firms of the same name that a web search reveals.