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

route-correction

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

route-correction

| 字段 | 类型 | 描述 | |-----|------|-----| | lng | Number | 经度 | | lat | Number | 纬度 |

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Point 坐标点类

字段类型描述
lngNumber经度
latNumber纬度

Segment 路径线段类

字段类型描述
p0Point起始点
p1Point结束点
lengthNumber路径线段长度(米)
distanceNumberp0点距离路径起始点的距离
directionNumber路径朝向(弧度)
directionInDegreeNumber路径朝向(角度)

Route 路线类

字段类型描述
points[Point]折线点
segments[Segment]路径线段
totalDistanceNumber总长度(米)
maxLng / minLngNumber最大最小经度
maxLat / minLatNumber最大最小纬度
centerLng / centerLatNumber包围盒中心经纬度
RADIUSNumber地球半径(包围盒做梯形正畸后近似)

成员方法

correct 方法

const res = correct(point); 将输入点位纠偏到路线的最近点位,并返回纠偏后点位相关信息

入参
字段类型描述
pointPoint计算 point 点到当前路径的最近点位
返回值

返回值 res 为一个对象,其中各属性如下

字段类型描述
pointPoint最近点
point.rNumber最近点在线段上的位置,范围 0~1。0 代表最近点位于 p0,1 代表最近点位于 p1, 0.5 代表位于线段中点
point.lng / point.latNumber最近点的经纬度
point.distanceNumber最近点距离线段 p0 点的距离(米)
segmentSegment最近点所在线段
indexNumber最近点所在线段在 segments 数组中的下标
distanceNumber最近点距离路径起始点的距离(米)
pointAt 方法

const point = pointAt(distance) 查询沿路线行进指定距离后的所在点位,并返回点位相关信息

入参
字段类型描述
distanceNumber距离路径起始点的距离(米)
返回值
字段类型描述
pointPoint查询结果所在点位
point.lng / point.latNumber所在点的经纬度
point.distanceNumber实际距离(限定 0~路径总长)
directionNumber所在点路径朝向(弧度)
directionInDegreeNumber所在点路径朝向(角度)

FAQs

Package last updated on 14 Nov 2022

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