Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@loaders.gl/gis
Advanced tools
@loaders.gl/gis is a part of the loaders.gl suite, designed to handle geospatial data. It provides utilities for parsing, transforming, and working with various geospatial data formats, making it easier to integrate and manipulate GIS data in web applications.
Parsing GeoJSON
This feature allows you to parse GeoJSON data into a JavaScript object. The code sample demonstrates how to use the `parse` function to convert a GeoJSON string into a usable object.
const { parse } = require('@loaders.gl/gis');
const geojson = '{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [102.0, 0.5]}, "properties": {"prop0": "value0"}}]}';
const parsedData = parse(geojson, { mimeType: 'application/json' });
console.log(parsedData);
Transforming Coordinates
This feature allows you to transform coordinates from one spatial reference system to another. The code sample shows how to transform coordinates from EPSG:4326 to EPSG:3857.
const { transform } = require('@loaders.gl/gis');
const coordinates = [102.0, 0.5];
const transformedCoordinates = transform(coordinates, 'EPSG:4326', 'EPSG:3857');
console.log(transformedCoordinates);
Handling Shapefiles
This feature allows you to load and parse shapefiles. The code sample demonstrates how to use the `load` function with the `ShapefileLoader` to load a shapefile from a URL.
const { load } = require('@loaders.gl/core');
const { ShapefileLoader } = require('@loaders.gl/shapefile');
const url = 'path/to/shapefile.zip';
load(url, ShapefileLoader).then(data => console.log(data));
Terraformer is a JavaScript library for working with GeoJSON, features, and geometry objects. It provides tools for parsing, converting, and manipulating geospatial data. Compared to @loaders.gl/gis, Terraformer focuses more on GeoJSON and geometry operations but lacks built-in support for other geospatial formats like shapefiles.
Geobuf is a compact binary encoding for GeoJSON, allowing for efficient storage and transmission of geospatial data. It is useful for scenarios where bandwidth or storage is a concern. While @loaders.gl/gis provides broader functionality for various geospatial formats, Geobuf specializes in compact encoding of GeoJSON.
The shapefile package is a JavaScript library for reading ESRI Shapefiles in the browser and Node.js. It provides functionality to parse shapefiles and convert them to GeoJSON. Compared to @loaders.gl/gis, the shapefile package is more specialized in handling shapefiles but does not offer the same breadth of geospatial data format support.
This module contains helper classes for the GIS category of loaders.
loaders.gl is a collection of framework-independent visualization-focused loaders (parsers).
v4.3.0-beta.1
FAQs
Helpers for GIS category data
The npm package @loaders.gl/gis receives a total of 149,338 weekly downloads. As such, @loaders.gl/gis popularity was classified as popular.
We found that @loaders.gl/gis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.