Open Buildings Extractor
Project description
OBE (Open Buildings Extractor)
A Python package to extract building footprints from multiple open data sources including Google Open Buildings, Microsoft Building Footprints, OpenStreetMap, and Overture Maps.
Example
Run Example Notebook here:
Features
- Extract building footprints from multiple sources:
- Google Open Buildings
- Microsoft Building Footprints
- OpenStreetMap
- Overture Maps
- Support for multiple output formats:
- GeoJSON
- GeoPackage
- Shapefile
- GeoJSONSeq
- GeoParquet
- Command-line
- Python API
- Streamlit web interface
Installation
Using pip:
pip install obe
Using poetry
poetry add obe
Usage
Command line interface
obe --source <source> --input <input.geojson> --output <output.geojson>
Examples:
# Google Open Buildings
obe --source google --input area.geojson --output google_buildings.geojson
# Microsoft Building Footprints (requires location)
obe --source microsoft --input area.geojson --output ms_buildings.geojson --location Nepal
# OpenStreetMap
obe --source osm --input area.geojson --output osm_buildings.geojson
# Overture Maps
obe --source overture --input area.geojson --output overture_buildings.geojson
Python API
from obe.app import download_buildings
# Download buildings from any source
download_buildings(
source="google", # or "microsoft", "osm", "overture"
input_path="area.geojson",
output_path="buildings.geojson",
format="geojson", # or "geopackage", "shapefile", "geojsonseq", "geoparquet"
location=None # required for Microsoft ("Nepal", "India", etc.)
)
Example Input
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[83.96184435207743, 28.212767538129086],
[83.96184435207743, 28.20236573207498],
[83.97605449676462, 28.20236573207498],
[83.97605449676462, 28.212767538129086],
[83.96184435207743, 28.212767538129086]
]
]
}
}
]
}
Example Output
Authors
- Initiated by @kshitijrajsharma
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
obe-0.0.10.tar.gz
(6.4 kB
view details)
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
obe-0.0.10-py3-none-any.whl
(10.4 kB
view details)
File details
Details for the file obe-0.0.10.tar.gz.
File metadata
- Download URL: obe-0.0.10.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.11.14 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be090fab9a55bb27fca5fa9538a3a1bbd410274e178749c6b707c52744959496
|
|
| MD5 |
4e27aac9637b4751ff8abc869382517b
|
|
| BLAKE2b-256 |
e2af7fb109d8afec2fb6130c739bbcdb9533528c84856a2510068a14813885b6
|
File details
Details for the file obe-0.0.10-py3-none-any.whl.
File metadata
- Download URL: obe-0.0.10-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.11.14 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d3c2f4c1948356bfdb2ac16e865a793c6b10ea043e6c54d38dc137e6a1cbc74
|
|
| MD5 |
0812db93b291df23bdf43d7ae9efa314
|
|
| BLAKE2b-256 |
66e2004314f9150fb3e909ac119460b112670c418e5829f348a737dc82adca23
|