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

bitgeo

v2.0.0

Published

Transforms any GeoJSON into a data structure that can be efficiently queried to determine (roughly) where data is present or absent.

Downloads

185

Readme

bitgeo

Transforms any GeoJSON into a data structure that can be efficiently queried to determine (roughly) where data is present or absent.

API

var bitgeo = require('bitgeo');

bitgeo(data, options)

Given any GeoJSON data, generate a BitBox with the provided options.

Supported options:

  • resolution - The size (width and height) of a "cell" in the same units as the input data.
  • origin - By default, [0, 0] is considered the origin.

bitgeo.or(datas, options)

A convenience function for creating a bitbox that is the union of an array of GeoJSON data objects.

bitgeo.and(datas, options)

A convenience function for creating a bitbox that is the intersection of an array of GeoJSON data objects.

BitBox

var bitbox = bitgeo(data, options);

A bitbox is a (conceptually) rasterized representation of vector data containing information about where data is present and absent.

bitbox.get(i, j)

Test if data is present at the provided location. The i and j values are offsets from the origin in terms of the bitbox resolution. For example, if a bitbox is created with resolution: 10, then bitbox.get(1, 2) would return true if there is data between [10, 20] and [20, 30] (with upper bounds being exclusive).

bitbox.forEach(callback)

Calls the provided callback for each true bit in the bitbox. The callback will be called with i and j as arguments. If the callback returns false, iteration will stop.

bitbox.contains(minI, minJ, maxI, maxJ)

Determine if all, some, or none of a range of bits are true. Returns bitgeo.ALL if all of the bits in the provided range are true, bitgeo.SOME if some bits are true and some are false, and bitgeo.NONE if all of the bits in the range are false. Ranges are inclusive (both min and max values are tested).

bitbox.or(other)

Return a bitbox that is the union of two bitboxes (bitbox and other).

bitbox.and(other)

Return a bitbox that is the intersection of two bitboxes (bitbox and other).

bitbox.getArea()

Returns the area of the bitbox where data is present (this will be an integer multiple of resolution * resolution).