You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note**: Library package names (like `libgdal34`) may vary depending on the base image's Ubuntu/Debian version. Check available packages if you encounter errors.
**Note**: For development, you typically only need the runtime libraries. The Python packages (geopandas, fiona, shapely) use precompiled wheels that already include the necessary bindings. Development headers (`-dev` packages) are only needed if you're compiling these libraries from source.
439
+
435
440
### Testing Geographic Features
436
441
437
442
Use the built-in diagnostic function:
@@ -461,9 +466,10 @@ Automatic integration with existing NetBox models:
461
466
### Common Issues
462
467
463
468
1. **PostGIS not enabled**: Ensure PostGIS extension is installed in your database
464
-
2. **GDAL library missing**: Install system GDAL libraries before Python packages
469
+
2. **GDAL library missing**: Install system GDAL runtime libraries (`gdal-bin`, `libgdal34`) before Python packages
465
470
3. **Path upload fails**: Check file format and ensure it contains LineString geometries
466
471
4. **Map not loading**: Verify JavaScript console for tile layer errors
472
+
5. **Library version mismatch**: If you encounter errors about missing libraries, check that library package names match your OS version (e.g., `libgdal34` vs `libgdal32`)
0 commit comments