Closed asadow closed 6 months ago
Is it possible to extract the $INSUNITS header variable from a .dxf file?
$INSUNITS
.dxf
I know Python can do so with ezdxf:
ezdxf
import ezdxf from ezdxf import units doc = ezdxf.readfile(file_path) doc.units
Reticulate:
library(reticulate) ezdxf <- import("ezdxf") doc = ezdxf$readfile(file_path) doc$units
Please provide a .dxf file that has such a header variable.
Here
I believe not; see here for the DXF driver docs; please reopen if you think this driver should give you access to units somehow.
units
Is it possible to extract the
$INSUNITS
header variable from a.dxf
file?I know Python can do so with
ezdxf
:Reticulate: