Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mapbox/geojson-extent

Package Overview
Dependencies
Maintainers
14
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mapbox/geojson-extent

compute the bounding box of geojson features

  • 0.3.3-dev1
  • dev
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
202K
decreased by-11.92%
Maintainers
14
Weekly downloads
 
Created

What is @mapbox/geojson-extent?

@mapbox/geojson-extent is an npm package that provides utilities for calculating the bounding box of GeoJSON objects. It is useful for determining the spatial extent of geographic data represented in GeoJSON format.

What are @mapbox/geojson-extent's main functionalities?

Calculate Bounding Box

This feature allows you to calculate the bounding box of a GeoJSON object. The bounding box is represented as an array of four numbers: [minX, minY, maxX, maxY].

const geojsonExtent = require('@mapbox/geojson-extent');
const geojson = {
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [102.0, 0.5]
      },
      "properties": {
        "prop0": "value0"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [102.0, 0.0],
          [103.0, 1.0],
          [104.0, 0.0],
          [105.0, 1.0]
        ]
      },
      "properties": {
        "prop0": "value0",
        "prop1": 0.0
      }
    }
  ]
};
const bbox = geojsonExtent(geojson);
console.log(bbox); // Output: [102, 0, 105, 1]

Other packages similar to @mapbox/geojson-extent

Keywords

FAQs

Package last updated on 21 Sep 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc