Difference between revisions of "AutoCAD"
From Wiki.OSArch
m |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
AutoCAD is a 2D/3D drafting software developed by [https://www.autodesk.com/ Autodesk]. | AutoCAD is a 2D/3D drafting software developed by [https://www.autodesk.com/ Autodesk]. | ||
A good place to look for alternatives is https://alternativeto.net/software/autocad/ | A good place to look for alternatives is https://alternativeto.net/software/autocad/ | ||
− | == See also | + | = Getting data out of AutoCAD = |
− | * [[LibreCAD]] is | + | |
− | * [[QCAD]] is | + | == File formats == |
− | * | + | |
+ | AutoCAD has industry specific versions, called verticals, some formats are supported only by one of them | ||
+ | |||
+ | * [[Drawing_Exchange_Format_(DXF)|DXF]] - Recommended, although not every features can be saved | ||
+ | * [[Drawing_(DWG)|DWG]] - Everything is saved, but not readable by other applications | ||
+ | * [[IFC_-_Industry_Foundation_Classes|IFC]] - Only in AutoCAD Architecture, Civil3D and MEP | ||
+ | |||
+ | == Accessing data in AutoCAD with free software == | ||
+ | |||
+ | * [[Speckle]] has an [https://speckle.systems/tag/autocad/ AutoCAD connector] | ||
+ | * [https://github.com/chuongmep/CadPythonShell CADPythonShell] is an AutoCAD addon for running python code inside AutoCAD. It uses IronPython, MIT license | ||
+ | * AutoCAD Civil3D comes with [[Dynamo]] since version 2022. Data in other verticals can be accessed via .NET interop services, more info [https://forums.autodesk.com/t5/net/integrate-dynamo-with-autocad/m-p/6676235/highlight/true#M50930 in this forum] | ||
+ | |||
+ | == Limitations == | ||
+ | |||
+ | Dynamic block custom parameters are not accessible via any method, and not readable from dxf files, visual representation are saved though. This data can be exported with [https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2021/ENU/AutoCAD-Core/files/GUID-5A39FFE8-10AC-4AE5-8EF4-D097C8261D1A-htm.html DATAEXTRACTION] command to csv or xls files. | ||
+ | |||
+ | = See also = | ||
+ | * [[LibreCAD]] is a free/libre alternative to AutoCAD | ||
+ | * [[QCAD]] is a free/libre alternative to AutoCAD | ||
+ | |||
+ | = External Resources = | ||
+ | * https://www.autodesk.com/products/autocad/overview | ||
+ | * https://en.wikipedia.org/wiki/AutoCAD | ||
[[Category:Autodesk Autocad]] [[Category:Proprietary software]] | [[Category:Autodesk Autocad]] [[Category:Proprietary software]] |
Latest revision as of 16:51, 7 March 2023
AutoCAD is a 2D/3D drafting software developed by Autodesk.
A good place to look for alternatives is https://alternativeto.net/software/autocad/
Getting data out of AutoCAD[edit]
File formats[edit]
AutoCAD has industry specific versions, called verticals, some formats are supported only by one of them
- DXF - Recommended, although not every features can be saved
- DWG - Everything is saved, but not readable by other applications
- IFC - Only in AutoCAD Architecture, Civil3D and MEP
Accessing data in AutoCAD with free software[edit]
- Speckle has an AutoCAD connector
- CADPythonShell is an AutoCAD addon for running python code inside AutoCAD. It uses IronPython, MIT license
- AutoCAD Civil3D comes with Dynamo since version 2022. Data in other verticals can be accessed via .NET interop services, more info in this forum
Limitations[edit]
Dynamic block custom parameters are not accessible via any method, and not readable from dxf files, visual representation are saved though. This data can be exported with DATAEXTRACTION command to csv or xls files.