Metadata-Version: 2.1
Name: cml-pam
Version: 0.3.1
Summary: The Population activity Modeller (PAM) is a python API for activity sequence modelling.
Author-email: Fred Shone <fred.shone@arup.com>
Maintainer-email: Michael Fitzmaurice <michael.fitzmaurice@arup.com>, Kasia Kozlowska <kasia.kozlowska@arup.com>, Theodore Chatziioannou <theodore.chatziioannou@arup.com>, Bryn Pickering <17178478+brynpickering@users.noreply.github.com>
License: MIT
Project-URL: repository, https://github.com/arup-group/pam
Project-URL: documentation, https://arup-group.github.io/pam
Project-URL: changelog, https://github.com/arup-group/pam/blob/main/CHANGELOG.md
Keywords: agent-based modelling,sequence model,matsim
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click<9
Requires-Dist: gdal<3.6
Requires-Dist: geopandas<0.14,>=0.13
Requires-Dist: importlib_resources<7,>=6
Requires-Dist: ipykernel<7
Requires-Dist: lxml<5
Requires-Dist: matplotlib<4,>=3
Requires-Dist: numpy<2,>=1
Requires-Dist: pandas<3,>=1.5
Requires-Dist: plotly<6,>=4
Requires-Dist: prettytable<4,>=3
Requires-Dist: python-Levenshtein<0.22,>=0.21
Requires-Dist: rich<14,>=12
Requires-Dist: Rtree<2,>=1
Requires-Dist: s2sphere<0.3
Requires-Dist: scikit-learn<2,>=1.2
Requires-Dist: shapely<3,>=1
Requires-Dist: xlrd<3,>=2
Provides-Extra: dev
Requires-Dist: jupyter<2; extra == "dev"
Requires-Dist: mike<2; extra == "dev"
Requires-Dist: mkdocs<2; extra == "dev"
Requires-Dist: mkdocs-click<0.7; extra == "dev"
Requires-Dist: mkdocs-jupyter<0.25; extra == "dev"
Requires-Dist: mkdocstrings-python<2; extra == "dev"
Requires-Dist: nbmake<2; extra == "dev"
Requires-Dist: pre-commit<4; extra == "dev"
Requires-Dist: pytest<8; extra == "dev"
Requires-Dist: pytest-cov<5; extra == "dev"
Requires-Dist: pytest-mock<4; extra == "dev"
Requires-Dist: pytest-timeout<3; extra == "dev"
Requires-Dist: pytest-xdist<4; extra == "dev"

<!--- the "--8<--" html comments define what part of the README to add to the index page of the documentation -->
<!--- --8<-- [start:docs] -->

![PAM](resources/logos/title.png)

# Population Activity Modeller

![DailyCIbadge](https://github.com/arup-group/pam/actions/workflows/daily-scheduled-ci.yml/badge.svg)
[![](https://github.com/arup-group/pam/actions/workflows/pages/pages-build-deployment/badge.svg?branch=gh-pages)](https://arup-group.github.io/pam)
[![image](https://img.shields.io/badge/Medium-12100E?style=for-the-badge&logo=medium&logoColor=white)](https://medium.com/arupcitymodelling/pandemic-activity-modifier-intro-3d2dccbc716e)

PAM is a python library for population **activity sequence** modelling. Example use cases:

- **Read** an existing population then **write** to a new format.
- **Modify** an existing population, for example to model activity locations.
- **Create** your own activity-based model.

PAM supports common travel and activity formats, including MATSim.

## Activity Sequences?

Population **activity sequences** (sometimes called **activity plans**) are used to model the activities (where and when people are at home, work, education and so on) and associated travel of a population:

 ![PAM](resources/example-activity-plans.png)

Activity sequences are used by transport planners to model travel demand, but can also be used in other domains, such as for virus transmission or energy use modelling.

## Brief History

PAM was originally built and shared to rapidly modify existing activity models to respond to pandemic lock-down scenarios.

 ![PAM](resources/PAM-motivation.png)

This functionality used a **read-modify-write** pattern. Where modifications are made by applying **policies**. Example policies might be (a) infected persons quarantine at home, (b) only critical workers travel to work, and (c) everyone shops locally.

![PAM](resources/PAM-features.png)

## Features

### Activity Modelling

In addition to the original **read-modify-write** pattern and functionality, PAM has modules for:

- location modelling
- discretionary activity modelling
- mode choice modelling
- facility sampling
- vehicle ownership

More generally the core PAM data structure and modules can be used as a library to support your own use cases, including building your own activity-based model.

### MATSim

PAM fully supports the [MATSim](https://www.matsim.org/) population/plans format. This includes vehicles, unselected plans, leg routes and leg attributes. A core use case of PAM is to ***read-modify-write*** *experienced plans* from MATSim. This can allow new MATSim scenarios to be *"warm started"* from existing scenarios, significantly reducing MATSim compute time.

<!--- --8<-- [end:docs] -->
## Documentation

For more detailed instructions, see our [documentation](https://arup-group.github.io/pam/latest).

## Installation

To install PAM, we recommend using the [mamba](https://mamba.readthedocs.io/en/latest/index.html) package manager:

### As a user
<!--- --8<-- [start:docs-install-user] -->
``` shell
mamba create -n pam -c conda-forge -c city-modelling-lab cml-pam
mamba activate pam
```
<!--- --8<-- [end:docs-install-user] -->
### As a developer
<!--- --8<-- [start:docs-install-dev] -->
``` shell
git clone git@github.com:arup-group/pam.git
cd pam
mamba create -n pam -c conda-forge -c city-modelling-lab --file requirements/base.txt --file requirements/dev.txt
mamba activate pam
pip install --no-deps -e .
```
<!--- --8<-- [end:docs-install-dev] -->

### Installing with pip

Installing directly with pip as a user (`pip install cml-pam`) or as a developer (`pip install -e '.[dev]'`) is also possible, but you will need the `libgdal` & `libspatialindex` geospatial non-python libraries pre-installed.

For more detailed instructions, see our [documentation](https://arup-group.github.io/pam/latest/installation/).

## Contributing

There are many ways to make both technical and non-technical contributions to PAM.
Before making contributions to the PAM source code, see our contribution guidelines and follow the [development install instructions](#as-a-developer).

If you are using `pip` to install PAM instead of the recommended `mamba`, you can install the optional test and documentation libraries using the `dev` option, i.e., `pip install -e '.[dev]'`

If you plan to make changes to the code then please make regular use of the following tools to verify the codebase while you work:

- `pre-commit`: run `pre-commit install` in your command line to load inbuilt checks that will run every time you commit your changes.
The checks are: 1. check no large files have been staged, 2. lint python files for major errors, 3. format python files to conform with the [pep8 standard](https://peps.python.org/pep-0008/).
You can also run these checks yourself at any time to ensure staged changes are clean by simple calling `pre-commit`.
- `pytest` - run the unit test suite, check test coverage, and test that the example notebooks successfully run.
- `pytest -p memray -m "high_mem" --no-cov` (not available on Windows) - after installing memray (`mamba install memray pytest-memray`), test that memory and time performance does not exceed benchmarks.

For more information, see our [documentation](https://arup-group.github.io/pam/latest/contributing/coding/).

## Building the documentation

If you are unable to access the online documentation, you can build the documentation locally.
First, [install a development environment of PAM](https://arup-group.github.io/pam/latest/contributing/coding/), then deploy the documentation using [mike](https://github.com/jimporter/mike):

```
mike deploy 0.2
mike serve
```

Then you can view the documentation in a browser at <http://localhost:8000/>.
