GeoJSON to WKT Converter

GeoJSON <--> WKT Converter

Convert GeoJSON to Well-Known Text (WKT)

Convert Well-Known Text (WKT) to GeoJSON

About GeoJSON and WKT

This tool converts geographic data between two popular formats:

  • GeoJSON: A geospatial data interchange format based on JSON. It defines various JSON objects for geographic shapes, including Point, LineString, Polygon, MultiPoint, MultiLineString, MultiPolygon, GeometryCollection, Feature, and FeatureCollection. It typically uses [longitude, latitude] order for coordinates.
  • Well-Known Text (WKT): A text markup language for representing vector geometry objects on a map. It's often used in databases and GIS software. WKT uses `X Y` (longitude latitude) order.

Both formats are widely used in Geographic Information Systems (GIS) for storing and exchanging spatial data. This tool provides a basic conversion functionality between these two representations.

**Disclaimer:** This tool provides a **simplified conversion** between GeoJSON and WKT for basic geometry types (Point, LineString, Polygon, and their Multi- counterparts). It does not support Z/M coordinates, complex projections, or all intricacies of both specifications. It is intended for educational, illustrative, and quick testing purposes only. For critical or production-level data conversion, please use established GIS software or robust geospatial libraries.

Scroll to Top