Add simple examples for ifc5d import from csv

This commit is contained in:
Massimo Fabbro
2025-11-22 08:34:26 +01:00
committed by Massimo Fabbro
parent 584d37de50
commit 87283874a1
8 changed files with 72 additions and 1 deletions
+8 -1
View File
@@ -32,6 +32,13 @@ csv2ifc.execute()
```
See example files as a CSV file format reference:
- Ex1 - BoQ without query.csv (a simple Bill of Quantities)
- Ex2 - SoR.csv (a simple Schedule of Rates)
- Ex3 - BoQ with query.csv (a simple BoQ with the query function)
- Ex4 - BoQ with description.csv (a simple BoQ with description column)
- Ex5 - SoR_with_description.csv (a simple SoR with description column)
- Ex6 - BoQ with categories.csv (a simple BoQ with categories columns)
- Ex7 - BoQ with Rates.csv (a simple BoQ that connect to an existing SoR. It needs an already loaded SoR.)
- `sample_cost_schedule_house_FR.csv` / `.ods`
- `schedule.csv`, `rates.csv` (schedule of rates example)
@@ -124,4 +131,4 @@ path = "directory/cost_schedule"
writer = Ifc5DOdsWriter(file=file, output=path)
writer.write()
```
```