Free online GDB.ZIP to GEOJSON converter
Convert an extracted Esri file geodatabase archive into web-compatible GeoJSON.
Convert GDB.ZIP to GEOJSON online - free
Your file is processed instantly and never stored on our servers.
Import a file from a URL
Paste a direct link to the file. We download it to our server and it is converted exactly like an upload.
How it works
-
1/3
Upload your .gdb.zip file
Click to browse to select your file you want to convert or simply drag & drop your file into selected area.
-
2/3
Perform .gdb.zip to .geojson conversion
After successful file upload, click to convert when you are ready.
-
3/3
Download converted .geojson file
Conversion result is ready to download.
How to convert gdb.zip to geojson file
- GPS navigation, maps, GIS
- No ratings yet.
101convert.com assistant bot
29m
GDB.ZIP files usually contain an Esri file geodatabase, while mapping applications, web APIs, and JavaScript libraries commonly require GeoJSON. Converting the archive makes its feature layers usable in browser maps, GIS editors, and systems that accept a single .geojson file.
What the GDB.ZIP format is
.gdb.zip is normally a ZIP archive containing an Esri File Geodatabase directory ending in .gdb. The geodatabase can contain multiple feature classes, tables, spatial indexes, coordinate-system definitions, and attribute fields; the ZIP compression is used to package the directory for transfer or storage.
Esri ArcGIS Pro and ArcGIS Desktop create file geodatabases, and government agencies, surveying tools, GPS workflows, and data portals often distribute them as ZIP archives. The archive is not usually a single spatial file, so extracting it is required before most conversion programs can read its layers.
What the GEOJSON format is
GeoJSON is a JSON-based format for geographic features such as points, lines, polygons, and collections of those features. Each feature can include an attribute object, allowing geometry and properties to be transferred together.
GeoJSON is supported by web mapping libraries including Leaflet, MapLibre GL JS, and OpenLayers, as well as QGIS, ArcGIS, Python GIS libraries, and many spatial APIs. It is easier to inspect and edit than a file geodatabase, but it is generally less compact and less suitable for large datasets or geodatabase-specific behavior such as domains, subtypes, relationship classes, and topology.
How to actually convert GDB.ZIP to GEOJSON
Using GDAL from the command line
GDAL is the most direct desktop conversion tool because its OpenFileGDB driver reads Esri file geodatabases and its GeoJSON driver writes the target format.
- Extract
data.gdb.zipso that the completedata.gdbfolder remains intact. Do not extract only individual files from inside the folder. - List the feature classes inside the geodatabase:
ogrinfo data.gdb
Use the layer name returned by that command in the export command. For example:
ogr2ogr -f GeoJSON roads.geojson data.gdb roads -t_srs EPSG:4326 -lco RFC7946=YES
-t_srs EPSG:4326 converts the layer to WGS 84, the coordinate reference system expected by RFC 7946 GeoJSON. -lco RFC7946=YES writes standards-compliant GeoJSON coordinates and omits the obsolete crs member.
Export each feature class separately when the geodatabase contains multiple layers:
ogr2ogr -f GeoJSON parcels.geojson data.gdb parcels -t_srs EPSG:4326 -lco RFC7946=YES
To export all compatible layers into one GeoJSON file, use:
ogr2ogr -f GeoJSON all_layers.geojson data.gdb -t_srs EPSG:4326 -lco RFC7946=YES
Separate files are usually safer because GeoJSON consumers often expect one geometry type and one schema per file. GDAL installation packages commonly include both ogrinfo and ogr2ogr.
Using QGIS
- Extract the ZIP archive.
- Open QGIS and add the extracted
.gdbfolder through the Data Source Manager or by dragging it into the map. - Select the required feature class in the Browser or Layers panel.
- Choose Layer → Export → Save Features As….
- Set Format to
GeoJSON, selectEPSG:4326 - WGS 84as the CRS when web-compatible coordinates are required, choose an output filename ending in.geojson, and save.
Using the online converter
You can convert the file on 101convert.com for free without installing software: upload the GDB.ZIP file, select GEOJSON as the output format, start the conversion, and download the resulting file. If the archive contains several feature classes, check whether the converter exposes layer selection or produces a separate result for each layer.
Quality and compatibility limitations
A geodatabase may contain several layers, but a GeoJSON export normally represents one selected feature collection. Confirm that every required feature class was exported rather than converting only the first layer shown by the source program.
GeoJSON supports common geometry and attribute types, but geodatabase rules and metadata are not preserved. Domains may become coded values, subtypes and relationship classes may be lost, raster data is not represented, and unsupported field types can be converted to strings or omitted.
Check the source CRS before exporting. Using EPSG:4326 prevents most web-map alignment problems, but it changes coordinate values from the source projection. Large layers can produce very large JSON files; simplify geometry only when reduced spatial detail is acceptable, and validate the output in QGIS or with the receiving application.
Note: This gdb.zip to geojson conversion record is incomplete, must be verified, and may contain inaccuracies. Please vote below whether you found this information helpful or not.
GDB.ZIP vs GEOJSON: format comparison
How the GDB.ZIP and GEOJSON formats compare on the properties that matter most for this conversion.
| Property | .GDB.ZIP Esri File Geodatabase (zipped folder) | .GEOJSON GeoJSON |
|---|---|---|
| Data model | Both | Both |
| Attribute table | Yes | Yes |
| Coordinate system | Embedded in the file | Separate file |
| Plain-text readable | No | Yes |
| Operating system support | Wide | Wide |
| Typical file size | Large | Medium |
| Open standard | No | Yes |
| Introduced | 2006 | 2008 |
| Developer | Esri | GeoJSON working group / Internet community |
| MIME type | — | application/geo+json |
Frequently asked questions
Is the GDB.ZIP to GEOJSON converter free?
Yes, converting GDB.ZIP to GEOJSON on 101convert.com is completely free. No registration, email address or installation is required. If you need a higher file size limit or want to convert more files at once, see our plans.
How large can my GDB.ZIP file be?
You can upload GDB.ZIP files up to 250 MB and convert up to 50 files at once in a single batch.
What happens to my uploaded files?
Files are processed automatically and deleted from our servers within a few minutes after conversion. We never view or share your files.
Do I need to install any software to convert GDB.ZIP to GEOJSON?
No. The GDB.ZIP to GEOJSON conversion runs entirely online in your browser and works on Windows, Mac, Linux, Android and iPhone.
Did the conversion fail?
In most cases, the cause is an incorrect file format. Please upload a valid GDB.ZIP file for this GDB.ZIP to GEOJSON conversion. Occasionally, the issue may be on our side. We analyze recurring conversion failures and disable or fix the converter if we detect a defect.