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 -- 0.2.1 4.5.3 -- 4.5.x 3.12-3.14 16+ with PostGIS 3.4+
0.2.2+ 4.5.3+ (incl. 4.6.x) 3.12-3.14 16+ with PostGIS 3.4+

NetBox 4.6 ships Django 6.0. Plugin versions 0.2.1 and earlier do not render the geometry map widget on NetBox 4.6 (issue #52); upgrade to 0.2.2 or later for NetBox 4.6 support.

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.2.tar.gz (381.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.2-py3-none-any.whl (399.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: netbox_pathways-0.2.2.tar.gz
  • Upload date:
  • Size: 381.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.2.tar.gz
Algorithm Hash digest
SHA256 3d3b9e1fef41abdab9df9c73055a35092b7dbc0301958b5aae5f05ebda311711
MD5 fda7d3a200d7d28adc95ea34faa281f0
BLAKE2b-256 d72f763964af74c6d61df8d3a931d2b6b2b9c04b3a8544ce9a839e4a7fb29ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for netbox_pathways-0.2.2.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.2-py3-none-any.whl.

File metadata

  • Download URL: netbox_pathways-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 399.7 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e7d0674750238e0c2ba32d8e887e149fc8f3dfed5e8e8364942352ef0ed226f4
MD5 8cb795a3a996a813870c1381eae11830
BLAKE2b-256 8becc1e15d44c3fda96fd2071b3d3f9ef3b46b4e8fef77342cd138599f8c150b

See more details on using hashes here.

Provenance

The following attestation bundles were made for netbox_pathways-0.2.2-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