Skip to content

Commit 1f3de67

Browse files
committed
fix: split private modes in car, sustainable and general
1 parent bec14ba commit 1f3de67

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/sum_impact_assessment/utils/modal_split.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212
# Value: one or more transport mode types used as filter
1313
MODAL_SPLIT_TRANSPORT_MODE_GROUPS: Dict[str, List[str]] = {
1414
"NSM": ["NSM"],
15-
"Private": ["PRIVATE"],
15+
"All private modes": ["PRIVATE", "PRIVATE_SUSTAINABLE", "PRIVATE_CAR"],
16+
"Sustainable private modes": ["PRIVATE_SUSTAINABLE"],
17+
"Private car": ["PRIVATE_CAR"],
1618
"Public transport": ["PUBLIC_TRANSPORT"],
17-
"PT+NSM": ["NSM", "PUBLIC_TRANSPORT"],
19+
"Public Transport with NSM": ["NSM", "PUBLIC_TRANSPORT"],
1820
}
1921

2022

0 commit comments

Comments
 (0)