matsim-proto/matsim_activity_to_matsim_schedule.py

20 lines
426 B
Python
Raw Normal View History

class MatsimActivityToMatsimSchedule:
"""
Hub function to nrcan construction function class
"""
def __init__(self):
self._dictionary = {
'work': '08:00:00-18:00:00',
'home': '00:00:00-30:00:00',
'edu': '08:00:00-18:00:00',
'secondary': '08:00:00-20:00:00'
}
@property
def dictionary(self) -> dict:
"""
Get the dictionary
:return: {}
"""
return self._dictionary