GeoJSON એ JSON પર આધારિત ખુલ્લું ભૂ-ડેટા ફોર્મેટ છે. વેબ ડેવલપર માટેનું પ્રમાણભૂત ઉકેલ, Leaflet, Mapbox, OpenLayers, D3.js અને કોઈપણ GIS સોફ્ટવેર સાથે સુસંગત.
મુખ્ય સુવિધાઓ

GeoJSON ફોર્મેટ વિશે
GeoJSON is an open geodata format (RFC 7946) in which geography is written as ordinary JSON: an array of features, each with a geometry and a set of properties. A human can read it in a text editor, any programming language parses it in one line, and practically all web cartography understands it — Leaflet, Mapbox GL, OpenLayers, D3.js — with no plugins or converters.
An OSM map is exported to GeoJSON when you need the features themselves rather than a picture: to attach a layer to a website, compute statistics for a district, filter the categories you need, load the data into PostGIS or run it through GeoPandas. It is also the most convenient intermediate format: from it, ogr2ogr or QGIS will make SHP, GeoPackage, KML — anything you like.
The output is a single UTF-8 file: one FeatureCollection gathering all the layers of the selected area. Every feature keeps its OpenStreetMap attributes (name, type, tags) and a service property _layer with the name of its source layer — one line of filtering takes the data apart again into roads, buildings, water, greenery and points of interest. Coordinates are WGS84 (EPSG:4326), as the specification requires; the recorded precision is six decimal places, about ten centimeters on the ground: the file drops into any GIS and any web framework with no reprojection.
GeoJSON ફાઇલો કયો પ્રોગ્રામ ખોલે છે
નીચેના પ્રોગ્રામ અને એપ્લિકેશન OSM2CDR માંથી એક્સપોર્ટ કરેલી GeoJSON (.geojson) ફાઇલો ખોલી, સંપાદિત કરી અને તેમની સાથે કામ કરી શકે છે:
Format specifications
- Open standard
- 3D coordinates supported
- Lossless (no quality loss)
- Stores feature attributes
- Output: 1 file
- RFC 7946 GeoJSON. Single UTF-8 file. WGS84 (EPSG:4326). Coordinate precision: float64. Direct import in QGIS, Mapbox, Leaflet, PostGIS.
GeoJSON નકશા કોણ વાપરે છે
GeoJSON કેવી રીતે એક્સપોર્ટ કરવું
એક્સપોર્ટ પછી કેવી રીતે ખોલવું
- geojson.io — drag the file into a browser window and see the features on the map right away, clicking to inspect properties. Good for a quick check; large files are better not uploaded there.
- QGIS (free) — Layer → Add Vector Layer, choose the .geojson. After that: filter on the _layer field, styling, export to SHP or GeoPackage.
- Leaflet / Mapbox GL JS / OpenLayers — put the file next to your project and hook it up: in Leaflet that is L.geoJSON(data).addTo(map), in Mapbox GL a source of type geojson.
- Python and data analysis — geopandas.read_file("map.geojson") and then the pandas toolkit: slices by feature type, areas, density, joins with your own tables.
- PostGIS and databases — ogr2ogr -f PostgreSQL PG:"..." map.geojson loads everything in one command; by hand, the geometry is read with ST_GeomFromGeoJSON.
GeoJSON માં લોકપ્રિય નકશા
GeoJSON નકશા એક્સપોર્ટ મેળવો
OpenStreetMap માંથી વ્યાવસાયિક GeoJSON નકશા ડાઉનલોડ કરો. તાત્કાલિક જનરેશન, કોઈપણ વિસ્તાર.
વારંવાર પૂછાતા પ્રશ્નો
અન્ય ફોર્મેટ સાથે સરખામણી કરો
સંબંધિત ફોર્મેટ
વારંવાર એકસાથે એક્સપોર્ટ થાય છે
Related Articles
Plot Boundaries from a Registry Coordinate List: Building the Outline and Seeing It on a Map
You have a coordinate list from a land registry extract: how to build the plot outline in CAD without swapping X and Y,
usecaseDownload a map of Minsk: which format for which task
Where to download a map of Minsk and in which format: PDF and SVG for print, DWG and DXF for CAD, GeoJSON and GeoPackage
guideVector maps — what they are in plain words and where to download them
Vector maps explained in plain words: how vector differs from a picture using a map as the example, which vector formats