export_ifc_data
Extract and export IFC data to JSON or CSV format, allowing filtering by entity type or building level for structured file creation.
Instructions
Export IFC data to a file in JSON or CSV format.
This tool extracts IFC data and creates a structured export file. You can filter
by entity type and/or building level, and choose the output format.
Args:
entity_type: Type of IFC entity to export (e.g., "IfcWall") - leave empty for all entities
level_name: Name of the building level to filter by (e.g., "Level 1") - leave empty for all levels
output_format: "json" or "csv" format for the output file
Returns:
Confirmation message with the export file path or an error message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_type | No | ||
level_name | No | ||
output_format | No | csv |
Input Schema (JSON Schema)
{
"properties": {
"entity_type": {
"default": null,
"title": "Entity Type",
"type": "string"
},
"level_name": {
"default": null,
"title": "Level Name",
"type": "string"
},
"output_format": {
"default": "csv",
"title": "Output Format",
"type": "string"
}
},
"title": "export_ifc_dataArguments",
"type": "object"
}