Convert CSV coordinate tables to DXF drawings you can open in AutoCAD, entirely on your own machine. The rows are read straight from the browser tab, so a survey list becomes CAD geometry without any upload step.
Drop a file here, or click to browse
KML, KMZ, SHP (.zip), GeoJSON, GPKG, GML, GPX, DXF, CSV, Excel, and more
No CSV file to hand? Download a sample CSV file (100 points) and drop it above to see the conversion.
Every format stores different things, so a conversion is never perfectly loss-free. Here is exactly what carries over when you convert CSV to DXF, and what to watch for.
| What | CSV → DXF | |
|---|---|---|
| Geometry | Kept | All geometry is redrawn as CAD entities (points, polylines and closed polylines) on drawing layers. |
| Attributes | Dropped | DXF stores drawing geometry, not a data table, so attribute columns are not carried across. Export a CSV alongside if you need the data. |
| Styling & labels | Changes | CAD layer/level organisation is mapped where it can be, but CAD line styles do not translate to GIS symbology. |
| Coordinate system | Changes | DXF stores raw coordinates without a CRS tag, so note the coordinate system separately for whoever opens the file. |
| Elevation (Z) | Kept | CSV is 2D, so there is no elevation to carry (add a Z/elevation column if you need one). |
| File structure | Kept | A single, self-contained .dxf file you can move around on its own. |
You do not need to be a GIS expert to convert CSV to DXF. Your sheet needs just two things: a column of latitudes and a column of longitudes, and each row then becomes a point in the CAD drawing. Everything else, names, notes, dates, ID numbers, rides along as attributes on each point.
lat, latitude or y are detected automatically.lon, lng, longitude or x are picked up for you.Store the coordinates as plain decimal degrees, like 33.6844 and 73.0479. If your values look like 33°41'04"N instead, convert them first with the coordinate converter. CSV to DXF works with .xlsx, .xls, .csv and Google Sheets exports, and if the wrong column is picked you can fix it from the dropdowns before converting.
Engineers and surveyors often keep point data in a spreadsheet. Think survey stations, borehole locations, or sensor coordinates listed as rows. However, CAD software wants a drawing, not a table. So converting CSV to DXF turns those coordinate columns into real geometry you can trace, snap and annotate. DXF is Autodesk's open interchange format, so the result drops straight into AutoCAD, Civil 3D or MicroStation. It also travels well between packages, which makes it the usual bridge from a raw point list into a site plan or engineering drawing.
A spreadsheet has no coordinate system of its own. CSV rows are read as WGS84 longitude/latitude (EPSG:4326) unless you tell the tool otherwise. If your coordinates are projected, for example UTM eastings and northings in metres, pick the matching CRS before converting so the points land in the right place instead of near Null Island.
DXF stores raw coordinates without a CRS tag, so make a note of the coordinate system for whoever opens the file next. A quick CRS check before you download saves the classic "my CSV data is in the wrong place" surprise; the guide on coordinate systems and EPSG codes goes deeper.
Check your coordinate units before converting. A CSV usually holds latitude/longitude in degrees, but DXF is drawing-centric and often sits in a local engineering coordinate system, not lat/lon. So degrees can land as tiny drawing units that look wrong in CAD. Also, only rows with valid coordinate columns become points. Rows missing coordinates are skipped, so verify every point made it across.
CSV files typically come out of Excel, Google Sheets, QGIS, pandas. Once you convert to DXF, the file opens in AutoCAD, BricsCAD, Civil 3D and MicroStation, plus QGIS for a quick look. The DXF output follows the standard specification exactly, so those programs read it without any special import settings.
A CSV holds your points as plain rows, usually with latitude and longitude columns you can edit in a spreadsheet. DXF is where those points land inside a CAD drawing, sitting on named layers next to survey linework and site geometry. This pairing shows up when field-collected or geocoded tables need to reach an engineer. In practice, you build coordinates in Excel, then drop them into AutoCAD as drawing entities without retyping anything.
Not as a GIS attribute table. DXF organizes data by layers and blocks rather than attribute fields, so the conversion places geometry from your coordinate columns and does not carry every spreadsheet column as queryable attributes.
Yes. DXF is Autodesk's open interchange format, so it opens in AutoCAD, Civil 3D and MicroStation, plus GIS tools like QGIS.
DXF is drawing-centric, so it has no attribute table like a spreadsheet. Each row becomes a point entity, and text columns can be written as label text near the point. Rich per-row fields do not survive as queryable data the way they would in a GIS format.
They will plot as raw degree values, which sit very close together near the origin. For a usable engineering drawing, set the drawing CRS so the points project into meters or feet. Civil 3D and MicroStation expect that projected system, not bare lon/lat degrees.
A DXF file opens in AutoCAD, BricsCAD, Civil 3D and QGIS. Because the output follows the standard specification, any tool that supports DXF will read it without special settings.
No conversion is perfectly loss-free because each format stores different things, but CAD formats store geometry rather than a data table, so attribute columns are dropped while the shapes are kept exactly.