Quickstart

BlocksNet quick start guide

Installation

BlocksNet can be installed with pip:

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

How to use

Then use the library by importing classes from blocksnet:

from blocksnet import City

Next, use the necessary functions and modules:

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