π Georama Endpoints¶
This page documents the key endpoints provided by the Georama development setup. These are useful for development, testing, and integration with external tools such as QGIS Desktop.
π Admin & Authentication¶
-
Admin Interface Access the Django admin panel to manage users, layers, permissions, and more. β http://localhost:4242/admin/
-
User Login Page Interface for authenticating standard users (with third-party provider support if enabled). β http://localhost:4242/login
πΊοΈ Web Map Service (WMS)¶
-
WMS Capabilities Retrieves the WMS 1.3.0 service capabilities (layer listing, supported formats, etc.). β
GET
WMS Capabilities -
WMS Endpoint for QGIS Desktop Use this endpoint to connect QGIS to your local Georama WMS service. β
http://localhost:4242/maps
π¦ Web Feature Service (WFS / OGC API Features)¶
- WFS Endpoint for QGIS Desktop
Use this endpoint to access vector data (features) via the OGC API - Features standard (aka WFS 3).
βhttp://localhost:4242/features/
βhttp://localhost:4242/features/openapi
βhttp://localhost:4242/features/conformance
βhttp://localhost:4242/features/collections
π³ Notes on Docker-Based Development¶
All endpoints above assume you're running Georama locally using Docker on the default development port 4242
. If you've mapped ports differently or deployed to a remote host, adjust the URLs accordingly.
β Quick Test Checklist¶
- [ ] Can you log in via
/login
? - [ ] Can you access
/admin/
as a superuser? - [ ] Can QGIS successfully connect to both
/maps
and/features
? - [ ] Do layers appear in the WMS GetCapabilities response?
For additional setup instructions or troubleshooting, see the Quickstart.