aimclub / blocksnet

Open library with tools for generation the city model and optimal requirements for future development with specified target parameters

Home Page:https://blocknet.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BlocksNet

BlocksNet logo

Documentation Status PythonVersion Black Readme_ru

BlocksNet is an open-source library that includes methods of modeling urbanized areas for the generation of value-oriented master planning requirements. The library is provided for generating a universal information city model based on the accessibility of urban blocks. The library also provides tools for working with the information city model, which allow: to generate a layer of urban blocks, to calculate provisioning based on regulatory requirements, to obtain optimal requirements for master planning of territories.

Features

BlocksNet — a library for modeling urban development scenarios (e.g. creating a master plan), supporting the following tools:

  1. 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.
  2. Method for generating an intermodal city graph based on open-data. The intermodal graph includes the information about public transport and pedestrian routes to better analyze city mobility.
  3. 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.
  4. Method for accessing the connectivity of the blocks based on intermodal accessibility.
  5. 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.
  6. 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 genetic algorithm, user scenarios support is added.
  7. Method for identifying vacant areas based on open-data.

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.
  • Not only normative documents are taken into account when assessing provision, but also the value attitudes of the population.
  • Genetic algorithm for optimization of development supports user-defined scenarios.
  • Support for different regulatory requirements.

Installation

BlocksNet can be installed with pip:

pip install git+https://github.com/iduprojects/blocksnet

How to use

Use the library by importing classes from blocksnet:

from blocksnet import City

Next, use the necessary classes and modules:

city = City(
   blocks_gdf=blocks,
   adjacency_matrix=adj_mx
)
city.plot()

For more detailed use case see our examples.

Data

Before running the examples, you must download the input data 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.

Examples

Next examples will help to get used to the library:

  1. Main pipeline of the library. Includes full City model initialization and Genetic optimization.
  2. City blocks generating using BlocksGenerator class based on city geometries data.
  3. Intermodal graph generating - using GraphGenerator class. Includes adjacency matrix calculating using AdjacencyCalculator for given city blocks.
  4. City model initialization and its methods usage. The example explains, how to work with City model, access ServiceType or Block information etc. Extremely helpful if you want to participate in developing.
  5. Provision assessment - how to assess provision of certain city ServiceType,
  6. Development optimization method based on genetic algorithm. The goal of the method is to optimize the search for master planning requirements for a specific Block or the entire City in a specific scenario.
  7. Vacant area identifying for a certain city Block.

Documentation

Detailed information and description of BlocksNet is available in documentation.

Project Structure

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 on City model
    • utils - module for helping functions and consts
  • tests pytest testing
  • examples examples of how methods work
  • docs - ReadTheDocs documentation

Developing

To start developing the library, one must perform following actions:

  1. Clone the repository:

    $ git clone https://github.com/aimclub/blocksnet
    
  2. (Optional) Create a virtual environment as the library demands exact package versions:

    $ python -m venv venv
    

    Activate the virtual environment if you created one.

  3. Install the library in editable mode with development dependencies:

    $ make install-dev
    
  4. Install pre-commit hooks:

    $ pre-commit install
    
  5. Create a new branch based on develop:

    $ git checkout -b develop <new_branch_name>
    
  6. 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.

  7. Update tests according to your changes and run the following command:

    $ make test
    

    Make sure that all tests pass.

  8. Update the documentation and README files according to your changes.

  1. When you're done editing and local testing, run:
$ git add modified_files
$ git commit

to record your changes in Git, then push them to GitHub with:

$ git push -u origin my-contribution

Finally, 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 on ReadTheDocs for more information.

License

The project has BSD-3-Clause license

Acknowledgments

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”

Contacts

You can contact us:

Publications

Published:

About

Open library with tools for generation the city model and optimal requirements for future development with specified target parameters

https://blocknet.readthedocs.io/en/latest/

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 99.7%Language:Makefile 0.3%