GeoJSON Simplify

Reduce the number of points in a GeoJSON line or polygon (Douglas-Peucker).

{
  "type": "Polygon",
  "coordinates": [
    [
      [
        -122.43,
        37.77
      ],
      [
        -122.42,
        37.77
      ],
      [
        -122.42,
        37.78
      ],
      [
        -122.43,
        37.78
      ],
      [
        -122.43,
        37.77
      ]
    ]
  ]
}

Runs entirely in your browser - nothing is sent to a server.

Related tools

How it works

  1. 1

    Paste GeoJSON

    Paste a LineString, Polygon or MultiPolygon.

  2. 2

    Set a tolerance

    Higher tolerance removes more points.

  3. 3

    Copy the result

    The simplified GeoJSON is generated instantly.

FAQ

What algorithm does this use?
Ramer-Douglas-Peucker, the standard line/polygon simplification algorithm (via Turf.js).

Tool4U.net — every tool runs in your browser. No file ever leaves your device unless the tool says so.

© 2026 Tool4U.net

14b5eb17