Chenyu’s visualization tool takes the output from Eqasim and provides an interactive visualization based on Streamlit.
Tool:
Requirements:
I remember from this mail thread that the following parts are still missing:
- Requirements file
- License file
- Versioning / Releases
From a technical point of view, the most important point is the requirements file that we will use to create the environment. Also, instructions about how to run the tool would be needed. You can describe this in the README.md.
Blockers
Something I realized is that you are loading from GitHub and linking the file directly. This won’t work in ODTP (nor other tools) as the file loaded should be a parameter of your tool or a file located somewhere (i.e., the data folder of your tool). Also, is this file a direct output of Eqasim, or does it require some preprocessing?
data = pd.read_csv("https://raw.githubusercontent.com/zuocsfm/travel_data_dashboard/main/eqasim_legs.csv", sep=';')
Chenyu’s visualization tool takes the output from Eqasim and provides an interactive visualization based on Streamlit.
Tool:
Requirements:
I remember from this mail thread that the following parts are still missing:
From a technical point of view, the most important point is the requirements file that we will use to create the environment. Also, instructions about how to run the tool would be needed. You can describe this in the README.md.
Blockers
Something I realized is that you are loading from GitHub and linking the file directly. This won’t work in ODTP (nor other tools) as the file loaded should be a parameter of your tool or a file located somewhere (i.e., the data folder of your tool). Also, is this file a direct output of Eqasim, or does it require some preprocessing?