ODTP component for running Eqasim.
Tool Info | Links |
---|---|
Original Tool (IDF & Corsica) | https://github.com/eqasim-org/ile-de-france |
Current Tool Version (IDF & Corsica) | fb1112d2a7d1817746be84413da584c391059ad1 |
Original Tool (CH Scenario) | https://gitlab.ethz.ch/ivt-vpl/populations/ch-zh-synpop |
Current Tool Version (CH Scenario) | 4658daa2e441dcda132622e7fcb47da1df8c47d6 |
odtp new odtp-component-entry \
--name odtp-eqasim \
--component-version 0.4.6 \
--repository https://github.com/odtp-org/odtp-eqasim.git
-
IDF
- Download the switchdrive zip file provided.
-
CH
- Download the data provided by Milos. Copy and paste all folders located in
hafas/2018
inhafas
.
- Download the data provided by Milos. Copy and paste all folders located in
-
Corsica
- Download the switchdrive zip file provided.
- Prepare manually a folder called
odtp-input
containing the following datafolder of our selected scenario:
- data
- Create your
.env
file with this structure.
Add the selected scenario CORSICA
, IDF
, or CH
.
For Corsica:
SCENARIO=CORSICA
processes=4
hts=entd
sampling_rate=0.001
random_seed=1234
java_memory=8GB
For IDF
SCENARIO=IDF
processes=8
sampling_rate=0.001
random_seed=1234
java_memory=24G
hts=entd
For CH
SCENARIO=CH
threads=4
random_seed=0
hot_deck_matching_runnners=2
java_memory=100G
input_downsampling=0.01
enable_scaling=true
scaling_year=2020
use_freight=true
hafas_date=01.10.2018
output_id=test
- Build the dockerfile
docker build -t odtp-eqasim .
- Run the following command. Mount the correct volumes for input/output folders.
docker run -it --rm \
-v {PATH_TO_YOUR_INPUT_VOLUME}:/odtp/odtp-input \
-v {PATH_TO_YOUR_OUTPUT_VOLUME}:/odtp/odtp-output \
--env-file .env odtp-eqasim
In order to run this container in a remote server and detach from the task you can use tmux
. In this example you will run the isolated container with the CORSICA scenario.
tmux new -s odtp-test
docker run -it --rm \
-v {PATH_TO_YOUR_INPUT_VOLUME}:/odtp/odtp-input \
-v {PATH_TO_YOUR_INPUT_VOLUME}:/odtp/odtp-output \
-e SCENARIO=CORSICA \
-e processes=4 \
-e hts=entd \
-e sampling_rate=0.001 \
-e random_seed=1234 \
-e java_memory=8GB \
--name odtp-eqasim odtp-eqasim
Now you can push Control + B, and then D to dettach from the tmux session. In order to come back to the session you can do:
tmux attach-session -t odtp-test
If you want to kill the session just write exit
. Also use tmux ls
to list all available tmux sessions.
-
v0.4.6
- Rasterio 1.3.8 included in
requirements.txt
to avoid building errors - odtp-component-client upgrade to v0.1.1
- included github-action for docker images building
- Rasterio 1.3.8 included in
-
v0.4.5
-
v0.4.4
-
v0.4.3
- Ubuntu fixed at 22.04
- Python fixed at 3.10
-
v0.4.2
- Updated
odtp-component-client
- Corrected typo in
odtp.yml
regarding component license - Added
output_id
as parameter
- Updated
-
v0.4.1
- Updated
odtp.yml
to version v0.3.4 (https://github.com/odtp-org/odtp-component-template/commit/c4732294bb57bd5dfdc9630f4676f69462a3c07e)
- Updated
-
v0.4.0 Synthesis pipeline separated from matsim
- Matsim pipeline: https://github.com/odtp-org/odtp-eqasim-matsim
-
v0.3.0 Corsica compatibility
- Updating odtp-component-client to submodule
- Output now delivers
eqasim-output
andcache
.
-
v0.2.0: Version compatible with IDF & CH.
-
v0.1.0: Version compatible with IDF & CH
- Parameters. Now the parameters are taken from the enviroment variables.
- Configuration templates. No needs of copying config.yml file anymore. The file will be built based on the parameters.
- Logger: If MongoDB arg. provided the container will log its activity in the db.
- S3 Compatibility: Output content, and snapshots can be uploaded to the S3 server.
-
v0.0.1: Version compatible with IDF
Developed by SDSC/CSFM.