BlocksNet is an open-source library that includes methods of modeling urbanized areas for the generation of value-oriented master planning requirements. The library provides tools for generating an information city model based on the accessibility of urban blocks. The library also provides tools for working with the information city model, which allows one: to assess urban network metrics such as connectivity and centrality, to calculate service type provision based on regulatory requirements and to obtain optimal requirements for master planning of territories.
BlocksNet — a library for modeling urban development scenarios (e.g. creating a master plan), supporting the following tools:
- Method for generating a layer of urban blocks is the division of the territory into the smallest elements for the analysis of the urban area - blocks. The method of generating a layer of urban blocks is based on clustering algorithms taking into account additional data on land use.
- Intermodal graph generator and accessibility matrix calculator based on IduEdu library.
- The Universal Information City Model is used to further analyze urban areas and to obtain information on the accessibility of urban blocks. The City Model includes aggregated information on services and buildings, intermodal accessibility, service types hierarchy, and urban blocks.
- Method for accessing the connectivity of the blocks based on intermodal accessibility.
- Methods for assessing urban provision of different types of services with regard to normative requirements and value attitudes of the population. The estimation of provisioning is performed by iterative algorithm on graphs, as well as by solving linear optimization problem.
- Method for computing the function for evaluating the optimality of master planning projects based on the value attitudes of the population and systems of external limitations. The method is based on solving an optimization problem: it is necessary to find an optimal development to increase the provision. The problem is solved with the help of simulated annealing algorithm, user scenarios support is added.
- Method for identifying vacant areas based on open-data.
- Land use prediction based on services within blocks.
- Centrality and diversity assessments, spacematrix morphotypes identification method, integration metric assessment etc.
Main differences from existing solutions:
- The method of generating a layer of urban blocks considers the type of land use, which makes it possible to define limitations for the development of the territory in the context of master planning.
- The universal information city model can be built on open data; the smallest spatial unit for analysis is a block, which makes it possible to analyze on a city scale.
- Provision assessment takes into account the competition element created between residents and services.
- Services optimization algorithm based on simulated annealing supports user-defined scenarios.
- Support for different regulatory requirements.
- Pretty easy to use out of the box. The library is aimed to help students, so it balances between being friendly to non-programmers as well as useful and respective for advanced possible users and contributors.
BlocksNet can be installed with pip
:
pip install blocksnet
Use the library by importing classes from blocksnet
:
from blocksnet import City
Next, use the necessary classes and modules:
city = City( blocks=blocks_gdf, acc_mx=acc_mx, ) city.plot()
For more detailed use case see our examples.
Before running the examples, one can use the data from tests
section
and place it in the examples/data
directory. You can use your own
data, but it must follow the structure described in the
API documentation.
Next examples will help to get used to the library:
- Main pipeline of the library. Includes full
City
model initialization andProvision
assessment. - City blocks generating using
BlocksGenerator
class based on city geometries data. - Accessibility matrix calculation -
using the
AccessibilityProcessor
class. Includes intermodal graph generating for given city blocks. - City model initialization and its methods usage.
The example explains, how to work with
City
model, accessServiceType
orBlock
information etc. Extremely helpful if you want to participate in the developing of BlocksNet. - Provision assessment - how
to assess provision of certain city
ServiceType
, - Development optimization method based on
simulated annealing algorithm. The goal of the method is to optimize the search for master planning
requirements for specific
Block
or the entireCity
in a specific scenario. - Vacant area identifying for a certain city
Block
.
Detailed information and description of BlocksNet is available in documentation.
The latest version of the library is available in the main
branch.
The repository includes the following directories and modules:
- blocksnet
- directory with the library code:
- preprocessing - data preprocessing module
- models - entities' classes used in library
- method - library tool methods based on
City
model - utils - module containing utulity functions and consts
- tests
pytest
testing - examples examples of how methods work
- docs - documentation sources
To start developing the library, one must perform following actions:
Clone the repository:
$ git clone https://github.com/aimclub/blocksnet
(Optional) Create a virtual environment as the library demands exact package versions:
$ make venv
Activate the virtual environment if you created one:
$ source .venv/bin/activate
Install the library in editable mode with development dependencies:
$ make install-dev
Install pre-commit hooks:
$ pre-commit install
Create a new branch based on
develop
:$ git checkout -b develop <new_branch_name>
Start making changes on your newly created branch, remembering to never work on the
master
branch! Work on this copy on your computer using Git to do the version control.Update tests according to your changes and run the following command:
$ make test
Make sure that all tests pass.
Update the documentation and README according to your changes.
- When you're done editing and local testing, run:
$ git add modified_files $ git committo record your changes in Git, then push them to GitHub with:
$ git push -u origin my-contributionFinally, go to the web page of your fork of the BlocksNet repo, and click 'Pull Request' (PR) to send your changes to the maintainers for review.
Check out the Contributing for more information.
The project has BSD-3-Clause license
The library was developed as the main part of the ITMO University project #622280 “Machine learning algorithms library for the tasks of generating value-oriented requirements for urban areas master planning”
You can contact us:
- NCCR - National Center for Cognitive Research
- IDU - Institute of Design and Urban Studies
- Tatiana Churiakova - project manager
- Vasilii Starikov - lead software engineer
Also, you are welcomed to our issues section!