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

@dra2020/compactness

v3.1.0

Published

Traditional and 'know it when you see it' compactness

Downloads

30

Readme

compactness

This is a library of routines to calculate classic measures of compactness -- Reock, Polsby–Popper, Convex Hull, and Schwartzberg -- as well as the other SmartFeatures in Kaufman, King, and Komisarchik's "know it when you see it" (KIWYSI) compactness model that replicates how people assess compactness (paper, supplement).

NOTE: This functionality has been folded into the dra2020/dra-analytics repo along with other analytics used in Dave's Redistricting.

Exports

There are 7 features in the simplified KIWYSI PCA model:

  • The first 4 measures below are computed using geometric properties of a shape that have been extracted previously, and
  • The last 3 take the polygon directly

Extracting the geometric properties of district shapes allows their compactness to be computed later when the full shapes themselves are no longer available. Use the poly package to extract the geometric properties. The properties themselves can either use geodesic (curved earth) or cartesian (flat earth) calculations.

The final routine -- scoreShapes -- scores each shape in a GeoJSON feature collection using the simplified KIWYSI compactness model.

calcReock (REOCK)

export declare function calcReock(area: number, diameter: number): number;

Reock is the primary measure of the dispersion of district shapes, calculated as “the area of the distric to the area of the minimum spanning circle that can enclose the district.”

R = A / A(Minimum Bounding Circle)
R = A / (π * (D / 2)^2)
R = 4A / πD^2

where A is the area of the district and D is the diameter of the minimum bounding circle.

calcPolsbyPopper (POLSBYPOPPER)

export declare function calcPolsbyPopper(area: number, perimeter: number): number;

Polsby-Popper is the primary measure of the indendentation of district shapes, calculated as the “the ratio of the area of the district to the area of a circle whose circumference is equal to the perimeter of the district.”

PP = A / A(C)

where C is that circle. In other words:

P = 2πRc and A(C) = π (P / 2π)^2

where P is the perimeter of the district and Rc is the radius of the circle.

Hence, the measure simplifies to:

PP = 4π * (A / P^2)

calcConvexHullFeature (Hull(D))

export declare function calcConvexHullFeature(area: number, chArea: number): number;

Convex Hull is a secondary measure of the dispersion of district shapes, calculated as “the ratio of the district area to the area of the minimum convex bounding polygon(also known as a convex hull) enclosing the district.”

CH = A / A(Convex Hull)

where a convex hull is the minimum perimeter that encloses all points in a shape, basically the shortest unstretched rubber band that fits around the shape.

Note: This is not the convex hull, but rather a metric based on it.

calcSchwartzberg (SCHWARTZBERG)

export declare function calcSchwartzberg(area: number, perimeter: number): number;

Schwartzberg is a secondary measure of the degree of indentation of district shapes, calculated as “the ratio of the perimeter of the district to the circumference of a circle whose area is equal to the area of the district.”

Azavea defines Schwartzberg as:

S = 1 / (P / C)

where P is the perimeter of the district and C is the circumference of the circle. The radius of the circle is:

Rc = SQRT(A / π)

So, the circumference of the circle is:

C = 2πRc or C = 2π * SQRT(A / π)

Hence:

S = 1 (P / 2π * SQRT(A / π))
S = (2π * SQRT(A / π)) / P

This feature matches the verbal description of P / C(feature_helpers.R). So, use P/C, not C/P as Azavea describes.

calcYSymmetry (Y-SYMMETRY)

export declare function calcYSymmetry(poly: any): number;

The area of a district overlapping with its reflection around a vertical line going through the centroid, divided by the area of the district. Values range [1–2].

calcXSymmetry (X-SYMMETRY)

export declare function calcXSymmetry(poly: any): number;

The same as Y-SYMMETRY except reflect the district around a horizontal line going through the centroid.

calcBoundingBox (BOUNDING-BOX)

export declare function calcBoundingBox(poly: any): number;

Here this is defined as the ratio of the area of the district to the area of the minimum bounding box of the district. It's not a simple bounding box!

scoreShapes

export declare function scoreShapes(shapes: GeoJSON.FeatureCollection, pca: T.PCAModel, options?: Poly.PolyOptions): number[];

Takes a GeoJSON feature collection of shapes and returns an array of 1–100 KIWYSI compactness scores. For each shape, it:

  • Calculates the 7 features above
  • Then applies the simplified KIWYSI PCA model, and
  • Produces a 1–100 KIWYSI compactness score

Note: These are ranks where small is better.

Versions

  • 1.0.6 -- First public version

Repo contents

There are three packages that are part of this repo:

  1. src: building compactness.bundle.js, the production code
  2. cli: building cli.cs, a command line utility to run compactness
  3. test: automated test code run by jest

Developing in this repo

npm install install all dependencies

npm run build build all bundles

npm run test run automated jest tests

Build status for master branch

CircleCI