Convert DXF to Shapefile Online — Free GIS Converter
Convert AutoCAD DXF drawings to Shapefile format in your browser — preserve layers as attributes, assign CRS, and download a ready-to-use ZIP bundle.
Updated May 2026
When CAD survey drawings need to enter a GIS workflow, Shapefile is the most universally accepted landing format — convert your .dxf file to a .zip Shapefile bundle with proper CRS assignment using geodata.plus.
Why convert DXF to Shapefile?
Engineering and surveying firms routinely produce deliverables in DXF, but GIS analysts, planners, and government agencies need those same boundaries, utility networks, and topographic lines in Shapefile format to load them into ArcGIS, QGIS, or Tableau without writing custom import scripts. Shapefile is the accepted submission format for most land-use permit applications, infrastructure asset registries, and municipal GIS databases in North America and Australia.
DXF also lacks the attribute table concept that GIS relies on for spatial analysis. Converting to Shapefile forces a structured DBF attribute table, allowing you to attach metadata — parcel IDs, pipe materials, road classifications — that downstream analysts can query and join.
Why use geodata.plus
- Free tier — convert up to 3 files per month at no cost, no credit card required
- Automatic CRS detection — reads coordinate hints from the DXF header and lets you assign the correct source EPSG before conversion
- Optional reprojection — reproject to any target EPSG code, such as a local state plane or national grid, before download
- Browser-based — no QGIS, GDAL, or AutoCAD install needed; works on any modern browser
- Encrypted transfer — all uploads use TLS; files are stored temporarily in Cloudflare R2 and automatically deleted on schedule
- Auto-deleted output — output files are automatically deleted after 2 days (free tier) and 7 days (Pro); no manual cleanup needed
How it works
- Upload your DXF file (
.dxf) using the widget above - geodata.plus parses all layers and entity types and detects the geometry mix
- Select Shapefile as the output format; assign the source CRS and optionally reproject to a target EPSG
- Download your
.ziparchive containing the.shp,.shx,.dbf, and.prjcomponents
DXF format
DXF (Drawing Exchange Format) is Autodesk's open interoperability format for CAD data, used since 1982. It stores geometry as entities — lines, polylines, arcs, blocks, and hatches — organized into named layers. DXF coordinates exist in whatever space the CAD operator defined; there is no CRS metadata embedded in the file by default. Attribute data, if any, is stored as block attributes or XDATA, not in a tabular structure.
| Property | Value |
|---|---|
| Extension | .dxf |
| Type | Vector, single file |
| Coordinate system | None native — local/project coordinates assumed |
| Geometry types | Points, Lines, Polylines, Arcs, Circles, Polygons (hatches) |
| Common software | AutoCAD, Civil 3D, MicroStation, BricsCAD, surveying tools |
Shapefile format
The Shapefile format was developed by Esri and became the de facto standard for vector GIS data exchange. A Shapefile is a bundle of at least three files: the .shp geometry file, the .shx spatial index, and the .dbf attribute table. The .prj file stores the CRS definition. Every major desktop GIS and many enterprise platforms can read Shapefiles directly.
| Property | Value |
|---|---|
| Extension | .shp + .shx + .dbf + .prj (delivered as .zip) |
| Type | Vector, multi-file bundle |
| Coordinate system | Any CRS (stored in .prj) |
| Geometry types | Point, Polyline, Polygon, MultiPoint (one type per file) |
| Common software | ArcGIS, QGIS, Tableau, AutoCAD Civil 3D, government portals |
Frequently asked questions
A DXF file can contain mixed geometry types — how does the Shapefile output handle that?
Shapefiles are strictly single-geometry-type. geodata.plus splits the output by geometry type and packages all resulting Shapefiles into the same ZIP archive. You will receive separate .shp files for points, polylines, and polygons, each named with a _point, _line, or _polygon suffix.
Will the DXF layer names be preserved as attributes in the Shapefile?
Yes. The DXF layer name for each entity is written to a layer column in the .dbf attribute table. Other extractable entity metadata — such as color index and linetype — are included as additional columns where present.
My DXF contains block insertions — are those converted?
Block insertions are exploded into their constituent geometry entities before conversion. The block name is preserved as an attribute. Nested blocks are recursively expanded up to a configurable depth limit.