A Python Toolkit for Urban Resilience and Disaster Risk Management Analytics using High Frequency Human Mobility Data.
mobilkit
provides a set of tools to analyze mobility traces to assess the users response to extreme events.
Try mobilkit
without installing it in a MyBinder notebook:
Full documentation with examples can be found online here, otherwise see the notebooks in docs/examples for a step-by-step coverage of the library or the ones in examples/ for a more detailed showcase of the package's capabilities.
mobilkit
is an active project and any contribution is welcome.
You are encouraged to report any issue or problem encountered while using the software or to seek for support.
If you would like to contribute or add functionalities to mobilkit
, feel free to fork the project, open an issue and contact us.
Start by creating an environment and install mobilkit there.
-
Create an environment
mobilkit
python3 -m venv mobilkit # or, on Windows python -m venv c:\path\to\mobilkit
-
Activate
source mobilkit/bin/activate # or, on Windows c:\path\to\mobilkit\Scripts\activate.bat
-
Update pip
pip install --upgrade pip
-
Install
mobilkit
(this will also installDask
and all the needed modules)pip install mobilkit
-
OPTIONAL to use
mobilkit
on the jupyter notebook-
Activate the virutalenv:
source mobilkit/bin/activate
-
Install jupyter notebook:
pip install jupyter
-
Run jupyter notebook
jupyter notebook
-
(Optional) install the kernel with a specific name to your existing notebook server
source mobilkit/bin/activate pip install ipykernel ipython kernel install --user --name=mobilkit_env
-
If you already have scikit-mobility
installed, skip the environment creation and run these commands from the skmob anaconda environment.
mobilkit
by default will only install core packages needed to run the main functions. There are three optional packages of dipendencies (the mobilkit[complete]
installs everything):
[viz]
will installcontextily
, needed to visualize map backgrounds in certain viz functions;[doc]
will install all the needed packages to build the docs;[skmob]
will installscikit-mobility
as well;[locations]
will also installinfostop
to detect users' typical locations.
TODO
> source activate mobilkit
(mobilkit)> python
>>> import mobilkit
>>>
Several notebooks are found in the docs/examples folder, we resume here the most important ones.
We show the basic usage and functionalities in the mobilkit_tutorial.ipynb notebook.
If you use mobilkit
please cite us:
Enrico Ubaldi, Takahiro Yabe, Nicholas Jones, Maham Faisal Khan, Alessandra Feliciotti, Riccardo Di Clemente, Satish V. Ukkusuri and Emanuele Strano Mobilkit: A Python Toolkit for Urban Resilience and Disaster Risk Management Analytics using High Frequency Human Mobility Data, Journal of Open Source Software, 9, 95, 5201, (2024), Doi: 10.21105/joss.05201
Bibtex:
@article{Ubaldi2024, doi = {10.21105/joss.05201},
url = {https://doi.org/10.21105/joss.05201}, year = {2024}, publisher = {The Open Journal}, volume = {9}, number = {95}, pages = {5201},
author = {Enrico Ubaldi and Takahiro Yabe and Nicholas Jones and Maham Faisal Khan and Alessandra Feliciotti and Riccardo Di Clemente and Satish V. Ukkusuri and Emanuele Strano},
title = {Mobilkit: A Python Toolkit for Urban Resilience and Disaster Risk Management Analytics},
journal = {Journal of Open Source Software}}
This code has been developed by Mindearth, the Global Facility for Disaster Reduction and Recovery (GFDRR) and Purdue University.
Funding was provided by the Spanish Fund for Latin America and the Caribbean (SFLAC) under the Disruptive Technologies for Development (DT4D) program.
The code is released under the MIT license (see the LICENSE file for details).