https://github.com/c2g-dev/city2graph
Transform geospatial relations into graph representations designed for spatial analysis and Graph Neural Networks (GNNs).
https://github.com/c2g-dev/city2graph
geoai geographic-data-science geographical-information-system geospatial-analysis gis gnn graph-neural-networks graph-representation-learning mobility network-analysis overturemaps pyg pytorch pytorch-geometric spatial-analysis transportation urban-morphometrics
Last synced: about 1 month ago
JSON representation
Transform geospatial relations into graph representations designed for spatial analysis and Graph Neural Networks (GNNs).
- Host: GitHub
- URL: https://github.com/c2g-dev/city2graph
- Owner: c2g-dev
- License: bsd-3-clause
- Created: 2025-01-17T16:13:41.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-04T16:04:49.000Z (about 1 month ago)
- Last Synced: 2025-09-04T17:36:18.977Z (about 1 month ago)
- Topics: geoai, geographic-data-science, geographical-information-system, geospatial-analysis, gis, gnn, graph-neural-networks, graph-representation-learning, mobility, network-analysis, overturemaps, pyg, pytorch, pytorch-geometric, spatial-analysis, transportation, urban-morphometrics
- Language: Python
- Homepage: https://city2graph.net
- Size: 246 MB
- Stars: 81
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# city2graph: GeoAI with Graph Neural Networks (GNNs) and Spatial Network Analysis
[](http://city2graph.net/_static/social_preview.png)
**city2graph** is a Python library for converting geospatial datasets into graph representations, providing an integrated interface for [GeoPandas](https://geopandas.org/), [NetworkX](https://networkx.org/), and [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/) across multiple domains (e.g. streets, transportations, OD matrices, POI proximities, etc.). It enables researchers and practitioners to seamlessly develop advanced GeoAI and geographic data science applications. For more information, please visit the [documentation](https://city2graph.net).
[](https://badge.fury.io/py/city2graph/) [](https://anaconda.org/conda-forge/city2graph/) [](https://pepy.tech/projects/city2graph) [](https://doi.org/10.5281/zenodo.15858845) [](https://github.com/c2g-dev/city2graph/blob/main/LICENSE)
[](https://anaconda.org/conda-forge/city2graph) [](https://codecov.io/gh/c2g-dev/city2graph) [](https://github.com/astral-sh/ruff)## Features
[](http://city2graph.net/_static/scope.png)
- **Graph Construction for GeoAI:** Build graphs from diverse urban datasets, including buildings, streets, and land use, to power GeoAI and GNN applications.
- **Transportation Network Modeling:** Analyze public transport systems (buses, trams, trains) by constructing detailed transportation graphs with support of GTFS format.
- **Proximity and Contiguity Analysis:** Create graphs based on spatial proximity and adjacency for applications in urban planning and environmental analysis.
- **Mobility Flow Analysis:** Model and analyze urban mobility patterns from various data sources like bike-sharing, migration, and pedestrian flows.
- **PyTorch Geometric Integration:** Seamlessly convert geospatial data into PyTorch tensors for GNNs.## Installation
### Using pip
#### Basic Installation
The simplest way to install city2graph is via pip:
```bash
pip install city2graph
```This installs the core functionality without PyTorch and PyTorch Geometric.
#### With PyTorch (CPU)
If you need the Graph Neural Networks functionality, install with the `cpu` option:
```bash
pip install "city2graph[cpu]"
```This will install PyTorch and PyTorch Geometric with CPU support, suitable for development and small-scale processing.
#### With PyTorch + CUDA (GPU)
For GPU acceleration, you can install city2graph with a specific CUDA version extra. For example, for CUDA 12.8:
```bash
pip install "city2graph[cu128]"
```Supported CUDA versions are `cu118`, `cu124`, `cu126`, and `cu128`.
### Using conda
#### Basic Installation
You can also install city2graph using conda from conda-forge:
```bash
conda install -c conda-forge city2graph
```This installs the core functionality without PyTorch and PyTorch Geometric.
#### With PyTorch (CPU)
To use PyTorch and PyTorch Geometric with city2graph installed from conda-forge, you need to manually add these libraries to your environment:
```bash
# Install city2graph
conda install -c conda-forge city2graph# Then install PyTorch and PyTorch Geometric
conda install -c conda-forge pytorch pytorch_geometric
```#### With PyTorch + CUDA (GPU)
For GPU support, you should select the appropriate PyTorch variant by specifying the version and CUDA build string. For example, to install PyTorch 2.7.1 with CUDA 12.8 support:
```bash
# Install city2graph
conda install -c conda-forge city2graph# Then install PyTorch with CUDA support
conda install -c conda-forge pytorch=2.7.1=*cuda128*
conda install -c conda-forge pytorch_geometric
```You can browse available CUDA-enabled builds on the [conda-forge PyTorch files page](https://anaconda.org/conda-forge/pytorch/files) and substitute the desired version and CUDA variant in your install command. Make sure that the versions of PyTorch and PyTorch Geometric you install are compatible with each other and with your system.
**⚠️ Important:** conda is not officially supported by PyTorch and PyTorch Geometric anymore, and only conda-forge distributions are available for them. We recommend using pip or uv for the most streamlined installation experience if you need PyTorch functionality.
## For Development
If you want to contribute to city2graph, you can set up a development environment using `uv`.
```bash
# Install uv if you haven't already done it
curl -LsSf https://astral.sh/uv/install.sh | sh# Clone the repository
git clone https://github.com/c2g-dev/city2graph.git
cd city2graph# Install development dependencies with a PyTorch variant (e.g., cpu or cu128)
uv sync --extra cpu --group dev
```You can then run commands within the managed environment:
```bash
# Add IPython kernel for interactive development
uv run ipython kernel install --name "your-env-name" --user# Or start Jupyter Notebook
uv run jupyter notebook
```### Development Environment
The development dependencies include:
- `ipython`: Enhanced interactive Python shell with Jupyter kernel support
- `jupyter` and `notebook`: For running Jupyter notebooks with project-specific kernel
- `isort`: Code formatting tools
- `pytest` and `pytest-cov`: Testing toolsThe Jupyter kernel installation ensures that when you start Jupyter notebooks, you can select the "city2graph" kernel which has access to all your project dependencies in the correct virtual environment.
### Using Docker Compose
Before using Docker Compose, ensure you have Docker and Docker Compose installed on your system:
```bash
# Check Docker installation
docker --version# Check Docker Compose installation
docker compose version
```If these commands don't work, you need to install Docker first:
- For macOS: Install [Docker Desktop](https://www.docker.com/products/docker-desktop)
- For Linux: Follow the [installation instructions](https://docs.docker.com/engine/install/) for your specific distribution
- For Windows: Install [Docker Desktop](https://www.docker.com/products/docker-desktop)Once Docker is installed, clone the repository and start the containers:
```bash
# Clone the repository
git clone https://github.com/yu-ta-sato/city2graph.git
cd city2graph# Build and run in detached mode
docker compose up -d# Access Jupyter notebook at http://localhost:8888
# Stop containers when done
docker compose down
```You can customize the services in the `docker-compose.yml` file according to your needs.
## Citation
If you use city2graph in your research, please cite it as follows:
```bibtex
@software{sato2025city2graph,
title = {city2graph: Transform geospatial relations into graphs for spatial network analysis and Graph Neural Networks},
author = {Sato, Yuta},
year = {2025},
url = {https://github.com/c2g-dev/city2graph},
doi = {10.5281/zenodo.15858845},
version = {0.1.1}
}
```You can also use the DOI to cite a specific version: [](https://doi.org/10.5281/zenodo.15858845)
Alternatively, you can find the citation information in the [CITATION.cff](CITATION.cff) file in this repository, which follows the Citation File Format standard.
## Contributing
We welcome contributions to the city2graph project! To contribute:
1. **Fork and clone the repository:**
```bash
git clone https://github.com//city2graph.git
cd city2graph
git remote add upstream https://github.com/c2g-dev/city2graph.git
```2. **Set up the development environment:**
```bash
uv sync --group dev --extra cpu
source .venv/bin/activate # On Windows: .venv\Scripts\activate
```3. **Create a feature branch:**
```bash
git checkout -b feature/your-feature-name
```4. **Make your changes and test:**
```bash
# Run pre-commit checks
uv run pre-commit run --all-files# Run tests
uv run pytest --cov=city2graph --cov-report=html --cov-report=term
```5. **Submit a pull request** with a clear description of your changes.
For detailed contributing guidelines, code style requirements, and documentation standards, please see our [Contributing Guide](docs/source/contributing.rst).
## Code Quality
We maintain strict code quality standards using:
- **Ruff**: For linting and formatting
- **mypy**: For static type checking
- **numpydoc**: For docstring style validationAll contributions must pass pre-commit checks before being merged.
[](https://www.liverpool.ac.uk/geographic-data-science/)