Skip to main content

NetBox plugin for physical cable plant infrastructure documentation with GIS capabilities

Project description

netbox-pathways

Under active development -- alpha. netbox-pathways is pre-1.0 and changing fast. Models, migrations, REST/GeoJSON endpoints, and configuration keys may break between releases without deprecation cycles. Pin an exact version in production, expect to read the CHANGELOG before every upgrade, and back up your database before running migrations. Issue reports and PRs are very welcome.

A NetBox plugin for documenting physical cable plant infrastructure with PostGIS integration. Track conduits, aerial spans, structures, and cable routing with geographic data, comparable to SmallWorld or ArcGIS with ArcFM for outside/inside plant documentation.

PyPI Python NetBox CI codecov Documentation Status License: Apache 2.0

Features

  • Structures -- poles, manholes, cabinets, equipment rooms, and more with PostGIS geometry (point or polygon).
  • Pathways -- conduits, aerial spans, direct buried, innerducts, cable trays with PostGIS line geometry.
  • Conduit Banks and Junctions -- model conduit bank configurations and mid-span Y-tees.
  • Cable Routing -- track which NetBox cables traverse which pathways, in sequence.
  • Pull Sheets -- printable cable routing documents for field crews.
  • GeoJSON API -- standard GeoJSON endpoints for QGIS and other GIS clients.
  • QGIS Integration -- style files, project generator, and documentation.
  • Geometry Editing -- draw and edit geometries directly in NetBox forms via Leaflet map widgets.
  • Interactive Map -- built-in Leaflet map for quick visualization.
  • Indoor / Outdoor -- pathways can terminate at structures (outdoor) or NetBox locations (indoor).

Compatibility

Plugin version NetBox version Python PostgreSQL
0.1.x 4.5.3+ 3.12-3.14 16+ with PostGIS 3.4

Installation

NetBox runs on plain PostgreSQL by default. This plugin requires PostGIS, so installing it on an existing NetBox deployment means changing your database setup. The short version is below; see PostGIS Setup in the docs for the full walkthrough (system libraries, container images, migrating an existing database).

1. PostGIS prerequisites

Install the GIS system libraries on every NetBox host (web workers and rq), and PostGIS on the database server:

# Debian / Ubuntu (NetBox host)
sudo apt-get install -y gdal-bin libgdal-dev libgeos-dev libproj-dev binutils

# Database server: PostgreSQL 16+ with the PostGIS 3.4 package, then:
psql -d netbox -c "CREATE EXTENSION IF NOT EXISTS postgis;"

2. Switch NetBox to the PostGIS database backend

In configuration.py, the default DATABASES engine is plain PostgreSQL. Change ENGINE to the PostGIS backend (the standard django.db.backends.postgresql engine appears to work but fails the first time a geometry column is created):

DATABASES = {
    "default": {
        "ENGINE": "django.contrib.gis.db.backends.postgis",  # was django.db.backends.postgresql
        "NAME": "netbox",
        "USER": "netbox",
        "PASSWORD": "...",
        "HOST": "localhost",
        "PORT": "",
        "CONN_MAX_AGE": 300,
    },
}

3. Install the plugin and configure it

pip install netbox-pathways
PLUGINS = ["netbox_pathways"]

PLUGINS_CONFIG = {
    "netbox_pathways": {
        "srid": 3348,           # REQUIRED -- your EPSG code (see SRID warning below)
        "map_center_lat": 45.5, # default map center latitude (optional)
        "map_center_lon": -73.5,# default map center longitude (optional)
        "map_zoom": 10,         # default map zoom level (optional)
    },
}

4. Migrate, collect static, restart

cd /opt/netbox/netbox
python manage.py migrate
python manage.py collectstatic --no-input
sudo systemctl restart netbox netbox-rq

If migrate fails with errors mentioning postgis, gdal, or geos, the database backend is still on plain PostgreSQL or the GIS system libraries are missing on the NetBox host. The PostGIS Setup page covers diagnosis and recovery.

Configuration

SRID is immutable after installation

The srid setting defines the coordinate reference system used for all geometry columns in the database. It is baked into the database schema at migration time.

Changing the SRID after data has been loaded WILL CORRUPT YOUR SPATIAL DATA. PostgreSQL / PostGIS does NOT automatically re-project existing coordinates when the column SRID changes. Geometries will have wrong coordinates in the new CRS with no way to recover them automatically.

Choose your SRID carefully before first deployment. Common choices:

EPSG Name Notes
4326 WGS84 (GPS coordinates, degrees) Global, but distorts distances and areas.
3857 Web Mercator (meters) Used by Google Maps, OSM tiles.
3348 NAD83(CSRS) / Statistics Canada Lambert (m) Good for Canada.
2154 RGF93 / Lambert-93 (meters) Good for France.
32632 WGS84 / UTM zone 32N (meters) Good for central Europe.

If you need to change SRID after deployment, you must manually re-project all geometry data using PostGIS ST_Transform() and update the column SRID definitions. This is an advanced DBA operation; back up everything first.

QGIS quick start

Generate a QGIS project with all layers pre-configured:

python manage.py generate_qgis_project \
    --url https://your-netbox \
    --token your-api-token

Open the generated .qgs file in QGIS. Style files (.qml) ship under static/netbox_pathways/qgis/ and can be loaded via Layer Properties > Style > Load Style.

REST and GeoJSON API

All resources are exposed under /api/plugins/pathways/. GeoJSON variants live under /api/plugins/pathways/geo/ for direct QGIS / OGR consumption. See API Examples for full endpoint coverage.

GraphQL

Every Pathways model is exposed on NetBox's /graphql/ endpoint (single and _list queries: structure, structure_list, pathway, pathway_list, conduit, conduit_list, etc.). Geometry fields are intentionally omitted -- query the GeoJSON REST endpoints for spatial data.

Documentation

Full documentation: jsenecal.github.io/netbox-pathways

Related plugins

netbox-pathways is part of a three-plugin set that models the full optical transport stack:

  • netbox-fms -- Fiber Management System. Defines fiber cable construction (buffer tubes, ribbons, strands), plans splices in closures, and provisions end-to-end fiber circuits. Pathways tracks where cables run; FMS tracks what is inside them and how strands are spliced.
  • netbox-wdm -- WDM (Wavelength Division Multiplexing) device management. Models ITU channel plans, ROADM mappings, and wavelength services that ride on top of the fiber circuits FMS provisions, over the cables routed through Pathways.

Contributing

PRs welcome. Use conventional-commits PR titles (feat:, fix:, chore:, docs:, ...) -- release-drafter assembles release notes from them. Run make setup after cloning to install dev dependencies and the pre-commit hooks (including the AI-attribution-rejecting commit-msg hook).

License

Apache License 2.0.

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

netbox_pathways-0.2.1.tar.gz (380.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

netbox_pathways-0.2.1-py3-none-any.whl (399.4 kB view details)

Uploaded Python 3

File details

Details for the file netbox_pathways-0.2.1.tar.gz.

File metadata

  • Download URL: netbox_pathways-0.2.1.tar.gz
  • Upload date:
  • Size: 380.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for netbox_pathways-0.2.1.tar.gz
Algorithm Hash digest
SHA256 38bd534fe2644dc1b20010df6242da6ca027bef707131862c667d72b20d64ce6
MD5 0794cf1b4119bdbeb13c9f54669e3005
BLAKE2b-256 410a83d7ad4e415e84c0a35440783bf49658b104888c3b4ab7106fdd9cfbc75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for netbox_pathways-0.2.1.tar.gz:

Publisher: publish.yml on jsenecal/netbox-pathways

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file netbox_pathways-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: netbox_pathways-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 399.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for netbox_pathways-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bdab20840251dc63d5d1fc3a1d01126034b9017ce7090cf3a0d7b34b8cb0338a
MD5 ef47db05949e0efeb5fe0752fb0d535f
BLAKE2b-256 25d456c3a2041105ab8fb4e3c63c3cbfa4232168f6a402bea7815e5b5d1ba807

See more details on using hashes here.

Provenance

The following attestation bundles were made for netbox_pathways-0.2.1-py3-none-any.whl:

Publisher: publish.yml on jsenecal/netbox-pathways

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page