Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vivverma9 committed Jan 8, 2025
1 parent bc2a0ca commit 4da5ab3
Show file tree
Hide file tree
Showing 19 changed files with 233 additions and 2,495 deletions.
Empty file added data/external/etc/.gitkeep
Empty file.
28 changes: 28 additions & 0 deletions data_model/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,13 @@ class Employee(Respondent):
Factor affecting the Mode choice of the employee
"""

alt_commute_mode_other: NoneOrNanString[str] = Field(
..., description = "Other mode used by the employee to commute to the airport in the past 30 days."
)
"""
Other mode used by the employee to commute to the airport in the past 30 days
"""

commute_mode_decision_other: NoneOrNanString[str] = Field(
..., description = "(Other) Factor affecting the Mode choice of the employee"
)
Expand Down Expand Up @@ -1725,6 +1732,13 @@ def is_final_destination(cls):
True if the respondent used a personal electric scooter for their trip to SDIA in the last 12 months
"""

sdia_accessmode_split_other: NoneOrNanString[str] = Field(
..., description = "Other mode the respondent used for their trip to SDIA in the last 12 months"
)
"""
Other mode the respondent used for their trip to SDIA in the last 12 months.
"""

#
sdia_accessmode_decision: NoneOrNan[e.ModeDecision] = Field(
..., description = "Factor which affects mode choice, for respondents who do not always used the same mode"
Expand Down Expand Up @@ -1887,6 +1901,13 @@ def is_final_destination(cls):
True if the respondent did not use transit because they prefer other mode(s)
"""

reasons_no_transit_other: NoneOrNanString[str] = Field(
..., description = "Other reason why the respondent did not use transit"
)
"""
Other reason why the respondent did not use transit.
"""

general_use_transit_resident: NoneOrNan[e.TransitUseFrequency] = Field(
..., description = "General transit use frequency by residents of San Diego region in San Diego region"
)
Expand Down Expand Up @@ -2083,6 +2104,13 @@ def is_final_destination(cls):
True if the visitor used their personal e-scooter during their visit to the San Diego Region.
"""

general_modes_used_visitor_other: NoneOrNanString[str] = Field(
..., description = "Other mode used by the visitor during their visit to the San Diego Region."
)
"""
Other mode used by the visitor during their visit to the San Diego Region.
"""

non_sdia_flight_frequency: NoneOrNan[e.OtherFlightAndTransitUseFrequency] = Field(
..., description = "Respondent's number of flights from airport other than SDIA in the past 12 months"
)
Expand Down
Loading

0 comments on commit 4da5ab3

Please sign in to comment.