Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
reproject-bbox
Advanced tools
Reproject a Bounding Box
npm install reproject-bbox
import reprojectBoundingBox from "reproject-bbox";
const bbox = reprojectBoundingBox({
bbox: [ -122.51, 40.97, -122.34, 41.11 ],
// spatial reference system of input bounding box
from: 4326,
// convert bounding box to this spatial reference system
to: 3857
});
// bbox is [-13637750.817083945, 5007917.677222896, -13618826.503649088, 5028580.202823918]
Because reproject-bbox passes the from
and to
parameters to proj4js and proj4js supports
Well-Known Text,
you can also pass WKT strings and Proj4JS strings in place of EPSG Codes.
import reprojectBoundingBox from "reproject-bbox";
// example WKT and PROJ4 Strings from http://proj4js.org/
reprojectBoundingBox({
bbox,
from: 'PROJCS["NAD83 / Massachusetts Mainland",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6269"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4269"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",42.68333333333333],PARAMETER["standard_parallel_2",41.71666666666667],PARAMETER["latitude_of_origin",41],PARAMETER["central_meridian",-71.5],PARAMETER["false_easting",200000],PARAMETER["false_northing",750000],AUTHORITY["EPSG","26986"],AXIS["X",EAST],AXIS["Y",NORTH]]',
to: "+proj=gnom +lat_0=90 +lon_0=0 +x_0=6300000 +y_0=6300000 +ellps=WGS84 +datum=WGS84 +units=m +no_defs"
});
You can increase the accuracy of your reprojected bounding box by increasing the point density. Density is the number of points that you would like to add to each side of the bounding box. If you pass in an array of two numbers, you can control how many points to add along the x and y-axis.
import reprojectBoundingBox from "reproject-bbox";
const bbox = [ -2316545, -1971615, 1015455, 1512385 ];
reprojectBoundingBox({
bbox,
density: 100, // add 100 points to each side of the box before reprojecting
from: 6623,
to: 4326
});
reprojectBoundingBox({
bbox,
// add 11 points along the x-axis (11 to top side and 11 to bottom side)
// and 99 points along the y-axis (99 to left side and 99 to right side)
density: [11, 99],
from: 6623,
to: 4326
});
reproject-bbox will automatically split bounding boxes where x=0 and y=0 before reprojecting and merging them back together. This can greatly improve accuracy for certain projections, especially ones around the poles. However, if you really want to turn it off, you can.
reprojectBoundingBox({
bbox,
from: 3857,
split: false, // turn off automatic splitting
to: 4326
})
This library depends on proj4-fully-loaded. If proj4-fully-loaded isn't found (perhaps because you used null-loader, then reproject-bbox will attempt to look for a valid proj4 at window.proj4.
If you are looking for a lighter library without as many dependencies, check out bbox-fns.
FAQs
Reproject a Bounding Box
The npm package reproject-bbox receives a total of 3,376 weekly downloads. As such, reproject-bbox popularity was classified as popular.
We found that reproject-bbox demonstrated a not healthy version release cadence and project activity because the last version was released 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.