saerbeck query

This commit is contained in:
Wolfgang Hottgenroth 2024-11-11 12:45:47 +01:00
parent 3d68aa0e61
commit 830596f211
Signed by: wn
GPG Key ID: 18FDFA577A8871AD

View File

@ -10,14 +10,34 @@ create or replace view badesee_temperature_v as
where application = 'de-hottis-saerbeck-monitoring' and where application = 'de-hottis-saerbeck-monitoring' and
device = 'eui-a84041318187ec13'; device = 'eui-a84041318187ec13';
create or replace view cubecell_threeway_temperature_v as create or replace view cubecell_threeway_temperature2_v as
select time, select time,
cast(values->'Temperature1'->>'value' as float) as Temp1, cast(values->'Temperature2'->>'value' as float) as value,
cast(values->'Temperature2'->>'value' as float) as Temp2, values->'Temperature2'->>'label' as label
cast(values->'Temperature3'->>'value' as float) as Temp3,
device
from measurements from measurements
where application = 'de-hottis-saerbeck-monitoring' and where application = 'de-hottis-saerbeck-monitoring' and
device = 'eui-70b3d57ed0068fa4'; device = 'eui-70b3d57ed0068fa4';
create or replace view cubecell_threeway_temperature1_v as
select time,
cast(values->'Temperature1'->>'value' as float) as value,
values->'Temperature1'->>'label' as label
from measurements
where application = 'de-hottis-saerbeck-monitoring' and
device = 'eui-70b3d57ed0068fa4';
create or replace view cubecell_threeway_temperature3_v as
select time,
cast(values->'Temperature3'->>'value' as float) as value,
values->'Temperature3'->>'label' as label
from measurements
where application = 'de-hottis-saerbeck-monitoring' and
device = 'eui-70b3d57ed0068fa4';
create or replace view cubecell_threeway_battery_v as
select time,
cast(values->'Battery'->>'value' as float) as value,
values->'Battery'->>'label' as label
from measurements
where application = 'de-hottis-saerbeck-monitoring' and
device = 'eui-70b3d57ed0068fa4';