smartemission / smartemission

Smart Emission Data Platform - data harvesting, processing and OGC services (WMS, WFS, SOS, STA) for sensor data
http://data.smartemission.nl
GNU General Public License v3.0
9 stars 6 forks source link

Support for Particulate matter (PM10 and PM2.5) from Jose Sensor #64

Closed justb4 closed 6 years ago

justb4 commented 6 years ago

Newer editions of the Jose Sensor also provide Particulate matter, PM10 and PM2.5 indicators values. These are available via the Raw Sensor API. No support is yet available in SE Platform. The following needs to be done to have PM available both in databases and the viewers. Both PM2.5 and PM10 are measured in micro grams/cubic meter.

The indicators already provide values in nanogram, so need to be converted to ug/m3.

unit: "ng/m3",
max: "150000",
label: "PM 10",
min: "0",
name: "s_pm10"
},
{
unit: "ng/m3",
max: "150000",
label: "PM 2.5",
min: "0",
name: "s_pm2_5"
},
justb4 commented 6 years ago

Voor de legenda denk de EEA of RIVM aanhouden, bijv PM10 EEA:

image

En RIVM (heeft geen PM2.5) via http://www.lml.rivm.nl/verwachting/fijnstof.php:

image

En op RIVM https://www.luchtmeetnet.nl/kaart 👍

image

justb4 commented 6 years ago

Here a more definitive index from https://www.luchtmeetnet.nl/uitleg#:

image

The simpler 5-color scheme is:

image

corresponding to:

image

justb4 commented 6 years ago

Considered done, now in maintenance mode.