A Python library for regularizing building footprints in geospatial data. This library helps clean up and standardize building polygon geometries by aligning edges to principal directions.
Project description
Building Regulariser
A Python library for regularizing building footprints in geospatial data. This library helps clean up and standardize building polygon geometries by aligning edges to principal directions. Built as an open source alternative to the ArcGIS Regularize Building Footprint (3D Analyst) tool.
Example Results
Before and after regularization:
Try in Colab
Overview
Building footprints extracted from remote sensing imagery often contain noise, irregular edges, and geometric inconsistencies. This library provides tools to regularize these footprints by:
- Aligning edges to principal directions (orthogonal and optional 45-degree angles)
- Converting near-rectangular buildings to perfect rectangles
- Converting near-circular buildings to perfect circles
- Simplifying complex polygons while maintaining their essential shape
- Supporting parallel processing for efficient computation with large datasets
- Fine-tune building alignment with neighboring buildings
Inspired by RS-building-regularization, this library takes a geometric approach to building regularization with improvements for usability and integration with the GeoPandas ecosystem.
Installation
pip install buildingregulariser
or
conda install conda-forge::buildingregulariser
or
uv add buildingregulariser
Quick Start
import geopandas as gpd
from buildingregulariser import regularize_geodataframe
# Load your building footprints
buildings = gpd.read_file("buildings.gpkg")
# Regularize the building footprints
regularized_buildings = regularize_geodataframe(
buildings,
)
# Save the results
regularized_buildings.to_file("regularized_buildings.gpkg")
Features
- GeoDataFrame Integration: Works seamlessly with GeoPandas GeoDataFrames
- Polygon Regularization: Aligns edges to principal directions
- 45-Degree Support: Optional alignment to 45-degree angles
- Align with neighboring buildings: Align each building with neighboring buildings
- Circle Detection: Identifies and converts near-circular shapes to perfect circles
- Edge Simplification: Reduces the number of vertices while preserving shape
- Parallel Processing: Utilizes multiple CPU cores for faster processing of large datasets
Usage Examples
Basic Regularization
from buildingregulariser import regularize_geodataframe
import geopandas as gpd
buildings = gpd.read_file("buildings.gpkg")
regularized = regularize_geodataframe(buildings)
Fine-tuning Regularization Parameters
regularized = regularize_geodataframe(
buildings,
parallel_threshold=2.0, # Higher values allow less edge alignment
simplify_tolerance=0.5, # Controls simplification level, should be 2-3 x the raster pixel size
allow_45_degree=True, # Enable 45-degree angles
allow_circles=True, # Enable circle detection
circle_threshold=0.9, # IOU threshold for circle detection
neighbor_alignment=True, # After regularization try to align each building with neighboring buildings
neighbor_search_distance=100, # Search distance around each building when looking for neighbors
neighbor_max_rotation=10, # Maximum rotation allowed to align with neighbors
)
Parameters
- geodataframe: Input GeoDataFrame with polygon geometries
- parallel_threshold: Distance threshold for handling parallel lines (default: 1.0)
- target_crs: Optional CRS (string or
pyproj.CRS) to reproject the input to before regularization (default: None) - simplify: If True, applies simplification to the geometry (default: True)
- simplify_tolerance: Tolerance for simplification (default: 0.5)
- allow_45_degree: If True, allows edges to be oriented at 45-degree angles (default: True)
- diagonal_threshold_reduction: Used to reduce the chance of diagonal edges being generated, can be from 0 to 22.5 (default: 15.0)
- allow_circles: If True, detects and converts near-circular shapes to perfect circles (default: True)
- circle_threshold: Intersection over Union (IoU) threshold for circle detection (default: 0.9)
- num_cores: Number of CPU cores to use for parallel processing; 0 uses all available cores (default: 0)
- include_metadata: Include the main direction, IOU, perimeter and aligned_direction (if used) in output gdf (default: False)
- neighbor_alignment: If True, try to align each building with neighboring buildings (default: False)
- neighbor_search_distance: The distance to find neighboring buildings (default: 100.0)
- neighbor_max_rotation: The maximum allowable rotation to align with neighbors (default: 10)
Returns
- A new GeoDataFrame with regularized polygon geometries
How It Works
- Edge Analysis: Analyzes each polygon to identify principal directions
- Edge Orientation: Aligns edges to be parallel, perpendicular, or at 45 degrees to the main direction
- Circle Detection: Optionally identifies shapes that are nearly circular and converts them to perfect circles
- Edge Connection: Ensures proper connectivity between oriented edges
- Angle Enforcement: Post-processing to ensure target angles are precisely maintained
- Neighbor Alignment: Optionally align each building with neighboring buildings, via rotation around centroid.
License
This project is licensed under the MIT License
Acknowledgments
This library was inspired by the RS-building-regularization project, with improvements for integration with the GeoPandas ecosystem and enhanced regularization algorithms.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file buildingregulariser-0.2.5.tar.gz.
File metadata
- Download URL: buildingregulariser-0.2.5.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fca90766dac1cdf202aca9de91846528a72b6ad4bd2d6b98bc69413324f7094
|
|
| MD5 |
259f8973a59e5b952479f14f1991616a
|
|
| BLAKE2b-256 |
914d9170a1f12b5e0de28b3666c12cc05763cdffd36689d912317bc00310975c
|
Provenance
The following attestation bundles were made for buildingregulariser-0.2.5.tar.gz:
Publisher:
publish.yml on DPIRD-DMA/Building-Regulariser
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
buildingregulariser-0.2.5.tar.gz -
Subject digest:
1fca90766dac1cdf202aca9de91846528a72b6ad4bd2d6b98bc69413324f7094 - Sigstore transparency entry: 1436891855
- Sigstore integration time:
-
Permalink:
DPIRD-DMA/Building-Regulariser@099f1234a89e71328e568c768003a0a44156da99 -
Branch / Tag:
refs/tags/v0.2.5 - Owner: https://github.com/DPIRD-DMA
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@099f1234a89e71328e568c768003a0a44156da99 -
Trigger Event:
push
-
Statement type:
File details
Details for the file buildingregulariser-0.2.5-py3-none-any.whl.
File metadata
- Download URL: buildingregulariser-0.2.5-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a47aba9431309318c6a7dead0ba0e32098b78ad968ff99d9e293a17a6b69c443
|
|
| MD5 |
06b63b5fd0d11ccf969f1bf74068c870
|
|
| BLAKE2b-256 |
45fd052ff368651408a0ec07307fbbaf4b6be943e99637f187d54717d796aac9
|
Provenance
The following attestation bundles were made for buildingregulariser-0.2.5-py3-none-any.whl:
Publisher:
publish.yml on DPIRD-DMA/Building-Regulariser
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
buildingregulariser-0.2.5-py3-none-any.whl -
Subject digest:
a47aba9431309318c6a7dead0ba0e32098b78ad968ff99d9e293a17a6b69c443 - Sigstore transparency entry: 1436891863
- Sigstore integration time:
-
Permalink:
DPIRD-DMA/Building-Regulariser@099f1234a89e71328e568c768003a0a44156da99 -
Branch / Tag:
refs/tags/v0.2.5 - Owner: https://github.com/DPIRD-DMA
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@099f1234a89e71328e568c768003a0a44156da99 -
Trigger Event:
push
-
Statement type: