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 interface
- 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]
]
]
}
}
]
}
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.4.tar.gz
(6.1 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.4-py3-none-any.whl
(10.1 kB
view details)
File details
Details for the file obe-0.0.4.tar.gz.
File metadata
- Download URL: obe-0.0.4.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.11.11 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad0cb6a28ae26b9331031a83e70a3d3377a743c394c9a00c44bc58eb3ce51009
|
|
| MD5 |
e16a982c5f32566035d8af1396570f2f
|
|
| BLAKE2b-256 |
c233f473e3c28797bd85c90d076f27e738c9ba411e25e0082ee61a52f76b2555
|
File details
Details for the file obe-0.0.4-py3-none-any.whl.
File metadata
- Download URL: obe-0.0.4-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.11.11 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac38743d3841f7ec0edf6847490ecf9d5c63bcf320ba85c10c7fb79df822b32e
|
|
| MD5 |
a93e2a10618f5dba29750589a20e1ae4
|
|
| BLAKE2b-256 |
3101fda00961121dbaee4c99a98966250bfdecd4d38291d217b2d8abb13904ab
|