dxf-json 0.7.2 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +99 -55
- package/package.json +1 -1
package/Readme.md
CHANGED
|
@@ -30,64 +30,108 @@ A library that reliably parses DXF files into JSON files without missing data.
|
|
|
30
30
|
|
|
31
31
|
The goal of this library is to fully analyze dxf files from AutoCad and convert them to json files.
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
33
|
+
<details><summary>Current Coverage</summary>
|
|
34
|
+
|
|
35
|
+
For `dev` branch status, see [#52](https://github.com/dotoritos-kim/dxf-json/issues/52)
|
|
36
|
+
|
|
37
|
+
Based on [AutoCAD 2024 DXF Reference](https://help.autodesk.com/view/OARX/2024/ENU/?guid=GUID-235B22E0-A567-4CF6-92D3-38A2306D73F3)
|
|
38
|
+
|
|
39
|
+
- [x] HEADER Section
|
|
40
|
+
- [ ] CLASSES Section
|
|
41
|
+
- [ ] TABLES Section
|
|
42
|
+
- [ ] APPID
|
|
43
|
+
- [x] BLOCK_RECORD
|
|
44
|
+
- [x] DIMSTYLE
|
|
45
|
+
- [x] LAYER
|
|
46
|
+
- [x] LTYPE
|
|
47
|
+
- [x] STYLE
|
|
48
|
+
- [ ] UCS
|
|
49
|
+
- [ ] VIEW
|
|
50
|
+
- [x] VPORT
|
|
51
|
+
- [x] BLOCKS Section
|
|
52
|
+
- [ ] ENTITIES Section
|
|
53
|
+
- [x] 3DFACE
|
|
54
|
+
- [ ] 3DSOLID
|
|
55
|
+
- [ ] ACAD_PROXY_ENTITY
|
|
56
|
+
- [x] ARC
|
|
57
|
+
- [x] ATTDEF
|
|
58
|
+
- [x] ATTRIB
|
|
59
|
+
- [ ] BODY
|
|
60
|
+
- [x] CIRCLE
|
|
61
|
+
- [ ] COORDINATION MODEL
|
|
62
|
+
- [x] DIMENSION
|
|
63
|
+
- [x] ELLIPSE
|
|
64
|
+
- [x] HATCH
|
|
65
|
+
- [ ] HELIX
|
|
66
|
+
- [x] IMAGE
|
|
67
|
+
- [x] INSERT
|
|
68
|
+
- [x] LEADER
|
|
69
|
+
- [ ] LIGHT
|
|
70
|
+
- [x] LINE
|
|
71
|
+
- [x] LWPOLYLINE
|
|
72
|
+
- [ ] MESH
|
|
73
|
+
- [x] MLEADER
|
|
74
|
+
- [ ] MLEADERSTYLE
|
|
75
|
+
- [ ] MLINE
|
|
76
|
+
- [x] MTEXT
|
|
77
|
+
- [ ] OLEFRAME
|
|
78
|
+
- [ ] OLE2FRAME
|
|
79
|
+
- [x] POINT
|
|
80
|
+
- [x] POLYLINE
|
|
81
|
+
- [x] RAY
|
|
82
|
+
- [ ] REGION
|
|
83
|
+
- [x] SECTION
|
|
84
|
+
- [ ] SEQEND
|
|
85
|
+
- [ ] SHAPE
|
|
86
|
+
- [x] SOLID
|
|
87
|
+
- [x] SPLINE
|
|
88
|
+
- [ ] SUND
|
|
89
|
+
- [ ] SURFACE
|
|
90
|
+
- [ ] TABLE
|
|
91
|
+
- [x] TEXT
|
|
92
|
+
- [ ] TOLERANCE
|
|
93
|
+
- [ ] TRACE
|
|
94
|
+
- [ ] UNDERLAY
|
|
95
|
+
- [x] VERTEX
|
|
96
|
+
- [x] VIEWPORT
|
|
97
|
+
- [ ] WIPEOUT
|
|
98
|
+
- [ ] XLINE
|
|
99
|
+
- [ ] OBJECTS Section
|
|
100
|
+
- [ ] DATATABLE
|
|
101
|
+
- [x] DICTIONARY
|
|
102
|
+
- [ ] DICTIONARYVAR
|
|
103
|
+
- [ ] DIMASSOC
|
|
104
|
+
- [ ] FIELD
|
|
105
|
+
- [ ] GEODATA
|
|
106
|
+
- [ ] GROUP
|
|
107
|
+
- [ ] IDBUFFER
|
|
108
|
+
- [ ] IMAGEDEF
|
|
109
|
+
- [ ] IMAGEDEF_REACTOR
|
|
110
|
+
- [ ] LAYER_FILTER
|
|
111
|
+
- [ ] LAYER_INDEX
|
|
112
|
+
- [x] LAYOUT
|
|
113
|
+
- [ ] LIGHTLIST
|
|
114
|
+
- [ ] MATERIAL
|
|
115
|
+
- [ ] MLINESTYLE
|
|
116
|
+
- [ ] OBJECT_PTR
|
|
117
|
+
- [x] PLOTSETTINGS
|
|
118
|
+
- [ ] RASTERVARIABLES
|
|
119
|
+
- [ ] RENDER
|
|
120
|
+
- [ ] SECTION
|
|
121
|
+
- [ ] SORTENSTABLE
|
|
122
|
+
- [ ] SPATIAL_FILTER
|
|
123
|
+
- [ ] SPATIAL_INDEX
|
|
124
|
+
- [ ] SUNSTUDY
|
|
125
|
+
- [ ] TABLESTYLE
|
|
126
|
+
- [ ] UNDERLAYDEFINITION
|
|
127
|
+
- [ ] VBA_PROJECT
|
|
128
|
+
- [ ] VISUALSTYLE
|
|
129
|
+
- [ ] WIPEOUTVARIABLES
|
|
130
|
+
- [ ] XRECORD
|
|
131
|
+
- [ ] THUMBNAILIMAGE Section
|
|
73
132
|
|
|
74
133
|
</details>
|
|
75
134
|
|
|
76
|
-
### Tables
|
|
77
|
-
|
|
78
|
-
- blockRecord
|
|
79
|
-
- dimStyle
|
|
80
|
-
- layer
|
|
81
|
-
- ltype
|
|
82
|
-
- style
|
|
83
|
-
- vport
|
|
84
|
-
|
|
85
|
-
### Objects
|
|
86
|
-
|
|
87
|
-
- dictionary
|
|
88
|
-
- layout
|
|
89
|
-
- plotSettings
|
|
90
|
-
|
|
91
135
|
## Reference
|
|
92
136
|
|
|
93
137
|
I was able to get a lot of ideas from the [dxf-parser](https://github.com/gdsestimating/dxf-parser) library.
|