The sidebar interface

SciGraphs adds three tabs to the 3D Viewport sidebar (press N to toggle). Each tab groups a set of panels, and panels contain collapsible subpanels.

Tab Purpose
SciGraphs Core combinatorial workflow: import, layout, algorithms, analysis, visualization, export, reproducibility.
OSMnx Download and analyze OpenStreetMap street networks.
City2Graph Build heterogeneous urban graphs (morphology, proximity, transport, metapaths).

SciGraphs tab

SciGraphs
├── Data                          → panels/scigraphs/data.qmd
│   ├── Geospatial Options
│   └── Temporal Data
├── Layout & Positioning          → panels/scigraphs/layout.qmd
│   ├── Algorithm Selection
│   ├── Quick Settings
│   ├── Interactive Mode
│   ├── Algorithm Parameters
│   └── Network Splitter 3D
├── Graph Algorithms              → panels/scigraphs/algorithms.qmd
│   ├── Traversal
│   ├── Pathfinding
│   ├── Spanning Trees
│   └── Network Flow
├── Analysis                      → panels/scigraphs/analysis.qmd
│   ├── Centrality Metrics
│   ├── Community Detection
│   ├── Directed Analysis
│   │   ├── Directed Centrality
│   │   ├── Structure Analysis
│   │   └── Flow Analysis
│   ├── Statistical Analysis
│   └── Topological Analysis
│       ├── Surface Embedding
│       └── Results Summary
├── Visualization                 → panels/scigraphs/visualization.qmd
│   ├── Appearance
│   ├── Scene Setup
│   ├── Edge Style
│   └── Text Labels
└── Export & Tools                → panels/scigraphs/export.qmd
    ├── Export Options
    └── Utilities

Reproducibility (top-level)        → panels/scigraphs/reproducibility.qmd

OSMnx tab

OSMnx
├── Download
├── Graph Operations
├── Network Attributes
├── Routing & Paths
├── Accessibility
├── Statistics & Centrality
├── Features & POIs
├── Elevation & Terrain
└── IO / Export

See the OSMnx reference.

City2Graph tab

City2Graph
├── Data Import
├── Urban Morphology
├── Transportation
├── Mobility (OD Matrix)
├── Graph Tools
├── GeoAI Export
├── Proximity Graphs
│   ├── Single-Layer Graphs
│   ├── Multi-Layer Graphs
│   ├── Group Nodes (Polygon → Point)
│   ├── Advanced Settings
│   └── Visualization
└── Metapath Analysis

See the City2Graph reference.

Conventions used in the Panel Reference

Every panel page describes what the panel does, when it appears (some are conditional), a table of every field, toggle and button, and the recommended order of operations.

Note

Many panels stay hidden until they are relevant. Network Flow and Directed Analysis appear only when the active object is a directed graph, and Geospatial Options and Temporal Data only once a file is loaded or SQL columns are available.

Back to top