Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
The jsts (JavaScript Topology Suite) npm package is a JavaScript library for performing various geometric operations. It is a port of the well-known JTS Topology Suite, which is widely used in the GIS (Geographic Information Systems) community. The library provides a range of functionalities for creating, manipulating, and analyzing planar geometric objects.
Geometry Creation
This feature allows you to create geometric objects from Well-Known Text (WKT) representations. In this example, a point geometry is created from a WKT string.
const jsts = require('jsts');
const reader = new jsts.io.WKTReader();
const point = reader.read('POINT (10 20)');
console.log(point);
Geometric Operations
This feature allows you to perform geometric operations such as union, intersection, and difference. In this example, the union operation is performed on two polygon geometries.
const jsts = require('jsts');
const reader = new jsts.io.WKTReader();
const geom1 = reader.read('POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))');
const geom2 = reader.read('POLYGON ((20 30, 35 35, 30 20, 20 30))');
const union = geom1.union(geom2);
console.log(union);
Spatial Analysis
This feature allows you to perform spatial analysis operations such as calculating distances between geometries. In this example, the distance between two point geometries is calculated.
const jsts = require('jsts');
const reader = new jsts.io.WKTReader();
const geom1 = reader.read('POINT (10 20)');
const geom2 = reader.read('POINT (30 40)');
const distance = geom1.distance(geom2);
console.log(distance);
Turf is a JavaScript library for advanced geospatial analysis. It provides a wide range of spatial operations and is highly optimized for performance. Compared to jsts, Turf offers more functionalities for working with GeoJSON data and is often used in web mapping applications.
Geolib is a lightweight library for geospatial operations in JavaScript. It focuses on basic geospatial calculations such as distance, area, and bounding boxes. While it is not as feature-rich as jsts, it is simpler to use for basic geospatial tasks.
OpenLayers is a powerful library for displaying and interacting with maps in web applications. It includes some geospatial analysis functionalities but is primarily focused on map rendering and user interaction. Compared to jsts, OpenLayers is more suitable for building interactive map applications.
JSTS is an ECMAScript 2015 library of spatial predicates and functions for processing geometry conforming to the Simple Features Specification for SQL published by the Open Geospatial Consortium. JSTS is also a port of the well established Java library JTS.
The primary goal of the project is to provide web mapping applications with a complete library for processing and analyzing simple geometries but JSTS can also be used as a free standing geometry library.
JSTS was made using automatic translation of the original JTS Java source via AST to AST transformation preserving the JTS API, except for the io related classes which has been selectively and manually ported with support for WKT, GeoJSON and OpenLayers 3.
A Google group is available for discussions.
A port of JTS Validation Suite provides additional tests.
Basic functionality together with OpenLayers 3 is demonstrated here.
An ES5 (the most common JavaScript variant) compatible build for browsers is available here.
Including the above build as a script will import a global object jsts
exposing similar public API as org.locationtech.jts
in the JTS API.
For Node.js, install using npm install jsts
after which require('jsts')
will import an object with the same properties as jsts
in the browser build.
I/O related classes in JTS had to be manually ported. From the original formats WKT and GeoJSON are supported. A direct reader/writer for OpenLayers 3 geometries exist. See the API documentation for these specific classes.
createMultiPoint
in GeometryFactory
which only works with Point[]
arguments.FAQs
A JavaScript library of spatial predicates and functions for processing geometry
The npm package jsts receives a total of 82,700 weekly downloads. As such, jsts popularity was classified as popular.
We found that jsts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.