-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As air quality expert I would like that the automatic computation of the emissions done by an AI model of the Open Data Hub is also applied to a new type of traffic measurement technology, i.e. cameras #38
Comments
Resolve "Update road weather forecasts output" Closes noi-techpark#38 See merge request u-hopper/projects/industrial/open-data-hub-bz/bdp-elaborations!27
@clezag before start this activity, please do the following:
The emission calculation for the cameras should start from 10.07.2023 (the day when the data related to the new cameras where released by A22) |
@rcavaliere The import is currently running in testing with all the changes in place. But it should already be possible to check the sensor type and parameter changes. select s.name, d.json->>'sensor_type', t.cname, m.timestamp from station s
join measurement m on m.station_id = s.id
join metadata d on d.id = s.meta_data_id
join type t on t.id = m.type_id
where t.cname like '%-emissions'
and m.timestamp > to_date('01012023', 'DDMMYYYY')
order by s.stationcode , cname |
With CISMA and u-hopper we have developed an AI model that reads the traffic data of traffic stations and provides as output the emissions generated by traffic. The model is this: https://github.com/noi-techpark/bdp-elaborations/tree/main/pollution_v2
The model currently considers in its white list only "reliable" traffic measurement stations, in particular the one based on the traditional inductive loops technology. A22 has recently introduced new traffic measurement stations based on cameras. Based on deep analysis made with CISMA we found out that the technology is now much more reliable in the past. Therefore the decision, also shared with the BrennerLEC partners, to extend the computation to these kind of stations.
In the code of the elaboration, it's just needed to change this file: https://github.com/noi-techpark/bdp-elaborations/tree/main/pollution_v2/src/dags/common.py You should in particular extend the filter to stations which have sensor_type = camera
Please also check if some adaptations are also needed in the source code, in particular there: https://github.com/noi-techpark/bdp-elaborations/blob/main/pollution_v2/src/validator/Validator.py
The text was updated successfully, but these errors were encountered: