├── .github ├── dependabot.yml └── workflows │ ├── data.yml │ ├── docker-publish.yml │ ├── pr_lint.yml │ ├── release-please.yml │ ├── sphinx.yml │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── .release-please-manifest.json ├── .travis.yml ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis ├── bootstrapping.py ├── chains.py ├── debug │ └── sc.py ├── grid │ └── comparison_flow_volume.py ├── marginals.py ├── methods │ └── income │ │ └── compare_methods.py ├── reference │ ├── census │ │ └── sociodemographics.py │ ├── hts │ │ ├── activities.py │ │ ├── chains.py │ │ ├── commute_distance.py │ │ ├── commute_flow.py │ │ ├── mode_distances.py │ │ └── sociodemographics.py │ ├── income.py │ └── od │ │ ├── commute_distance.py │ │ └── commute_flow.py ├── statistics.py └── synthesis │ ├── commute_distance.py │ ├── commute_flow.py │ ├── income.py │ ├── matching.py │ ├── mode_distances.py │ ├── population.py │ ├── sociodemographics │ ├── chains.py │ ├── general.py │ └── spatial.py │ └── statistics │ ├── marginal.py │ └── monte_carlo.py ├── config.yml ├── config_corsica.yml ├── config_full.yml ├── config_lyon.yml ├── config_nantes.yml ├── config_toulouse.yml ├── containers ├── Dockerfile └── apptainer.def ├── data ├── ban │ └── raw.py ├── bdtopo │ ├── output.py │ └── raw.py ├── bpe │ ├── cleaned.py │ └── raw.py ├── census │ ├── cleaned.py │ ├── filtered.py │ ├── projection.py │ └── raw.py ├── cutter │ └── geometry.py ├── external │ └── education.py ├── gtfs │ ├── cleaned.py │ ├── output.py │ └── utils.py ├── hbefa │ └── raw.py ├── hts │ ├── commute_distance.py │ ├── comparison.py │ ├── edgt_44 │ │ ├── cleaned.py │ │ ├── filtered.py │ │ ├── format.py │ │ ├── raw.py │ │ └── reweighted.py │ ├── edgt_lyon │ │ ├── cleaned_adisp.py │ │ ├── cleaned_cerema.py │ │ ├── filtered.py │ │ ├── raw_adisp.py │ │ ├── raw_cerema.py │ │ └── reweighted.py │ ├── egt │ │ ├── cleaned.py │ │ ├── filtered.py │ │ └── raw.py │ ├── emp │ │ ├── cleaned.py │ │ ├── filtered.py │ │ ├── raw.py │ │ └── reweighted.py │ ├── entd │ │ ├── cleaned.py │ │ ├── filtered.py │ │ ├── raw.py │ │ └── reweighted.py │ ├── hts.py │ ├── output.py │ └── selected.py ├── income │ ├── municipality.py │ └── region.py ├── od │ ├── cleaned.py │ ├── raw.py │ └── weighted.py ├── osm │ └── cleaned.py ├── sirene │ ├── cleaned.py │ ├── localized.py │ ├── output.py │ ├── raw_geoloc.py │ ├── raw_siren.py │ └── raw_siret.py ├── spatial │ ├── centroid_distances.py │ ├── codes.py │ ├── department_names.py │ ├── departments.py │ ├── iris.py │ ├── municipalities.py │ ├── population.py │ ├── urban_type.py │ └── utils.py ├── tiles │ └── raw.py └── vehicles │ ├── raw.py │ └── types.py ├── docs ├── .readthedocs.yml ├── Makefile ├── cases │ ├── cases_summary.md │ ├── corsica.md │ ├── lyon.md │ ├── nantes.md │ └── toulouse.md ├── conf.py ├── containers │ └── containers.md ├── contents.md ├── index.rst ├── make.bat ├── misc │ ├── changelog.md │ ├── legal.md │ ├── misc_summary.md │ ├── old_changelog.md │ └── roadmap.md ├── noise │ └── noisemodelling.md ├── population │ ├── population_analysis.md │ ├── population_data.md │ ├── population_execution.md │ └── population_summary.md ├── population_before.md ├── requirements.txt ├── simulation │ ├── scenario_cutter.md │ ├── simulation_data.md │ ├── simulation_execution.md │ └── simulation_summary.md └── via.png ├── documentation ├── info │ ├── collect.py │ └── tex.py ├── meta_output.py ├── paper.py ├── plots │ ├── commute_distance.py │ ├── commute_flow.py │ ├── data │ │ ├── hts_chains.py │ │ └── hts_comparison.py │ ├── income.py │ ├── language.py │ ├── matching.py │ ├── monte_carlo.py │ ├── secondary_locations.py │ ├── sociodemographics │ │ ├── chains.py │ │ ├── general.py │ │ ├── local.py │ │ └── utils.py │ └── theory │ │ └── sampling_error.py ├── plotting.py └── shapes.py ├── environment.yml ├── matsim ├── output.py ├── runtime │ ├── eqasim.py │ ├── git.py │ ├── java.py │ ├── maven.py │ └── pt2matsim.py ├── scenario │ ├── facilities.py │ ├── households.py │ ├── population.py │ ├── supply │ │ ├── gtfs.py │ │ ├── osm.py │ │ ├── output.py │ │ └── processed.py │ └── vehicles.py ├── simulation │ ├── cutter │ │ ├── cut.py │ │ └── full_run.py │ ├── emissions │ │ ├── events.py │ │ └── network.py │ ├── full_run.py │ ├── prepare.py │ └── run.py └── writers.py ├── noise ├── runtime │ └── noisemodelling.py └── simulation │ ├── detailed_network.py │ ├── osm.py │ ├── prepare.py │ └── run.py ├── scripts └── verify_data.py ├── synthesis ├── locations │ ├── education.py │ ├── home │ │ ├── addresses.py │ │ ├── locations.py │ │ └── output.py │ ├── secondary.py │ └── work.py ├── output.py ├── population │ ├── activities.py │ ├── enriched.py │ ├── income │ │ ├── bhepop2.py │ │ ├── selected.py │ │ ├── uniform.py │ │ └── utils.py │ ├── matched.py │ ├── projection │ │ ├── ipu.py │ │ └── reweighted.py │ ├── sampled.py │ ├── spatial │ │ ├── commute_distance.py │ │ ├── home │ │ │ ├── locations.py │ │ │ └── zones.py │ │ ├── locations.py │ │ ├── primary │ │ │ ├── candidates.py │ │ │ └── locations.py │ │ └── secondary │ │ │ ├── components.py │ │ │ ├── distance_distributions.py │ │ │ ├── locations.py │ │ │ ├── problems.py │ │ │ └── rda.py │ └── trips.py └── vehicles │ ├── cars │ ├── default.py │ └── fleet_sampling.py │ ├── passengers │ └── default.py │ └── vehicles.py ├── tests ├── __init__.py ├── test_determinism.py ├── test_pipeline.py ├── test_simulation.py └── testdata.py └── version.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.github/workflows/data.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/pr_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.github/workflows/pr_lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.github/workflows/sphinx.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "extra-files": ["README.md"] 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/README.md -------------------------------------------------------------------------------- /analysis/bootstrapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/bootstrapping.py -------------------------------------------------------------------------------- /analysis/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/chains.py -------------------------------------------------------------------------------- /analysis/debug/sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/debug/sc.py -------------------------------------------------------------------------------- /analysis/grid/comparison_flow_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/grid/comparison_flow_volume.py -------------------------------------------------------------------------------- /analysis/marginals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/marginals.py -------------------------------------------------------------------------------- /analysis/methods/income/compare_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/methods/income/compare_methods.py -------------------------------------------------------------------------------- /analysis/reference/census/sociodemographics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/census/sociodemographics.py -------------------------------------------------------------------------------- /analysis/reference/hts/activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/hts/activities.py -------------------------------------------------------------------------------- /analysis/reference/hts/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/hts/chains.py -------------------------------------------------------------------------------- /analysis/reference/hts/commute_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/hts/commute_distance.py -------------------------------------------------------------------------------- /analysis/reference/hts/commute_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/hts/commute_flow.py -------------------------------------------------------------------------------- /analysis/reference/hts/mode_distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/hts/mode_distances.py -------------------------------------------------------------------------------- /analysis/reference/hts/sociodemographics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/hts/sociodemographics.py -------------------------------------------------------------------------------- /analysis/reference/income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/income.py -------------------------------------------------------------------------------- /analysis/reference/od/commute_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/od/commute_distance.py -------------------------------------------------------------------------------- /analysis/reference/od/commute_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/reference/od/commute_flow.py -------------------------------------------------------------------------------- /analysis/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/statistics.py -------------------------------------------------------------------------------- /analysis/synthesis/commute_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/commute_distance.py -------------------------------------------------------------------------------- /analysis/synthesis/commute_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/commute_flow.py -------------------------------------------------------------------------------- /analysis/synthesis/income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/income.py -------------------------------------------------------------------------------- /analysis/synthesis/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/matching.py -------------------------------------------------------------------------------- /analysis/synthesis/mode_distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/mode_distances.py -------------------------------------------------------------------------------- /analysis/synthesis/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/population.py -------------------------------------------------------------------------------- /analysis/synthesis/sociodemographics/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/sociodemographics/chains.py -------------------------------------------------------------------------------- /analysis/synthesis/sociodemographics/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/sociodemographics/general.py -------------------------------------------------------------------------------- /analysis/synthesis/sociodemographics/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/sociodemographics/spatial.py -------------------------------------------------------------------------------- /analysis/synthesis/statistics/marginal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/statistics/marginal.py -------------------------------------------------------------------------------- /analysis/synthesis/statistics/monte_carlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/analysis/synthesis/statistics/monte_carlo.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/config.yml -------------------------------------------------------------------------------- /config_corsica.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/config_corsica.yml -------------------------------------------------------------------------------- /config_full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/config_full.yml -------------------------------------------------------------------------------- /config_lyon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/config_lyon.yml -------------------------------------------------------------------------------- /config_nantes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/config_nantes.yml -------------------------------------------------------------------------------- /config_toulouse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/config_toulouse.yml -------------------------------------------------------------------------------- /containers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/containers/Dockerfile -------------------------------------------------------------------------------- /containers/apptainer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/containers/apptainer.def -------------------------------------------------------------------------------- /data/ban/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/ban/raw.py -------------------------------------------------------------------------------- /data/bdtopo/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/bdtopo/output.py -------------------------------------------------------------------------------- /data/bdtopo/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/bdtopo/raw.py -------------------------------------------------------------------------------- /data/bpe/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/bpe/cleaned.py -------------------------------------------------------------------------------- /data/bpe/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/bpe/raw.py -------------------------------------------------------------------------------- /data/census/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/census/cleaned.py -------------------------------------------------------------------------------- /data/census/filtered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/census/filtered.py -------------------------------------------------------------------------------- /data/census/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/census/projection.py -------------------------------------------------------------------------------- /data/census/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/census/raw.py -------------------------------------------------------------------------------- /data/cutter/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/cutter/geometry.py -------------------------------------------------------------------------------- /data/external/education.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/external/education.py -------------------------------------------------------------------------------- /data/gtfs/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/gtfs/cleaned.py -------------------------------------------------------------------------------- /data/gtfs/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/gtfs/output.py -------------------------------------------------------------------------------- /data/gtfs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/gtfs/utils.py -------------------------------------------------------------------------------- /data/hbefa/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hbefa/raw.py -------------------------------------------------------------------------------- /data/hts/commute_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/commute_distance.py -------------------------------------------------------------------------------- /data/hts/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/comparison.py -------------------------------------------------------------------------------- /data/hts/edgt_44/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_44/cleaned.py -------------------------------------------------------------------------------- /data/hts/edgt_44/filtered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_44/filtered.py -------------------------------------------------------------------------------- /data/hts/edgt_44/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_44/format.py -------------------------------------------------------------------------------- /data/hts/edgt_44/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_44/raw.py -------------------------------------------------------------------------------- /data/hts/edgt_44/reweighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_44/reweighted.py -------------------------------------------------------------------------------- /data/hts/edgt_lyon/cleaned_adisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_lyon/cleaned_adisp.py -------------------------------------------------------------------------------- /data/hts/edgt_lyon/cleaned_cerema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_lyon/cleaned_cerema.py -------------------------------------------------------------------------------- /data/hts/edgt_lyon/filtered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_lyon/filtered.py -------------------------------------------------------------------------------- /data/hts/edgt_lyon/raw_adisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_lyon/raw_adisp.py -------------------------------------------------------------------------------- /data/hts/edgt_lyon/raw_cerema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_lyon/raw_cerema.py -------------------------------------------------------------------------------- /data/hts/edgt_lyon/reweighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/edgt_lyon/reweighted.py -------------------------------------------------------------------------------- /data/hts/egt/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/egt/cleaned.py -------------------------------------------------------------------------------- /data/hts/egt/filtered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/egt/filtered.py -------------------------------------------------------------------------------- /data/hts/egt/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/egt/raw.py -------------------------------------------------------------------------------- /data/hts/emp/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/emp/cleaned.py -------------------------------------------------------------------------------- /data/hts/emp/filtered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/emp/filtered.py -------------------------------------------------------------------------------- /data/hts/emp/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/emp/raw.py -------------------------------------------------------------------------------- /data/hts/emp/reweighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/emp/reweighted.py -------------------------------------------------------------------------------- /data/hts/entd/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/entd/cleaned.py -------------------------------------------------------------------------------- /data/hts/entd/filtered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/entd/filtered.py -------------------------------------------------------------------------------- /data/hts/entd/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/entd/raw.py -------------------------------------------------------------------------------- /data/hts/entd/reweighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/entd/reweighted.py -------------------------------------------------------------------------------- /data/hts/hts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/hts.py -------------------------------------------------------------------------------- /data/hts/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/output.py -------------------------------------------------------------------------------- /data/hts/selected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/hts/selected.py -------------------------------------------------------------------------------- /data/income/municipality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/income/municipality.py -------------------------------------------------------------------------------- /data/income/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/income/region.py -------------------------------------------------------------------------------- /data/od/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/od/cleaned.py -------------------------------------------------------------------------------- /data/od/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/od/raw.py -------------------------------------------------------------------------------- /data/od/weighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/od/weighted.py -------------------------------------------------------------------------------- /data/osm/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/osm/cleaned.py -------------------------------------------------------------------------------- /data/sirene/cleaned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/sirene/cleaned.py -------------------------------------------------------------------------------- /data/sirene/localized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/sirene/localized.py -------------------------------------------------------------------------------- /data/sirene/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/sirene/output.py -------------------------------------------------------------------------------- /data/sirene/raw_geoloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/sirene/raw_geoloc.py -------------------------------------------------------------------------------- /data/sirene/raw_siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/sirene/raw_siren.py -------------------------------------------------------------------------------- /data/sirene/raw_siret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/sirene/raw_siret.py -------------------------------------------------------------------------------- /data/spatial/centroid_distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/centroid_distances.py -------------------------------------------------------------------------------- /data/spatial/codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/codes.py -------------------------------------------------------------------------------- /data/spatial/department_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/department_names.py -------------------------------------------------------------------------------- /data/spatial/departments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/departments.py -------------------------------------------------------------------------------- /data/spatial/iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/iris.py -------------------------------------------------------------------------------- /data/spatial/municipalities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/municipalities.py -------------------------------------------------------------------------------- /data/spatial/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/population.py -------------------------------------------------------------------------------- /data/spatial/urban_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/urban_type.py -------------------------------------------------------------------------------- /data/spatial/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/spatial/utils.py -------------------------------------------------------------------------------- /data/tiles/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/tiles/raw.py -------------------------------------------------------------------------------- /data/vehicles/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/vehicles/raw.py -------------------------------------------------------------------------------- /data/vehicles/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/data/vehicles/types.py -------------------------------------------------------------------------------- /docs/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/.readthedocs.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/cases/cases_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/cases/cases_summary.md -------------------------------------------------------------------------------- /docs/cases/corsica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/cases/corsica.md -------------------------------------------------------------------------------- /docs/cases/lyon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/cases/lyon.md -------------------------------------------------------------------------------- /docs/cases/nantes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/cases/nantes.md -------------------------------------------------------------------------------- /docs/cases/toulouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/cases/toulouse.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/containers/containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/containers/containers.md -------------------------------------------------------------------------------- /docs/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/contents.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/misc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/misc/changelog.md -------------------------------------------------------------------------------- /docs/misc/legal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/misc/legal.md -------------------------------------------------------------------------------- /docs/misc/misc_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/misc/misc_summary.md -------------------------------------------------------------------------------- /docs/misc/old_changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/misc/old_changelog.md -------------------------------------------------------------------------------- /docs/misc/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/misc/roadmap.md -------------------------------------------------------------------------------- /docs/noise/noisemodelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/noise/noisemodelling.md -------------------------------------------------------------------------------- /docs/population/population_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/population/population_analysis.md -------------------------------------------------------------------------------- /docs/population/population_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/population/population_data.md -------------------------------------------------------------------------------- /docs/population/population_execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/population/population_execution.md -------------------------------------------------------------------------------- /docs/population/population_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/population/population_summary.md -------------------------------------------------------------------------------- /docs/population_before.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/population_before.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/simulation/scenario_cutter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/simulation/scenario_cutter.md -------------------------------------------------------------------------------- /docs/simulation/simulation_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/simulation/simulation_data.md -------------------------------------------------------------------------------- /docs/simulation/simulation_execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/simulation/simulation_execution.md -------------------------------------------------------------------------------- /docs/simulation/simulation_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/simulation/simulation_summary.md -------------------------------------------------------------------------------- /docs/via.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/docs/via.png -------------------------------------------------------------------------------- /documentation/info/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/info/collect.py -------------------------------------------------------------------------------- /documentation/info/tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/info/tex.py -------------------------------------------------------------------------------- /documentation/meta_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/meta_output.py -------------------------------------------------------------------------------- /documentation/paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/paper.py -------------------------------------------------------------------------------- /documentation/plots/commute_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/commute_distance.py -------------------------------------------------------------------------------- /documentation/plots/commute_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/commute_flow.py -------------------------------------------------------------------------------- /documentation/plots/data/hts_chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/data/hts_chains.py -------------------------------------------------------------------------------- /documentation/plots/data/hts_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/data/hts_comparison.py -------------------------------------------------------------------------------- /documentation/plots/income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/income.py -------------------------------------------------------------------------------- /documentation/plots/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/language.py -------------------------------------------------------------------------------- /documentation/plots/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/matching.py -------------------------------------------------------------------------------- /documentation/plots/monte_carlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/monte_carlo.py -------------------------------------------------------------------------------- /documentation/plots/secondary_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/secondary_locations.py -------------------------------------------------------------------------------- /documentation/plots/sociodemographics/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/sociodemographics/chains.py -------------------------------------------------------------------------------- /documentation/plots/sociodemographics/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/sociodemographics/general.py -------------------------------------------------------------------------------- /documentation/plots/sociodemographics/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/sociodemographics/local.py -------------------------------------------------------------------------------- /documentation/plots/sociodemographics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/sociodemographics/utils.py -------------------------------------------------------------------------------- /documentation/plots/theory/sampling_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plots/theory/sampling_error.py -------------------------------------------------------------------------------- /documentation/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/plotting.py -------------------------------------------------------------------------------- /documentation/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/documentation/shapes.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/environment.yml -------------------------------------------------------------------------------- /matsim/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/output.py -------------------------------------------------------------------------------- /matsim/runtime/eqasim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/runtime/eqasim.py -------------------------------------------------------------------------------- /matsim/runtime/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/runtime/git.py -------------------------------------------------------------------------------- /matsim/runtime/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/runtime/java.py -------------------------------------------------------------------------------- /matsim/runtime/maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/runtime/maven.py -------------------------------------------------------------------------------- /matsim/runtime/pt2matsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/runtime/pt2matsim.py -------------------------------------------------------------------------------- /matsim/scenario/facilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/facilities.py -------------------------------------------------------------------------------- /matsim/scenario/households.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/households.py -------------------------------------------------------------------------------- /matsim/scenario/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/population.py -------------------------------------------------------------------------------- /matsim/scenario/supply/gtfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/supply/gtfs.py -------------------------------------------------------------------------------- /matsim/scenario/supply/osm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/supply/osm.py -------------------------------------------------------------------------------- /matsim/scenario/supply/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/supply/output.py -------------------------------------------------------------------------------- /matsim/scenario/supply/processed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/supply/processed.py -------------------------------------------------------------------------------- /matsim/scenario/vehicles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/scenario/vehicles.py -------------------------------------------------------------------------------- /matsim/simulation/cutter/cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/simulation/cutter/cut.py -------------------------------------------------------------------------------- /matsim/simulation/cutter/full_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/simulation/cutter/full_run.py -------------------------------------------------------------------------------- /matsim/simulation/emissions/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/simulation/emissions/events.py -------------------------------------------------------------------------------- /matsim/simulation/emissions/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/simulation/emissions/network.py -------------------------------------------------------------------------------- /matsim/simulation/full_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/simulation/full_run.py -------------------------------------------------------------------------------- /matsim/simulation/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/simulation/prepare.py -------------------------------------------------------------------------------- /matsim/simulation/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/simulation/run.py -------------------------------------------------------------------------------- /matsim/writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/matsim/writers.py -------------------------------------------------------------------------------- /noise/runtime/noisemodelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/noise/runtime/noisemodelling.py -------------------------------------------------------------------------------- /noise/simulation/detailed_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/noise/simulation/detailed_network.py -------------------------------------------------------------------------------- /noise/simulation/osm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/noise/simulation/osm.py -------------------------------------------------------------------------------- /noise/simulation/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/noise/simulation/prepare.py -------------------------------------------------------------------------------- /noise/simulation/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/noise/simulation/run.py -------------------------------------------------------------------------------- /scripts/verify_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/scripts/verify_data.py -------------------------------------------------------------------------------- /synthesis/locations/education.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/locations/education.py -------------------------------------------------------------------------------- /synthesis/locations/home/addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/locations/home/addresses.py -------------------------------------------------------------------------------- /synthesis/locations/home/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/locations/home/locations.py -------------------------------------------------------------------------------- /synthesis/locations/home/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/locations/home/output.py -------------------------------------------------------------------------------- /synthesis/locations/secondary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/locations/secondary.py -------------------------------------------------------------------------------- /synthesis/locations/work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/locations/work.py -------------------------------------------------------------------------------- /synthesis/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/output.py -------------------------------------------------------------------------------- /synthesis/population/activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/activities.py -------------------------------------------------------------------------------- /synthesis/population/enriched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/enriched.py -------------------------------------------------------------------------------- /synthesis/population/income/bhepop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/income/bhepop2.py -------------------------------------------------------------------------------- /synthesis/population/income/selected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/income/selected.py -------------------------------------------------------------------------------- /synthesis/population/income/uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/income/uniform.py -------------------------------------------------------------------------------- /synthesis/population/income/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/income/utils.py -------------------------------------------------------------------------------- /synthesis/population/matched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/matched.py -------------------------------------------------------------------------------- /synthesis/population/projection/ipu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/projection/ipu.py -------------------------------------------------------------------------------- /synthesis/population/projection/reweighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/projection/reweighted.py -------------------------------------------------------------------------------- /synthesis/population/sampled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/sampled.py -------------------------------------------------------------------------------- /synthesis/population/spatial/commute_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/commute_distance.py -------------------------------------------------------------------------------- /synthesis/population/spatial/home/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/home/locations.py -------------------------------------------------------------------------------- /synthesis/population/spatial/home/zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/home/zones.py -------------------------------------------------------------------------------- /synthesis/population/spatial/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/locations.py -------------------------------------------------------------------------------- /synthesis/population/spatial/primary/candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/primary/candidates.py -------------------------------------------------------------------------------- /synthesis/population/spatial/primary/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/primary/locations.py -------------------------------------------------------------------------------- /synthesis/population/spatial/secondary/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/secondary/components.py -------------------------------------------------------------------------------- /synthesis/population/spatial/secondary/distance_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/secondary/distance_distributions.py -------------------------------------------------------------------------------- /synthesis/population/spatial/secondary/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/secondary/locations.py -------------------------------------------------------------------------------- /synthesis/population/spatial/secondary/problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/secondary/problems.py -------------------------------------------------------------------------------- /synthesis/population/spatial/secondary/rda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/spatial/secondary/rda.py -------------------------------------------------------------------------------- /synthesis/population/trips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/population/trips.py -------------------------------------------------------------------------------- /synthesis/vehicles/cars/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/vehicles/cars/default.py -------------------------------------------------------------------------------- /synthesis/vehicles/cars/fleet_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/vehicles/cars/fleet_sampling.py -------------------------------------------------------------------------------- /synthesis/vehicles/passengers/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/vehicles/passengers/default.py -------------------------------------------------------------------------------- /synthesis/vehicles/vehicles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/synthesis/vehicles/vehicles.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_determinism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/tests/test_determinism.py -------------------------------------------------------------------------------- /tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/tests/test_pipeline.py -------------------------------------------------------------------------------- /tests/test_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/tests/test_simulation.py -------------------------------------------------------------------------------- /tests/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eqasim-org/ile-de-france/HEAD/tests/testdata.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.3.0 2 | --------------------------------------------------------------------------------