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

go-cart-wasm

v0.3.0

Published

Flow-Based Cartogram Generator in WASM

Downloads

12

Readme

Go-cart-wasm

Go-cart-wasm is a JS/WASM library for making flow-based cartograms (as described in "Gastner, Seguy, and More (2018). Fast flow-based algorithm for creating density-equalizing map projections. Proceedings of the National Academy of Sciences USA, 115:E2156-E2164"), purely in the browser.

This is a port of the reference implementation provided by the authors (however we needed to slightly modify some minor aspects of the code, and our modified version is located here).

Usage

The library is available as a JS module, and can be used as follows:

import initGoCart from 'go-cart-wasm';

initGoCart()
  .then((GoCart) => {
    // The GeoJSON containing the data to be transformed
    const data = {
      type: 'FeatureCollection',
      features: ...
    };
    
    // The name of the field that contains the data on which the cartogram will be based
    const fieldName = 'POP2021';

    // Call the function that creates the cartogram
    const dataCartogram = GoCart.makeCartogram(data, fieldName);
    
    console.log(dataCartogram); // The resulting GeoJSON
  });

Optionally, and depending on how you import the library, you may also need to pass a config object as argument to the initGoCart function, which can contain the locateFile property: if set, it will be used to locate the WASM file (which is needed by the library). For example:

const initGoCart = require("https://unpkg.com/go-cart-wasm@latest/dist/go-cart.js");

const GoCart = await initGoCart({
  locateFile: (path) => 'https://unpkg.com/go-cart-wasm@latest/dist/cart.wasm',
});

// Use GoCart as in the previous example
// ...

Or in a HTML document:

<script src="https://cdn.jsdelivr.net/npm/go-cart-wasm@latest"></script>
<script>
let GoCart;
initGoCart({
  locateFile: () => 'https://cdn.jsdelivr.net/npm/go-cart-wasm@latest/dist/cart.wasm',
}).then((GoCartModule) => {
  GoCart = GoCartModule;

})
</script>

Note that the data that is passed to the makeCartogram function must be a valid GeoJSON FeatureCollection, its features must be of type Polygon or MultiPolygon and the field name must be a valid property of its features. Moreover, the data have to be in a projected reference coordinate system that maintains the areas of the polygons (e.g. Lambert-93 / EPSG:2154 for Metropolitan France, EPSG:3035 for the European Union, etc.). Performing the calculation in geographic coordinates (e.g. EPSG:4326) would give erroneous results.

Note also that by default the calculation is done in the main thread. The freedom is left to the user to import go-cart.js from a webworker and use it that way (nevertheless you will have to implement a basic dialogue between the main thread and the webworker).

Installation for development

Requirements:

  • The Just command runner (https://github.com/casey/just)
  • Emscripten SDK (https://emscripten.org/docs/getting_started/downloads.html)
  • Node.js (https://nodejs.org/en/download/)
  • npm (https://www.npmjs.com/get-npm)

Install and compile dependencies:

  1. Install Just, install Emscripten SDK, install node.js / npm.
  2. Install node dependencies with npm install.
  3. Activate the various environment variables of Emscripten SDK in the current terminal (source ./emsdk_env.sh in emsdk directory).
  4. Build the C dependencies with npm run build-deps.

Build the WASM/JS code:

  1. Run npm run build to build the WASM module and the JS wrapper. If you change stuff in the JS wrapper (in src) or in the C code of go_cart (in go_cart), you can resume from here. If you want to see debug information about the progress of the cartogram creation in the console (grid size used, number of iterations, max area error, correction factor, etc.) you can compile with the DEBUG flag with npm run build-debug.
  2. Get the built files from the dist directory.

Note that this has only been tested on GNU/Linux and that these instructions may need to be modified to work on Mac OS X and Windows.

License

This project is licensed under the MIT License - see the LICENSE file for details. Underlying code by Gastner, Seguy, and More (2018) is licensed under a modified MIT License - see their LICENSE file for details.