Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@turf/rectangle-grid
Advanced tools
Creates a grid of rectangles from a bounding box, Feature or FeatureCollection.
cellWidth
number of each cell, in units
cellHeight
number of each cell, in units
options
Object Optional parameters (optional, default {}
)
options.units
string units ("degrees", "radians", "miles", "kilometers") that the given cellWidth
and cellHeight are expressed in. Converted at the southern border. (optional, default 'kilometers'
)options.mask
Feature<(Polygon | MultiPolygon)>? if passed a Polygon or MultiPolygon,
the grid Points will be created only inside itoptions.properties
Object passed to each point of the grid (optional, default {}
)var bbox = [-95, 30 ,-85, 40];
var cellWidth = 50;
var cellHeight = 20;
var options = {units: 'miles'};
var rectangleGrid = turf.rectangleGrid(bbox, cellWidth, cellHeight, options);
//addToMap
var addToMap = [rectangleGrid]
Returns FeatureCollection<Polygon> a grid of polygons
This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.
Install this module individually:
$ npm install @turf/rectangle-grid
Or install the Turf module that includes it as a function:
$ npm install @turf/turf
FAQs
turf rectangle-grid module
The npm package @turf/rectangle-grid receives a total of 0 weekly downloads. As such, @turf/rectangle-grid popularity was classified as not popular.
We found that @turf/rectangle-grid demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.