mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-27 23:35:01 +00:00
12 lines
512 B
Python
12 lines
512 B
Python
from domain.condition.aspect_type import AspectType
|
|
from domain.condition.element_type import ElementType
|
|
from domain.condition.mapping.element_mapping import ElementMapping
|
|
|
|
# Calico's component path -> the shared taxonomy. Held as data (like the LBWF /
|
|
# Peabody element maps) so extending Calico to further components is a data edit.
|
|
CALICO_ELEMENT_MAP: dict[str, ElementMapping] = {
|
|
"Roof Covering": ElementMapping(
|
|
elementType=ElementType.ROOF,
|
|
aspect_type=AspectType.MATERIAL,
|
|
),
|
|
}
|