Converting KML to DXF turns Google Earth geometry into a CAD drawing.
What is KML?
KML (Keyhole Markup Language) is an XML-based format for expressing geographic annotation and visualization, adopted as an OGC standard and popularized by Google Earth.
KML describes Placemarks, geometries (points, lines, polygons), and their presentation using an XML tree that also supports folders for organization, rich styling (icons, colors, line widths, fills), balloon descriptions, and ground overlays. It is designed for display and sharing rather than analysis, and is opened natively by Google Earth, Google Maps, and most GIS packages. Because it targets a single global view, it has no concept of reprojection.
What is DXF?
DXF (Drawing Exchange Format) is an open CAD data format created by Autodesk for exchanging drawings between AutoCAD and other CAD applications.
DXF stores CAD entities — points, lines, polylines, arcs, circles, text and blocks — organized on named layers. Unlike GIS formats it has no attribute table, so geometry and layer names come across but arbitrary feature attributes do not. It is the common interchange format for survey drawings, site plans, and engineering geometry moving between CAD tools such as AutoCAD, and into GIS via GDAL. GeoConvert reads and writes DXF entirely in your browser.
Why convert KML to DXF?
It lets placemarks and paths sketched in Google Earth become CAD entities for drafting, siting, or design work in AutoCAD.
Coordinate systems
KML coordinates are always geographic WGS84 longitude, latitude, and (optionally) altitude in that order; the format has no CRS or projection field, so any data written to KML is expressed in EPSG:4326 by definition.
DXF is a CAD format and carries no coordinate reference system — coordinates are plain model units. When converting to or from GIS formats you often need to know (or assign) the drawing’s real-world CRS; GeoConvert assumes WGS84 (EPSG:4326) only if you ask to reproject.
What to watch out for
- KML is WGS84 lon/lat; a DXF in raw degrees is unusably small for drafting, so reproject to a projected CRS (meters/feet) first.
- KML attributes and styling are not written to DXF — only geometry and layers.
- Polygons become closed polylines in the drawing.
How to convert KML to DXF
- Drag your KML file (.kml) into the converter above, or click to browse.
- Confirm the source is KML and choose DXF as the output format.
- Optionally pick a target coordinate system (EPSG) to reproject.
- Click Convert and download your DXF file. Everything runs in your browser.
Frequently asked questions
- Why should I reproject first?
- Degrees produce a drawing a few units wide. Reprojecting to UTM/State Plane gives real meters or feet, which is what CAD expects.
- Do placemark names survive?
- DXF has no attribute table, so names aren’t stored as fields — expect geometry and layers only.