JSPM

mh-simplify-coordinates

1.0.2
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 26
    • Score
      100M100P100Q70705F
    • License ISC

    simplify coordinates by killometers

    Package Exports

    • mh-simplify-coordinates

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mh-simplify-coordinates) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    MH Simplify Coordinates

    Algorithm based on Ramer–Douglas–Peucker Algorithm it simplify coordinates by kilometers

    The starting curve is an ordered set of points or lines and the distance dimension ε > 0.

    The algorithm Recursion divides the line. Initially it is given all the points between the first and last point. It automatically marks the first and last point to be kept. It then finds the point that is furthest from the line segment with the first and last points as end points; this point is obviously furthest on the curve from the approximating line segment between the end points. If the point is closer than ε to the line segment, then any points not currently marked to be kept can be discarded without the simplified curve being worse than ε.

    If the point furthest from the line segment is greater than ε from the approximation then that point must be kept. The algorithm recursively calls itself with the first point and the furthest point and then with the furthest point and the last point, which includes the furthest point being marked as kept.

    When the recursion is completed a new output curve can be generated consisting of all and only those points that have been marked as kept.

    enter image description here

    Implementation

    npm install mh-simplify-coordinates
    
    MHSimplify(coord,k)

    Result

    simplify coordinates

    Demo

    https://mh-location.firebaseapp.com/