SciCompMod / memilio

Modular spatio-temporal models for epidemic and pandemic simulations
https://scicompmod.github.io/memilio/
Apache License 2.0
52 stars 15 forks source link

Write mobility data #55

Open maccxs opened 2 years ago

maccxs commented 2 years ago
mknaranja commented 7 months ago

@HenrZu To fulfill https://github.com/DLR-SC/LOKI-User-Stories/issues/61, we should implement this until End of February 2024.

HenrZu commented 5 months ago

As discussed, the current plan is to aggregate all age groups first. To save further capacity, we only want to write out the NoSymptoms and Symptoms compartments. Next, we also include the total number of travelers.

Next step, we should try to create an initial draft for creating this data set using the model (SecirVVS).

mknaranja commented 5 months ago

If possible, that data would have structure

- region_id_1
  - to_region_id_1 (actually id_1 -> id_1 is superfluous but no need to remove, as only minor increase in data storage)
    - time: time points
    - total: Asymptomatic, Symptomatic, Total commuters (also noninfected)
  - to_region_id_2
    - time: time points
    - total: Asymptomatic, Symptomatic, Total commuters (also noninfected) 
  - ...
- region_id_2
  - ...

The aggregated values Asymptomatic, Symptomatic could or should maybe be defined by some model<->graph interface to define which compartments are written out or aggregated here. Similarly, we may want to add some non-aggregation or partial aggregation on age groups or other demographic features used in the model.

This gives the ToDos: