urban-worm
Urban-Worm is a Python library that integrates remote sensing imagery, street view data, and multimodal model to assess environments and urban units
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.8%) to scientific vocabulary
Keywords
Repository
Urban-Worm is a Python library that integrates remote sensing imagery, street view data, and multimodal model to assess environments and urban units
Basic Info
- Host: GitHub
- Owner: billbillbilly
- License: mit
- Language: Python
- Default Branch: main
- Homepage: https://land-info-lab.github.io/urbanworm/
- Size: 7.52 MB
Statistics
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 3
- Releases: 17
Topics
Metadata Files
README.md
Urban-Worm
Introduction
Urban-Worm is a Python library that integrates remote sensing imagery, street view data, and vision-language models (VLMs) to assess urban units. Using APIs for data collection and VLMs for inference, Urban-Worm is designed to support the automation of the evaluation for urban environments, including roof integrity, structural condition, landscape quality, and urban perception.
- Free software: MIT license
- Website/Documentation: https://land-info-lab.github.io/urbanworm/
Features
- Run VLMs locally with local datasets and ensure information privacy using Ollama or llama.cpp
- Download building footprints from OSM and global building data released by Bing Maps, with options to filter building footprints by area
- Search and clip aerial and street view images (via APIs) based on urban units such as parcel and building footprint data
- Automatically calibrate the orientation of the panorama street view and the extent of the aerial image
- Visualize results on maps and in tables
- Interact with LLMs through a streaming chat interface to analyze and interpret results
Installation
install Ollama client
Please make sure Ollama is installed before installing urban-worm
For Linux, users can also install ollama by running in the terminal:
sh
curl -fsSL https://ollama.com/install.sh | sh
For MacOS, users can also install ollama using brew:
sh
brew install ollama
To install brew, run in the terminal:
sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Windows users should directly install the Ollama client
install GDAL first
For macOS, Linux, and Windows users, gdal may need to be installed at very begining using conda. Please download and install Anaconda to use conda.
If the installation method above does not work, try to install with conda:
sh
conda install -c conda-forge gdal
Mac users may install gdal (if the installation method below does not work, try to install with conda):
sh
brew install gdal
install the package
The package urabnworm can be installed with pip:
sh
pip install urban-worm
To install the development version from this repo:
sh
pip install -e git+https://github.com/billbillbilly/urbanworm.git#egg=urban-worm
To run more pre-quantized models with vision capabilities, please install pre-built version of llama.cpp: ``` sh
Windows
winget install llama.cpp
Mac and Linux
brew install llama.cpp ``` More information here
More GGUF mdoels can be found at the Hugging Face pages here and here
Usage
single-image inference
```python from urbanworm import UrbanDataSet
data = UrbanDataSet(image = '../docs/data/test1.jpg') system = ''' Given a top view image, you are going to roughly estimate house conditions. Your answer should be based only on your observation. The format of your response must include question, answer (yes or no), explanation (within 50 words) ''' prompt = ''' Is there any damage on the roof? ''' data.oneImgChat(system=system, prompt=prompt)
output:
{'question': 'Is there any damage on the roof?',
'answer': 'no',
'explanation': 'No visible signs of damage or wear on the roof',
'img': '/9j/4AAQSkZ...'}
```
multiple (aerial & street view) images inference using OSM data
```python bbox = (-83.235572,42.348092,-83.235154,42.348806) data = UrbanDataSet() data.bbox2Buildings(bbox)
system = ''' Given a top view image or street view images, you are going to roughly estimate house conditions. Your answer should be based only on your observation. The format of your response must include question, answer (yes or no), explanation (within 50 words) for each question. '''
prompt = { 'top': ''' Is there any damage on the roof? ''', 'street': ''' Is the wall missing or damaged? Is the yard maintained well? ''' }
add the Mapillary key
data.mapillary_key = 'MLY|......'
use both the aerial and street view images (with type='both')
data.loopUnitChat(system=system, prompt=prompt, type='both', epsg=2253)
convert results into GeoDataframe
data.to_gdf() ```
More examples can be found here.
To do
- [x] One-shot learning in each chat method to help the model get familiar with the questions and expected answers
- [ ] Multiple images inference for pairwise comparison and more
- [x] Basic plot method in UrbanDataSet class
- [x] Improve the method dataAnalyst in UrbanDataSet class by adding functionality of feeding a more meaningful introduction of data to LLMs
The next version (v0.2.0) will have: - [ ] agent-based city walk simulation - [ ] A web UI providing interactive operation and data visualization
Legal Notice
This repository and its content are provided for educational purposes only. By using the information and code provided, users acknowledge that they are using the APIs and models at their own risk and agree to comply with any applicable laws and regulations. Users who intend to download a large number of image tiles from any basemap are advised to contact the basemap provider to obtain permission before doing so. Unauthorized use of the basemap or any of its components may be a violation of copyright laws or other applicable laws and regulations.
Acknowledgements
The package is heavily built on the Ollama client, Ollama-python, and llama.cpp. Credit goes to the developers of these projects. - ollama - ollama-python - llama.cpp
The functionality about sourcing and processing GIS data (satellite & street view imagery) and 360-degree street view image processing is built on the following open projects. Credit goes to the developers of these projects. - tms2geotiff - GlobalMLBuildingFootprints - Mapillary API - Equirec2Perspec
The development of this package is supported and inspired by the city of Detroit.
Owner
- Name: Xiaohao Yang
- Login: billbillbilly
- Kind: user
- Location: Ann Arbor, MI
- Website: https://www.xiaohaoy.com/
- Repositories: 3
- Profile: https://github.com/billbillbilly
Graduate researcher assistant @land-info-lab at the School for Environment and Sustainability, University of Michigan
Citation (CITATION.cff)
cff-version: 0.0.1 message: "If you use this software, please cite it as below." authors: - family-names: "Yang" given-names: "Xiaohao" orcid: "https://orcid.org/0000-0003-2030-6624" - family-names: "Tian" given-names: "Aohua" - family-names: "Van Berkel" given-names: "Derek" - family-names: "Lindquist" given-names: "Mark" title: "urban-worm" version: 0.0.16 doi: 10.5281/zenodo.15285331 date-released: 2025-03-19 url: "https://github.com/land-info-lab/urbanworm"
GitHub Events
Total
- Fork event: 3
- Create event: 23
- Issues event: 24
- Release event: 16
- Watch event: 1
- Delete event: 3
- Issue comment event: 8
- Member event: 1
- Public event: 1
- Push event: 138
- Pull request review event: 3
- Pull request review comment event: 23
- Pull request event: 44
Last Year
- Fork event: 3
- Create event: 23
- Issues event: 24
- Release event: 16
- Watch event: 1
- Delete event: 3
- Issue comment event: 8
- Member event: 1
- Public event: 1
- Push event: 138
- Pull request review event: 3
- Pull request review comment event: 23
- Pull request event: 44
Issues and Pull Requests
Last synced: 6 months ago
Packages
- Total packages: 2
-
Total downloads:
- pypi 696 last-month
-
Total dependent packages: 0
(may contain duplicates) -
Total dependent repositories: 0
(may contain duplicates) - Total versions: 38
- Total maintainers: 1
proxy.golang.org: github.com/billbillbilly/urbanworm
- Documentation: https://pkg.go.dev/github.com/billbillbilly/urbanworm#section-documentation
- License: mit
-
Latest release: v0.0.22
published 7 months ago
Rankings
pypi.org: urban-worm
Multimodal Large Language Model (MLLM) for urban environment evaluation.
- Homepage: https://github.com/billbillbilly/urbanworm
- Documentation: https://urban-worm.readthedocs.io/
- License: MIT license
-
Latest release: 0.0.22
published 7 months ago