Overview

Data Upload & Administration

How data managers upload GeoTIFF rasters and CSV files, and how administrators access the Django admin panel.


Admin Panel

The Django admin panel is available at /admin/. Staff users with the appropriate permissions can manage all data models, threshold configurations, notification recipients, and guide content from this interface.

Manual Upload

Several modules provide an Upload button on their main page. Clicking it opens an upload form where you can submit GeoTIFF raster files (for spatial data) or CSV/Excel files (for tabular data). Uploaded files are processed server-side — zonal statistics are calculated and stored in the database automatically.

Automated Collection

Most data is collected automatically via management commands scheduled as cron jobs or triggered from the Collector module at /collector/. Each data source has a dedicated command (e.g., collect_rainfall, collect_displacement). Refer to individual module guides for the specific command name.

Collector Interface

Administrators can trigger a collection run from the browser at /collector/collect/<id>/ where <id> is the DataSource ID configured in the admin panel.