[Home]
Administrators of the Hydromet portal can manage the public portal. Specifically by:
Documents to be visualised in the feed can be added, edited, deleted using a dedicated Django portal, available at:
https://stlucia.mydewetra.cimafoundation.org/hydromet_api/admin/
Selecting the “Documents” tool, user can add a new document. Document can be added from the local computer. PDF, DOCX, PNG and JPEG can be uploaded. File type can be ”warning” or “document”.
Basic configuration of the script generating the plots and tables can be changed, working on the dedicated .json file:
config_lca.json
{
"sensor_type": ["PLUVIOMETRO", "IDROMETRO", "ANEMOMETRO", "TERMOMETRO"],
"time_period": 48,
"time_frequency": 30,
"time_frequency_prec": 60,
"output_folder": "output",
"save_csv": "True",
"time_zone": "America/St_Lucia"
}
Specifically, the desired time period can be defined as well as the aggregation frequency for the different variables (currently, 60 minutes for rainfall, 30 minutes for the others).
[Home]