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.
Files changed (2) hide show
  1. package/Readme.md +99 -55
  2. 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
- ## Coverage
34
-
35
- ### Block
36
-
37
- The BLOCKS section of the DXF file contains an entry for each block reference in the drawing.
38
-
39
- ### Header
40
-
41
- Most headers can be loaded. All that remains is to add types and add descriptions.
42
-
43
- ### ENTITY
44
-
45
- Note that application extension block (ex: starts with 102 code `{ACAD_REACTORS`) and xdata (ex: starts with 1001 code) are supported
46
-
47
- <details>
48
-
49
- - 3DFACE
50
- - ARC
51
- - ATTDEF
52
- - ATTRIBUTE
53
- - CIRCLE
54
- - DIMENSION
55
- - ELLIPSE
56
- - HATCH
57
- - IMAGE
58
- - INSERT
59
- - LEADER
60
- - LINE
61
- - LWPOLYLINE
62
- - MTEXT
63
- - MULTILIEADER
64
- - POINT
65
- - POLYLINE
66
- - RAY
67
- - SECTION
68
- - SOLID
69
- - SPLINE
70
- - TEXT
71
- - VERTEX
72
- - VIEWPORT
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dxf-json",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "perfect dxf parser",
5
5
  "type": "module",
6
6
  "main": "./dist/bundle.cjs",