We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8c9dc commit 32c54feCopy full SHA for 32c54fe
MLStructFP/db/_db_loader.py
@@ -190,7 +190,7 @@ def tabulate(self, limit: int = 0, legacy: bool = False,
190
('Project ID', 'Project label', 'Floor ID', 'Cat', 'Elev',
191
'Rects', 'Points', 'Slabs', 'Rooms', 'Items', 'Floor image path'
192
) if not legacy else
193
- ('Floor ID', 'Rects', 'Floor image path')
+ ('Floor ID', 'Rects', 'Slabs', 'Floor image path')
194
):
195
theads.append(t)
196
table = [theads]
@@ -205,7 +205,7 @@ def tabulate(self, limit: int = 0, legacy: bool = False,
205
(f.project_id, f.project_label, f.id, f.category, 1 if f.elevation else 0,
206
len(f.rect), len(f.point), len(f.slab), len(f.room), len(f.item), f_file
207
208
- (f.id, len(f.rect), f_file)
+ (f.id, len(f.rect), len(f.slab), f_file)
209
210
table_data.append(i)
211
table.append(table_data)
0 commit comments