https://github.com/arup-group/mc
Making MATSim Configuration fun again
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.0%) to scientific vocabulary
Keywords
Repository
Making MATSim Configuration fun again
Basic Info
Statistics
- Stars: 8
- Watchers: 7
- Forks: 1
- Open Issues: 22
- Releases: 2
Topics
Metadata Files
README.md
Master of Ceremonies
Interfaces for making MATSim configuration less painful.
Modify, generate, diff and debug configs from the command line.
Contents
- Installation
- Usage
- Command Line
- Programming Interface
- Find
- Validation
- Updating MC for config changes
- Tests
- Contact
- Todo
Installation
MC requires python3.5 or above.
sh
git clone git@github.com:arup-group/mc.git
pip3 install -e .
cd mc
virtualenv -p python3.7 venv
source venv/bin/activate
pip3 install -e .
pytest
Although we recomment using a virtual environment as shown above (virtualenv... & source...), MC requirements are minimal so you may get away with your default environment.
Usage
MC has a Command Line Interface (CLI), but also a useful pythonic API for bespoke applications.
The CLI provides a number of features, introduced below. These include some general purpose functionality such as diff, as well as some bespoke features required for other tooling, such as paramreplace, step and autostep.
We are also interested in maintaining a debug command to catch common config mistakes. If you have a feature in mind, such as debugging of a common config mistake please add it to the project issues.
Command Line
The CLI commands are pretty explorable via help, start with mc --help:
```sh Usage: mc [OPTIONS] COMMAND [ARGS]...
Command line interface for MC.
Options: --help Show this message and exit.
Commands: autostep Read config, apply overrides and write out. build Build a config with defined sub-pops, modes & activities. convert Read an existing config and write as xml or json. debug Debug a config. diff Simple diff two configs. fill Read a wildcarded config, apply overrides and write. find Find and print config components to terminal. gen Generate a template config: empty|default|test. matchreplace Read wildcarded config, apply overrides and write. paramreplace Read config, apply overrides and write out. print Print a config to terminal. report Generate a csv report with scoring parameters. step Read config, apply overrides and write out. summary Summarise a config. ```
Print Example
(from MC root)
sh
❯ mc print tests/test_data/test_config.xml
sh
module {'name': 'global'}
param {'name': 'coordinateSystem', 'value': 'EPSG:27700'}
param {'name': 'insistingOnDeprecatedConfigVersion', 'value': 'true'}
param {'name': 'numberOfThreads', 'value': '32'}
param {'name': 'randomSeed', 'value': '4711'}
module {'name': 'network'}
param {'name': 'inputCRS', 'value': 'null'}
param {'name': 'inputChangeEventsFile', 'value': 'null'}
param {'name': 'inputNetworkFile', 'value': '~/test/network.xml'}
param {'name': 'laneDefinitionsFile', 'value': 'null'}
param {'name': 'timeVariantNetwork', 'value': 'false'}
...
Diff Example
(from MC root)
sh
❯ mc diff tests/test_data/test_config.xml tests/test_data/test_config_v12.xml
sh
- param@plans: insistingOnUsingDeprecatedPersonAttributeFile
- param@plans: inputPersonAttributesFile
+/- param@strategy: fractionOfIterationsToDisableInnovation: 0.95 -> 0.9
Find Example
(from MC root)
sh
❯ mc find tests/test_data/test_config.xml coordinateSystem
sh
param {'name': 'coordinateSystem', 'value': 'EPSG:27700'}
You can read about more complex addressing in Find.
Programming Interface
py
from mc import build
To facilitate a beautiful future where humans never need edit xml and machines start to explore MATSim simulation config parameter spaces themselves, MC makes a dictionary-like mc.build.Config object available. Config objects can read and write to MATSim .xml config format (and .json just in case).
py
config = build.Config(path='tests/test_data/test_config.xml')
config.write(path='temp.json')
config2 = build.Config(path='temp.json')
config == config2
py
True
Quick Reminder
MATSim configs consist of modules, these modules can contain either parameters and/or parametersets (ie sets of paramaters). Paramatersets can then contain either parameters and/or more parametersets.
Setting and Getting
Config objects consist of nested Modules, ParamSets and Params (just like a MATSim xml formatted config). All of which will behave like a nested set of dicts. Icluding supporting getting and setting methods:
```py
get and print module contents:
config['plans'].print() ```
py
module {'name': 'plans'}
param {'name': 'inputPlansFile', 'value': 'test_inputs/population.xml'}
param {'name': 'inputPersonAttributesFile', 'value': 'test_inputs/attributes.xml'}
param {'name': 'subpopulationAttributeName', 'value': 'subpopulation'}
py
# set and print a single param:
config['plans']['inputPlansFile'] = 'test_inputs/new_population.xml'
print(config['plans']['inputPlansFile'])
py
test_inputs/new_population.xml
Nested Setting and Getting
Nested setting is allowed, for example for an empty Config a new module, paramset and param
can be set together:
py
empty_config = build.Config()
empty_config['global']['coordinateSystem'] = 'EPSG:27700'
...
empty_config.print()
py
module {'name': 'global'}
param {'name': 'coordinateSystem', 'value': 'EPSG:27700'}
Validation of Keys and Values
Setting requires that keys are valid:
py
empty_config = build.Config()
empty_config['NotAModule']['coordinateSystem'] = 'EPSG:27700'
py
...
KeyError: "key:'NotAModule' not found in modules"
...and that values are valid:
```py empty_config['global']['coordinateSystem'] = {"crs": "27700"}
```
py
INFO creating new empty module: global
ValueError: Please use value of either type ParamSet, Param or str
Nested objects can be explicitly accessed via the parent attributes, ie .modules.values(), .parametersets.values(), params.values(). Valid keys (ignoring suffixes) for nestable
objects via .valid_keys. Note that valid keys and values are hardcoded in mc.valid.
Unique Parameterset Keys
MATSim configurations include parametersets for which the unique identification (such as the mode or subpopulation) is contained as a parameter. So that we can provide unique keys for the parameterset, we therefore suffix parameterset keys as <paramset_name>:<uid> where uid is the appropriate parameterset
subpopulation, mode or activity:
py
empty_config.write(path=Path('temp.xml'))
empty_config['planCalcScore']['scoringParameters:high_income']['modeParams:car']['monetaryDistanceRate'] = '-0.0001'
py
INFO creating new empty module: planCalcScore
INFO creating new empty parameterset: scoringParameters:high_income
INFO creating new empty parameterset: modeParams:car
In this case we have created a scoring parameterset for the high_income subpopulation and a mode parameterset for car.
When writing to .xml these suffixes are ignored, writing a clean usable config. When reading in
an existing config, these suffixes are automatically generated.
WARNING: Not specifying a suffix will generally be assumed as using <paramset_name>:default.
Find
Both the CLI and API support searches for config components using an addressing system. The addressing system uses a string format with / to denote a nested parameterset or parameter. This allows changes to be easilly passed as commands via common web interfaces for example.
py
config = build.Config(path='tests/test_data/test_config.xml')
search = config.find("plans/inputPlansFile")
for i in search:
i.print()
py
param {'name': 'inputPlansFile', 'value': '~/test/population.xml.gz'}
Find is returning a list because it supports partial addresses which result in multiple finds:
py
search = config.find("modeParams:car/monetaryDistanceRate")
for i in search:
i.print()
py
param {'name': 'monetaryDistanceRate', 'value': '-0.0001'} # eg subpopulation A
param {'name': 'monetaryDistanceRate', 'value': '-0.0001'} # eg subpopulation B
Addresses can omit components, for example if we want to look at all monetaryDistanceRates for the default subpopulation (ie from scoringParameters:default):
```py search = config.find("scoringParameters:default/monetaryDistanceRate")
this is equivalent to "/scoringParameters:default//monetaryDistanceRate"
for i in search: i.print() ```
py
param {'name': 'monetaryDistanceRate', 'value': '-0.0'} # eg walk
param {'name': 'monetaryDistanceRate', 'value': '-0.0'} # eg bike
param {'name': 'monetaryDistanceRate', 'value': '-0.001'} # eg pt
param {'name': 'monetaryDistanceRate', 'value': '-0.0001'} # eg car
Or more simply we can get all monetaryDistanceRates:
```py search = config.find("monetaryDistanceRate")
this is equivalent to "//*/monetaryDistanceRate"
this is equivalnet to "/scoringParameters:/modeParams:*/monetaryDistanceRate"
for i in search: i.print() ```
py
param {'name': 'monetaryDistanceRate', 'value': '-0.0'} # eg subpop A walk
param {'name': 'monetaryDistanceRate', 'value': '-0.0'} # eg subpop A bike
param {'name': 'monetaryDistanceRate', 'value': '-0.001'} # subpop A eg pt
param {'name': 'monetaryDistanceRate', 'value': '-0.0001'} # subpop A eg car
param {'name': 'monetaryDistanceRate', 'value': '-0.0'} # eg subpop B walk
param {'name': 'monetaryDistanceRate', 'value': '-0.0'} # eg subpop B bike
param {'name': 'monetaryDistanceRate', 'value': '-0.001'} # eg subpop B pt
param {'name': 'monetaryDistanceRate', 'value': '-0.0001'} # eg subpop B car
In the examples above, you can see that wildcarding with * can be used to return 'all' config elements. The * operator tells the find method to search all at a given level. As shown above, it is useful for returning all elements within a parameterset or explicitly describing levels to search.
Find and Set
Note that the find method is returning a reference to the found config objects, which can then be set:
py
config.find("plans/inputPlansFile")[0] = "NEW/PATH"
Validation
MC has a built-in representation of a valid config structure, specifically the viable names of modules, parametersets and parameters. When reading in an existing config or adding new components, MC will throw validation errors if the valid config structure is not maintained.
py
empty_config = build.Config()
empty_config['NotAModule']['coordinateSystem'] = 'EPSG:27700'
py
...
KeyError: "key:'NotAModule' not found in modules"
This system is useful for preventing typos, but has to be
maintained and updated for changes to valid configs. The valid mapping is described in the mc.valid module.
Report
The CLI supports to generate a CSV report for summarising the scoring parameters for different modes and subpopulations in a tabular format from a given MATSim config.
py
mc report <MATSIM_CONFIF><OUTPUT_DIR>
mc report tests/test_data/test_config.xml tests/test_data
``` mode:car,bus,train,walk,bike
| subpopulation | default | unknown |
| car | | |
| marginalUtilityOfMoney | 0.0 | 0.0 |
| performing | 6.0 | 6.0 |
| utilityOfLineSwitch | -1.0 | -1.0 |
| modespecificconstant | 0.0 | 0.0 |
| marginalutilityof_distance | 0.0 | 0.0 |
|marginalutilityof_traveling | -6.0 | -6.0 |
| monetarydistancerate | -0.0 | -0.0 |
```
Updating MC for Config Changes
An example of how to update the validation mapping can be seen with the addition of a new hermes module:
xml
<module name="hermes" >
<param name="endTime" value="32:00:00" />
<param name="flowCapacityFactor" value="0.01" />
<param name="mainMode" value="car" />
...
</module>
In order to make this hermes module available to MC's validation, the following is added to mc/valid.py:
json
"hermes": {
"params": {
"mainMode": "car",
"endTime": "36:00:00",
"flowCapacityFactor": "0.01",
...
}
},
Tests
sh
python -m pytest -vv tests
To generate XML & HTML coverage reports to reports/coverage:
sh
./scripts/code-coverage.sh
Contact
fred.shone@arup.com
Further Work
- Add more and better debugging
- Update default configurations
- Print a high level summary to terminal (scaling/subpops, modes etc)
- Add detailed value validation, for example acceptable integer ranges
- Add further debugging by comparing config to other inputs such as transit schedules
Owner
- Name: Arup
- Login: arup-group
- Kind: organization
- Email: media@arup.com
- Website: https://www.arup.com/
- Repositories: 168
- Profile: https://github.com/arup-group
We Shape a Better World
GitHub Events
Total
- Issues event: 3
- Watch event: 2
- Issue comment event: 1
- Push event: 4
Last Year
- Issues event: 3
- Watch event: 2
- Issue comment event: 1
- Push event: 4
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 23
- Total pull requests: 53
- Average time to close issues: 3 months
- Average time to close pull requests: 15 days
- Total issue authors: 5
- Total pull request authors: 10
- Average comments per issue: 0.52
- Average comments per pull request: 1.19
- Merged pull requests: 44
- Bot issues: 0
- Bot pull requests: 2
Past Year
- Issues: 2
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- fredshone (9)
- mfitz (6)
- syhwawa (4)
- gac55 (3)
- andkay (1)
Pull Request Authors
- fredshone (21)
- rorysedgwick (11)
- mfitz (6)
- syhwawa (5)
- gac55 (2)
- dependabot[bot] (2)
- jademackay (1)
- andkay (1)
- KasiaKoz (1)
- arup-sb (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- Click ==7.1.2
- flake8 >=3.0.0
- lxml ==4.9.1
- prettytable ==3.3.0
- pytest >=6.0.0
- pytest-cov >=2.0.0
- setuptools ==56.0.0
- typing ==3.7.4
- actions/cache v1 composite
- actions/checkout v2 composite
- actions/setup-python v1 composite
- aws-actions/configure-aws-credentials v1 composite
- rtCamp/action-slack-notify v2.0.0 composite
- python 3.8-slim build