Free online tool

Free online GeoJSON viewer

Open and inspect GeoJSON on a real map

Import a .geojson or .json file, inspect up to 50 geometries immediately, then save the map with Google when you want to keep or share it.

No signup to tryProcessed in your browserInteractive map tools

Choose a GeoJSON file

Your file stays in this browser until you choose to save.

Need another format? Paste WKT or import CSV

GeoJSON Viewer & Validator — how it works

Quick Answer: What is GeoJSON?GeoJSON is an open standard format for encoding geographic data structures using JSON (JavaScript Object Notation), standardized in RFC 7946. It represents vector geometries (Point, LineString, Polygon) alongside custom non-spatial attribute properties.

How to open and inspect GeoJSON online

  1. Select or drop your file: Upload any .geojson or .json file in the uploader above.
  2. Instant Client-Side Rendering: Geometries are parsed securely in your browser and plotted on the interactive canvas.
  3. Inspect Attributes: Open the Attribute Table to view property columns, metadata, and calculated geometry properties.
  4. Export or Convert: Convert your geometries to Well-Known Text (WKT), CSV, or PostGIS SQL statements with one click.

Generating GeoJSON from PostGIS & Python

To export GeoJSON directly from PostgreSQL / PostGIS for inspection in this viewer:

-- Export a PostGIS geometry column as GeoJSON in EPSG:4326
SELECT jsonb_build_object(
  'type', 'Feature',
  'geometry', ST_AsGeoJSON(ST_Transform(geom, 4326))::jsonb,
  'properties', to_jsonb(p) - 'geom'
) AS geojson_feature
FROM parcels AS p
LIMIT 10;

Frequently asked questions

What is a GeoJSON viewer?+

A GeoJSON viewer parses and renders geographic data formatted as JSON on an interactive web map. It plots Points, LineStrings, Polygons, and FeatureCollections, allowing you to inspect coordinate accuracy and feature properties in real time.

Which GeoJSON structures are supported?+

WKT Studio supports all standard RFC 7946 GeoJSON structures: FeatureCollection, Feature, Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon, and GeometryCollection.

What coordinate system does GeoJSON require?+

Standard GeoJSON uses the WGS 84 coordinate reference system (EPSG:4326) with coordinates written in [longitude, latitude] (X, Y) order. If your geometry lands in the ocean or Antarctica, coordinates may be reversed or in a projected system (e.g. Web Mercator EPSG:3857).

Can I convert GeoJSON to WKT or Shapefile?+

Yes. Once loaded, you can export your features to WKT using the built-in Geometry Converter or export as CSV and PostGIS SQL INSERT statements.

Do I need to install desktop GIS software like QGIS?+

No. WKT Studio operates entirely in your browser with no installation, software plugins, or account registration required for basic inspection.