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

@raha.group/s2-geometry

v1.0.7

Published

A native JavaScript port of Google's S2 Geometry library

Downloads

28

Readme

Geometry on the Sphere - JavaScript Library

A native JavaScript port of Google's S2 Geometry library for dealing with spatial data.


The S2 Geometry is based on projecting the earth sphere onto a cube, with some scaling of face coordinates to keep things close to approximate equal area for adjacent cells.

To convert lat,lng to a cell id:

  • convert lat,lng to x,y,z
  • convert x,y,z to face,u,v
  • u,v scaled to s,t with quadratic formula
  • s,t converted to integer i,j offsets
  • i,j converted to a position along a Hilbert space-filling curve
  • combine face,position to get the cell id

Hierarchy of S2 Geometry

Installation

CDN

Import library from the UNPKG CDN for fast and easy setup:

In web browser

Simply include s2-geometry in your html <header> tag.

<script type="module">
import {S2LatLng, S2Cell} from "//unpkg.com/@raha.group/s2-geometry";
</script>

In web worker

Some s2-geometry functions that do not access nor modify the DOM can be used in web workers.

In order to be able to use s2-geometry in those web workers, you need to import the source file as an ES6 module using:

import {S2LatLng, S2Cell} from "//unpkg.com/@raha.group/s2-geometry";

NPM registry

Use the package manager npm to install s2-geometry.

$ npm install @raha.group/s2-geometry

Library will be copied to node_modules/@raha.group/s2-geometry directory.

Direct Download

Grab the latest release file.

Implemented APIs

S2LatLng API

Skeleton of S2LatLng

S2LatLng := ObjectModel {
	@Static S2LatLng from(Number latitude, Number longitude);
	@Static S2LatLng fromInteger(BigInt identifier);
	BigInt toInteger(Level level = MAX_LEVEL);
	SequenceOf(S2Cell) getNeighbors(level);
	BigInt compareTo(S2LatLng other);
};
Level := RangeLimit<Number> {
	lower := 1,
	upper := 30
};
MAX_LEVEL := 30;

Usage of S2LatLng

let latitude = 40.2574448;
let longitude = -111.7089464;
// Main factory method to create a S2LatLng object from pair (latitude, longitude)
let point = S2LatLng.from(latitude, longitude);

let level = 15; // Range of level is between 1 and 30
let cellId = point.toInteger(level);
console.log(cellId);
// It prints 9749618446378729472n

// Factory method to create a S2LatLng object from BigInt
point = S2LatLng.fromInteger(cellId);
console.log(point);
// It prints {lat: 40.2574448, lng: -111.7089464}

for (let cell of point.getNeighbors(level)) {
	console.log(cell);
}

S2Cell API

Currently contains basic support for S2Cell.

The S2 hierarchy is useful for spatial indexing and for approximating regions as a collection of cells. Cells can be used to represent both points and regions: points are generally represented as leaf cells, while regions are represented as collections of cells at any level(s).

Each cell is uniquely identified by a 64-bit S2CellId. The S2 cells are numbered in a special way in order to maximize locality of reference when they are used for spatial indexing (compared to other methods of numbering the cells).

S2CellId combine face and the hilbert curve position into a single 64 bit integer. this gives efficient space and speed.

Skeleton of S2Cell

S2Cell := ObjectModel {
	@Static from(Face face, OrderedPair ij, Level level = MAX_LEVEL); // Internal use
	
	@Static S2Cell fromLatLng(S2LatLng latLng, Level level = MAX_LEVEL);
	S2LatLng toLatLng();

	@Static S2Cell fromInteger(BigInt identifier);
	BigInt toInteger();
	
	SequenceOf(S2LatLng) getCornerLatLngs();
	SequenceOf(S2Cell) getNeighbors();
	S2Cell move(Number step);

	Boolean includes(S2LatLng point);
	Boolean includes(S2Cell cell);
	BigInt compareTo(S2Cell other);
};
Face := RangeLimit<Number> {
	lower := 0,
	upper := 5
};

Usage of S2Cell

// Factory method to create a S2Cell object from S2LatLng and level
let cell = S2Cell.fromLatLng(point, level);
console.log(cell.toLatLng().compareTo(point) == 0n);
// It prints true

// Factory method to create a S2Cell object from BigInt
cell = S2Cell.fromInteger(cellId);
console.log(cell.toInteger() == point.toInteger());
// It prints true

for (let cell of point.getNeighbors()) {
	console.log(cell);
}
// It prints the neighbors from left, down, right and up.

// You can get the previous and next S2Cell from any given cell:
let nextCell = cell.move(1);
let previousCell = cell.move(-1);

// Does cell include other item?
console.log(cell.includes(point));

Supported platforms

Raha S2-geometry has been tested and works on the following engines:

  • Node.js 10.4+
  • Chrome (desktop & Android) 67+
  • Firefox 68+
  • Safari 14+ (desktop & iOS)
  • Latest version of other web-browsers

License

S2-geometry by Raha Group is licensed under the CC-BY-SA-4.0 License.

Resources

Alternative projects

Stay connected

Stay in touch with Raha’s community and keep track of development and community news by subscribing to the Raha’s Blog and YouTube channel.

Documentation

The official docs are a great place to discover new things.

Issue Tracker

Are you experiencing problems with Raha? report issues and find solutions to your problems here.

Feature Request

You are always welcome to ask for more features to be added to Raha.

Events

Stay up to date with meetups, conferences and more.

Support

Looking for help? please first check out the official (mentioned above) and unofficial (e.g. Stack Overflow) resources. If you are still experiencing problems, feel free to create a new issue.

Donation

If you'd like Raha to grow even stronger, please become a sponsor today by donating via Paypal Donate (Farnood) to support Raha's ongoing maintenance and development of new functionality.