@golemio/flow 1.2.6-dev.960416138 → 1.2.6-dev.985218732
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db/example/02_countersData.sql +75 -75
- package/db/example/03_flowData.sql +312 -312
- package/db/migrations/postgresql/20230828124542-replace-bigint-timestamps.js +53 -0
- package/db/migrations/postgresql/sqls/20230828124542-replace-bigint-timestamps-down.sql +608 -0
- package/db/migrations/postgresql/sqls/20230828124542-replace-bigint-timestamps-up.sql +567 -0
- package/dist/integration-engine/FlowWorker.js +5 -5
- package/dist/integration-engine/FlowWorker.js.map +1 -1
- package/dist/integration-engine/transformations/EcoCounterMeasurementsTransformation.js +2 -2
- package/dist/integration-engine/transformations/EcoCounterMeasurementsTransformation.js.map +1 -1
- package/dist/schema-definitions/index.d.ts +7 -0
- package/dist/schema-definitions/index.js +14 -14
- package/dist/schema-definitions/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -17,327 +17,327 @@ INSERT INTO flow_cubes (id,"name",create_batch_id,created_at,created_by,update_b
|
|
|
17
17
|
(13,'Stromovka u Vystaviste',NULL,'2021-03-16 13:19:35.348+01',NULL,NULL,'2022-06-23 11:43:00.031+02',NULL);
|
|
18
18
|
|
|
19
19
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
20
|
-
(8,'GATE 2 - k Výstavišti - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
21
|
-
(3,'GATE 3 - oba směry - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
22
|
-
(6,'GATE 3 - pod viadukt - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
23
|
-
(8,'GATE 3 - chodník, směr Žofín - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
24
|
-
(7,'GATE 1 - oba směry - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
25
|
-
(13,'GATE 1 - směr Malá strana - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
26
|
-
(16,'GATE 1 - směr Staré město - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
27
|
-
(11,'GATE 2 - oba směry - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
28
|
-
(4,'GATE 2 - směr Malá strana - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
29
|
-
(7,'GATE 2 - směr Staré město - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9);
|
|
20
|
+
(8,'GATE 2 - k Výstavišti - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
21
|
+
(3,'GATE 3 - oba směry - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
22
|
+
(6,'GATE 3 - pod viadukt - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
23
|
+
(8,'GATE 3 - chodník, směr Žofín - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
24
|
+
(7,'GATE 1 - oba směry - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
25
|
+
(13,'GATE 1 - směr Malá strana - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
26
|
+
(16,'GATE 1 - směr Staré město - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
27
|
+
(11,'GATE 2 - oba směry - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
28
|
+
(4,'GATE 2 - směr Malá strana - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
29
|
+
(7,'GATE 2 - směr Staré město - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9);
|
|
30
30
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
31
|
-
(2,'GATE 3 - oba směry - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
32
|
-
(5,'GATE 3 - směr Malá strana - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
33
|
-
(8,'GATE 3 - směr Staré město - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
34
|
-
(3,'GATE 4 - oba směry - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
35
|
-
(6,'GATE 4 - směr Malá strana - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
36
|
-
(9,'GATE 4 - směr Staré město - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
37
|
-
(22,'GATE 4 - náplavka oba směry - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
38
|
-
(28,'GATE 4 - náplavka směr Vyšehrad - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
39
|
-
(34,'GATE 4 - náplavka směr centrum - Distribution',1655688661000,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
40
|
-
(23,'GATE 5 - plný profil oba směry - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11);
|
|
31
|
+
(2,'GATE 3 - oba směry - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
32
|
+
(5,'GATE 3 - směr Malá strana - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
33
|
+
(8,'GATE 3 - směr Staré město - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
34
|
+
(3,'GATE 4 - oba směry - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
35
|
+
(6,'GATE 4 - směr Malá strana - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
36
|
+
(9,'GATE 4 - směr Staré město - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
37
|
+
(22,'GATE 4 - náplavka oba směry - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
38
|
+
(28,'GATE 4 - náplavka směr Vyšehrad - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
39
|
+
(34,'GATE 4 - náplavka směr centrum - Distribution',to_timestamp(1655688661000 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
40
|
+
(23,'GATE 5 - plný profil oba směry - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11);
|
|
41
41
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
42
|
-
(29,'GATE 5 - plný profil směr Vyšehrad - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
43
|
-
(35,'GATE 5 - plný profil směr centrum - Distribution',1655688661000,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
44
|
-
(24,'GATE 6 - WC oba směry - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
45
|
-
(30,'GATE 6 - WC dovnitr - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.762+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
46
|
-
(36,'GATE 6 - WC ven - Distribution',1655824367400,'distribution',NULL,'2020-10-07 10:35:02.762+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
47
|
-
(2,'GATE 5 - Distribution',1652968500200,'distribution',NULL,'2020-12-07 10:35:00.716+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
48
|
-
(6,'GATE 1 - oba smery - Distribution',1652968500200,'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
49
|
-
(4,'GATE 5 - smer Planetarium - Distribution',1652968500200,'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
50
|
-
(5,'GATE 5 - smer Holesovice - Distribution',1652968500200,'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
51
|
-
(7,'GATE 1 - smer Planetarium - Distribution',1652968500200,'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13);
|
|
42
|
+
(29,'GATE 5 - plný profil směr Vyšehrad - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
43
|
+
(35,'GATE 5 - plný profil směr centrum - Distribution',to_timestamp(1655688661000 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
44
|
+
(24,'GATE 6 - WC oba směry - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
45
|
+
(30,'GATE 6 - WC dovnitr - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.762+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
46
|
+
(36,'GATE 6 - WC ven - Distribution',to_timestamp(1655824367400 / 1000),'distribution',NULL,'2020-10-07 10:35:02.762+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
47
|
+
(2,'GATE 5 - Distribution',to_timestamp(1652968500200 / 1000),'distribution',NULL,'2020-12-07 10:35:00.716+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
48
|
+
(6,'GATE 1 - oba smery - Distribution',to_timestamp(1652968500200 / 1000),'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
49
|
+
(4,'GATE 5 - smer Planetarium - Distribution',to_timestamp(1652968500200 / 1000),'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
50
|
+
(5,'GATE 5 - smer Holesovice - Distribution',to_timestamp(1652968500200 / 1000),'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
51
|
+
(7,'GATE 1 - smer Planetarium - Distribution',to_timestamp(1652968500200 / 1000),'distribution',NULL,'2020-12-18 09:40:06.639+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13);
|
|
52
52
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
53
|
-
(8,'GATE 1 - smer Holesovice - Distribution',1652968500200,'distribution',NULL,'2020-12-18 09:40:06.64+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
54
|
-
(9,'GATE 3 - k Výstavišti - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
55
|
-
(5,'GATE 2 - směr Můstek - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
56
|
-
(6,'GATE 2 - směr Rytířská - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
57
|
-
(11,'GATE 1 - vozovka, směr Karlův most - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
58
|
-
(2,'GATE 2 - vozovka, oba směry - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
59
|
-
(7,'GATE 2 - vozovka, směr Žofín - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
60
|
-
(12,'GATE 2 - vozovka, směr Karlův most - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
61
|
-
(3,'GATE 3 - chodník, oba směry - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
62
|
-
(13,'GATE 3 - chodník, směr Karlův most - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2);
|
|
53
|
+
(8,'GATE 1 - smer Holesovice - Distribution',to_timestamp(1652968500200 / 1000),'distribution',NULL,'2020-12-18 09:40:06.64+01',NULL,NULL,'2022-06-23 11:43:01.259+02',NULL,13),
|
|
54
|
+
(9,'GATE 3 - k Výstavišti - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
55
|
+
(5,'GATE 2 - směr Můstek - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
56
|
+
(6,'GATE 2 - směr Rytířská - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
57
|
+
(11,'GATE 1 - vozovka, směr Karlův most - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
58
|
+
(2,'GATE 2 - vozovka, oba směry - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
59
|
+
(7,'GATE 2 - vozovka, směr Žofín - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
60
|
+
(12,'GATE 2 - vozovka, směr Karlův most - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
61
|
+
(3,'GATE 3 - chodník, oba směry - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
62
|
+
(13,'GATE 3 - chodník, směr Karlův most - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2);
|
|
63
63
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
64
|
-
(4,'GATE 4 - chodník, oba směry - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
65
|
-
(9,'GATE 4 - chodník, směr Žofín - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
66
|
-
(14,'GATE 4 - chodník, směr Karlův most - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
67
|
-
(5,'GATE 5 - chodník, oba směry - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
68
|
-
(10,'GATE 5 - chodník, směr Žofín - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
69
|
-
(15,'GATE 5 - chodník, směr Karlův most - Distribution',1655083851920,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
70
|
-
(2,'ZONE 2 - Distribution',1652971800200,'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
71
|
-
(13,'GATE 1 - Směr Staré město - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
72
|
-
(9,'GATE 3 - oba směry - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
73
|
-
(1,'GATE 1 - Náplavka, oba směry - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.54+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10);
|
|
64
|
+
(4,'GATE 4 - chodník, oba směry - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
65
|
+
(9,'GATE 4 - chodník, směr Žofín - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
66
|
+
(14,'GATE 4 - chodník, směr Karlův most - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
67
|
+
(5,'GATE 5 - chodník, oba směry - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
68
|
+
(10,'GATE 5 - chodník, směr Žofín - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
69
|
+
(15,'GATE 5 - chodník, směr Karlův most - Distribution',to_timestamp(1655083851920 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
70
|
+
(2,'ZONE 2 - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
71
|
+
(13,'GATE 1 - Směr Staré město - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
72
|
+
(9,'GATE 3 - oba směry - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
73
|
+
(1,'GATE 1 - Náplavka, oba směry - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.54+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10);
|
|
74
74
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
75
|
-
(6,'GATE 1 - náplavka, směr centrum - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
76
|
-
(11,'GATE 1 - náplavka, směr Vyšehrad - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
77
|
-
(2,'GATE 2 - Náplavka, oba směry - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
78
|
-
(7,'GATE 2 - náplavka, směr centrum - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
79
|
-
(12,'GATE 2 - náplavka, směr Vyšehrad - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
80
|
-
(3,'GATE 3 - rampa, oba směry - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
81
|
-
(8,'GATE 3 - plný profil, směr centrum - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
82
|
-
(13,'GATE 3 - rampa, směr Vyšehrad - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
83
|
-
(4,'GATE 4 - rampa, oba směry - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
84
|
-
(9,'GATE 4 - rampa, směr centrum - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10);
|
|
75
|
+
(6,'GATE 1 - náplavka, směr centrum - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
76
|
+
(11,'GATE 1 - náplavka, směr Vyšehrad - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
77
|
+
(2,'GATE 2 - Náplavka, oba směry - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
78
|
+
(7,'GATE 2 - náplavka, směr centrum - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
79
|
+
(12,'GATE 2 - náplavka, směr Vyšehrad - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
80
|
+
(3,'GATE 3 - rampa, oba směry - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.542+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
81
|
+
(8,'GATE 3 - plný profil, směr centrum - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
82
|
+
(13,'GATE 3 - rampa, směr Vyšehrad - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
83
|
+
(4,'GATE 4 - rampa, oba směry - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
84
|
+
(9,'GATE 4 - rampa, směr centrum - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10);
|
|
85
85
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
86
|
-
(14,'GATE 4 - náplavka, směr Vyšehrad - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
87
|
-
(5,'GATE 5 - plný profil, oba směry - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
88
|
-
(10,'GATE 5 - plný profil, směr centrum - Distribution',1652964900040,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
89
|
-
(15,'GATE 5 - plný profil, směr Vyšehrad - Distribution',1655083857800,'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
90
|
-
(20,'GATE 2 - schody oba směry - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.76+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
91
|
-
(19,'GATE 1 - schody oba směry - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
92
|
-
(25,'GATE 1 - schody nahoru - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
93
|
-
(31,'GATE 1 - schody dolů - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
94
|
-
(26,'GATE 2 - schody nahoru - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
95
|
-
(32,'GATE 2 - schody dolů - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11);
|
|
86
|
+
(14,'GATE 4 - náplavka, směr Vyšehrad - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
87
|
+
(5,'GATE 5 - plný profil, oba směry - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
88
|
+
(10,'GATE 5 - plný profil, směr centrum - Distribution',to_timestamp(1652964900040 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
89
|
+
(15,'GATE 5 - plný profil, směr Vyšehrad - Distribution',to_timestamp(1655083857800 / 1000),'distribution',NULL,'2020-10-07 10:35:02.543+02',NULL,NULL,'2022-06-23 11:43:00.929+02',NULL,10),
|
|
90
|
+
(20,'GATE 2 - schody oba směry - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.76+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
91
|
+
(19,'GATE 1 - schody oba směry - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
92
|
+
(25,'GATE 1 - schody nahoru - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
93
|
+
(31,'GATE 1 - schody dolů - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
94
|
+
(26,'GATE 2 - schody nahoru - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
95
|
+
(32,'GATE 2 - schody dolů - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11);
|
|
96
96
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
97
|
-
(21,'GATE 3 - náplavka oba směry - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
98
|
-
(27,'GATE 3 - náplavka směr Vyšehrad - Distribution',1652964600240,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
99
|
-
(33,'GATE 3 - náplavka směr centrum - Distribution',1655083861080,'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
100
|
-
(7,'GATE 3 - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.323+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
101
|
-
(8,'GATE 3 - směr Můstek - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.323+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
102
|
-
(9,'GATE 3 - směr Rytířská - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.323+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
103
|
-
(6,'GATE 1 - vozovka, směr Žofín - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
104
|
-
(1,'GATE 1 - vozovka, oba směry - Distribution',1652946900280,'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
105
|
-
(4,'Intersection - Distribution',1652971800200,'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
106
|
-
(11,'GATE 2 - Směr Malá strana - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7);
|
|
97
|
+
(21,'GATE 3 - náplavka oba směry - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
98
|
+
(27,'GATE 3 - náplavka směr Vyšehrad - Distribution',to_timestamp(1652964600240 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
99
|
+
(33,'GATE 3 - náplavka směr centrum - Distribution',to_timestamp(1655083861080 / 1000),'distribution',NULL,'2020-10-07 10:35:02.761+02',NULL,NULL,'2022-06-23 11:43:01.136+02',NULL,11),
|
|
100
|
+
(7,'GATE 3 - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.323+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
101
|
+
(8,'GATE 3 - směr Můstek - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.323+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
102
|
+
(9,'GATE 3 - směr Rytířská - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.323+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
103
|
+
(6,'GATE 1 - vozovka, směr Žofín - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
104
|
+
(1,'GATE 1 - vozovka, oba směry - Distribution',to_timestamp(1652946900280 / 1000),'distribution',NULL,'2020-10-08 16:15:14.301+02',NULL,NULL,'2022-06-23 11:43:00.53+02',NULL,2),
|
|
105
|
+
(4,'Intersection - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
106
|
+
(11,'GATE 2 - Směr Malá strana - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7);
|
|
107
107
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
108
|
-
(14,'GATE 2 - Směr Staré město - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
109
|
-
(12,'GATE 3 - Směr Malá strana - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
110
|
-
(15,'GATE 3 - Směr Staré město - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
111
|
-
(5,'GATE 2 - pod viadukt - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
112
|
-
(10,'GATE 1 - oba směry - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
113
|
-
(1,'GATE 2 - oba směry - Distribution',1652971800520,'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
114
|
-
(1,'GATE 1 - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
115
|
-
(2,'GATE 1 - směr Můstek - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
116
|
-
(3,'GATE 1 - směr Rytířská - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
117
|
-
(4,'GATE 2 - Distribution',1652971500400,'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1);
|
|
108
|
+
(14,'GATE 2 - Směr Staré město - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
109
|
+
(12,'GATE 3 - Směr Malá strana - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
110
|
+
(15,'GATE 3 - Směr Staré město - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
111
|
+
(5,'GATE 2 - pod viadukt - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
112
|
+
(10,'GATE 1 - oba směry - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
113
|
+
(1,'GATE 2 - oba směry - Distribution',to_timestamp(1652971800520 / 1000),'distribution',NULL,'2020-10-08 16:15:03.57+02',NULL,NULL,'2022-06-23 11:43:00.866+02',NULL,9),
|
|
114
|
+
(1,'GATE 1 - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
115
|
+
(2,'GATE 1 - směr Můstek - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
116
|
+
(3,'GATE 1 - směr Rytířská - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1),
|
|
117
|
+
(4,'GATE 2 - Distribution',to_timestamp(1652971500400 / 1000),'distribution',NULL,'2020-10-08 16:15:13.322+02',NULL,NULL,'2022-06-23 11:43:00.253+02',NULL,1);
|
|
118
118
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
119
|
-
(3,'Union - Distribution',1652971800200,'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
120
|
-
(14,'GATE 2 - směr Malá strana - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
121
|
-
(17,'GATE 2 - směr Staré město - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
122
|
-
(12,'GATE 3 - oba směry - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
123
|
-
(15,'GATE 3 - směr Malá strana - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
124
|
-
(18,'GATE 3 - směr Staré město - Distribution',1652971801000,'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
125
|
-
(1,'GATE 1 - oba směry - Distribution',1652971800280,'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
126
|
-
(2,'GATE 1 - z mostu - Distribution',1652971800280,'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
127
|
-
(3,'GATE 1 - na most - Distribution',1652971800280,'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
128
|
-
(4,'GATE 2 - oba směry - Distribution',1652971800280,'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4);
|
|
119
|
+
(3,'Union - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
120
|
+
(14,'GATE 2 - směr Malá strana - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
121
|
+
(17,'GATE 2 - směr Staré město - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
122
|
+
(12,'GATE 3 - oba směry - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
123
|
+
(15,'GATE 3 - směr Malá strana - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
124
|
+
(18,'GATE 3 - směr Staré město - Distribution',to_timestamp(1652971801000 / 1000),'distribution',NULL,'2020-10-08 16:15:03.163+02',NULL,NULL,'2022-06-23 11:43:00.81+02',NULL,8),
|
|
125
|
+
(1,'GATE 1 - oba směry - Distribution',to_timestamp(1652971800280 / 1000),'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
126
|
+
(2,'GATE 1 - z mostu - Distribution',to_timestamp(1652971800280 / 1000),'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
127
|
+
(3,'GATE 1 - na most - Distribution',to_timestamp(1652971800280 / 1000),'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
128
|
+
(4,'GATE 2 - oba směry - Distribution',to_timestamp(1652971800280 / 1000),'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4);
|
|
129
129
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
130
|
-
(5,'GATE 2 - z mostu - Distribution',1652971800280,'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
131
|
-
(6,'GATE 2 - na most - Distribution',1652971800280,'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
132
|
-
(1,'ZONE 1 - Distribution',1652971800200,'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
133
|
-
(1,'GATE 1 - oba směry - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
134
|
-
(4,'GATE 1 - pod viadukt - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
135
|
-
(7,'GATE 1 - k Výstavišti - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
136
|
-
(2,'GATE 2 - oba směry - Distribution',1652975700120,'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
137
|
-
(10,'GATE 1 - Směr Malá strana - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
138
|
-
(8,'GATE 2 - oba směry - Distribution',1652971800200,'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
139
|
-
(3,'GATE 6 - Distribution',1608223217720,'distribution',NULL,'2020-12-07 10:35:00.716+01',NULL,NULL,'2020-12-18 09:30:02.48+01',NULL,13);
|
|
130
|
+
(5,'GATE 2 - z mostu - Distribution',to_timestamp(1652971800280 / 1000),'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
131
|
+
(6,'GATE 2 - na most - Distribution',to_timestamp(1652971800280 / 1000),'distribution',NULL,'2020-10-07 10:35:00.463+02',NULL,NULL,'2022-06-23 11:43:00.617+02',NULL,4),
|
|
132
|
+
(1,'ZONE 1 - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-08 16:15:01.815+02',NULL,NULL,'2022-06-23 11:43:00.708+02',NULL,6),
|
|
133
|
+
(1,'GATE 1 - oba směry - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
134
|
+
(4,'GATE 1 - pod viadukt - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
135
|
+
(7,'GATE 1 - k Výstavišti - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
136
|
+
(2,'GATE 2 - oba směry - Distribution',to_timestamp(1652975700120 / 1000),'distribution',NULL,'2020-10-07 11:55:00.475+02',NULL,NULL,'2022-06-23 11:43:00.156+02',NULL,0),
|
|
137
|
+
(10,'GATE 1 - Směr Malá strana - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
138
|
+
(8,'GATE 2 - oba směry - Distribution',to_timestamp(1652971800200 / 1000),'distribution',NULL,'2020-10-07 10:35:01.663+02',NULL,NULL,'2022-06-23 11:43:00.752+02',NULL,7),
|
|
139
|
+
(3,'GATE 6 - Distribution',to_timestamp(1608223217720 / 1000),'distribution',NULL,'2020-12-07 10:35:00.716+01',NULL,NULL,'2020-12-18 09:30:02.48+01',NULL,13);
|
|
140
140
|
INSERT INTO flow_sinks (id,"name",history_start_timestamp,output_value_type,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by,cube_id) VALUES
|
|
141
|
-
(1,'GATE 1 - Distribution',1608223217720,'distribution',NULL,'2020-12-07 10:35:00.716+01',NULL,NULL,'2020-12-18 09:30:02.48+01',NULL,13),
|
|
142
|
-
(1,'GATE 5 - OD Matrix',1655671800080,'od_matrix',NULL,'2021-04-07 10:55:07.93+02',NULL,NULL,'2022-06-23 11:43:01.19+02',NULL,12);
|
|
141
|
+
(1,'GATE 1 - Distribution',to_timestamp(1608223217720 / 1000),'distribution',NULL,'2020-12-07 10:35:00.716+01',NULL,NULL,'2020-12-18 09:30:02.48+01',NULL,13),
|
|
142
|
+
(1,'GATE 5 - OD Matrix',to_timestamp(1655671800080 / 1000),'od_matrix',NULL,'2021-04-07 10:55:07.93+02',NULL,NULL,'2022-06-23 11:43:01.19+02',NULL,12);
|
|
143
143
|
|
|
144
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1647709200000, 1647709500000, 'pedestrian', 32, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
145
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1647709500000, 1647709800000, 'pedestrian', 13, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
146
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1647708900000, 1647709200000, 'pedestrian', 62, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
147
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1647709200000, 1647709500000, 'pedestrian', 62, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
148
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1647709500000, 1647709800000, 'pedestrian', 49, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
149
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(29, 11, 97, 0, 1647711900000, 1647712200000, 'pedestrian', 0, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
150
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(29, 11, 97, 0, 1647712200000, 1647712500000, 'pedestrian', 7, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
151
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(35, 11, 97, 0, 1647711600000, 1647711900000, 'pedestrian', 7, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
152
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(35, 11, 97, 0, 1647711900000, 1647712200000, 'pedestrian', 3, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
153
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1647708600000, 1647708900000, 'pedestrian', 28, NULL, '2022-03-19 18:03:10.707', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
154
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1647708000000, 1647708300000, 'pedestrian', 56, NULL, '2022-03-19 18:03:10.708', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
155
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 13, 32, 0, 1646572200000, 1646572500000, 'pedestrian', 58, NULL, '2022-03-06 14:43:14.067', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
156
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 13, 32, 0, 1646572500000, 1646572800000, 'pedestrian', 36, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
157
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 13, 32, 0, 1646572800000, 1646573100000, 'pedestrian', 78, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
158
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, 1646572200000, 1646572500000, 'pedestrian', 59, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
159
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, 1646572500000, 1646572800000, 'pedestrian', 39, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
160
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, 1646572800000, 1646573100000, 'pedestrian', 76, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
161
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, 1646572200000, 1646572500000, 'pedestrian', 37, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
162
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, 1646572500000, 1646572800000, 'pedestrian', 19, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
163
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, 1646572800000, 1646573100000, 'pedestrian', 42, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
164
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, 1646572200000, 1646572500000, 'pedestrian', 21, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
165
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, 1646572500000, 1646572800000, 'pedestrian', 17, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
166
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, 1646572800000, 1646573100000, 'pedestrian', 37, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
167
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1646572200000, 1646572500000, 'pedestrian', 38, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
168
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1646572500000, 1646572800000, 'pedestrian', 20, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
169
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1646572800000, 1646573100000, 'pedestrian', 41, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
170
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1646572200000, 1646572500000, 'pedestrian', 21, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
171
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1646572500000, 1646572800000, 'pedestrian', 19, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
172
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1646572800000, 1646573100000, 'pedestrian', 36, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
173
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1647708300000, 1647708600000, 'pedestrian', 96, NULL, '2022-03-19 18:03:10.708', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
174
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, 1647708600000, 1647708900000, 'pedestrian', 62, NULL, '2022-03-19 18:03:10.708', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
175
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(35, 11, 97, 0, 1647712200000, 1647712500000, 'pedestrian', 5, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
176
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(24, 11, 97, 0, 1647711600000, 1647711900000, 'pedestrian', 0, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.264', NULL, 'ok');
|
|
177
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(24, 11, 97, 0, 1647711900000, 1647712200000, 'pedestrian', 0, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.264', NULL, 'ok');
|
|
178
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 9, 64, 0, 1649655600000, 1649655900000, 'pedestrian', 2, NULL, '2022-04-11 08:03:12.442', NULL, NULL, '2022-04-11 08:43:07.088', NULL, 'ok');
|
|
179
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 9, 64, 0, 1649655900000, 1649656200000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.088', NULL, 'ok');
|
|
180
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 9, 64, 0, 1649656200000, 1649656500000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
181
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 9, 64, 0, 1649655600000, 1649655900000, 'pedestrian', 8, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
182
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 9, 64, 0, 1649655900000, 1649656200000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
183
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 9, 64, 0, 1649656200000, 1649656500000, 'pedestrian', 4, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
184
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 9, 64, 0, 1649655600000, 1649655900000, 'pedestrian', 5, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
185
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 9, 64, 0, 1649655900000, 1649656200000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
186
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 321, NULL, '2022-03-19 18:23:00.308', NULL, NULL, '2022-03-19 19:03:00.565', NULL, 'ok');
|
|
187
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 188, NULL, '2022-03-19 18:23:00.309', NULL, NULL, '2022-03-19 19:03:00.566', NULL, 'ok');
|
|
188
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1647710100000, 1647710400000, 'pedestrian', 162, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.566', NULL, 'ok');
|
|
189
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1647710400000, 1647710700000, 'pedestrian', 152, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.567', NULL, 'ok');
|
|
190
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 146, NULL, '2022-03-19 18:23:00.311', NULL, NULL, '2022-03-19 19:03:00.568', NULL, 'ok');
|
|
191
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, 1647710400000, 1647710700000, 'pedestrian', 126, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.568', NULL, 'ok');
|
|
192
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 327, NULL, '2022-03-19 18:23:00.320', NULL, NULL, '2022-03-19 19:03:00.569', NULL, 'ok');
|
|
193
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, 1647710100000, 1647710400000, 'pedestrian', 301, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.569', NULL, 'ok');
|
|
194
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 188, NULL, '2022-03-19 18:23:00.321', NULL, NULL, '2022-03-19 19:03:00.569', NULL, 'ok');
|
|
195
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, 1647710400000, 1647710700000, 'pedestrian', 161, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.570', NULL, 'ok');
|
|
196
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
197
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(11, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
198
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(11, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
199
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(11, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
200
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, 1646574000000, 1646574300000, 'pedestrian', 16, NULL, '2022-03-06 15:03:00.244', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
201
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, 1646574300000, 1646574600000, 'pedestrian', 27, NULL, '2022-03-06 15:03:00.244', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
202
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, 1646574600000, 1646574900000, 'pedestrian', 22, NULL, '2022-03-06 15:03:00.245', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
203
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, 1646574000000, 1646574300000, 'pedestrian', 10, NULL, '2022-03-06 15:03:00.245', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
204
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
205
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 1, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
206
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
207
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
208
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
209
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
210
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(12, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
211
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(12, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 1, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
212
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(12, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
213
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, 1651203300000, 1651203600000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
214
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, 1651202700000, 1651203000000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
215
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, 1651203000000, 1651203300000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
216
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, 1651203300000, 1651203600000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
217
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, 1648509900000, 1648510200000, 'pedestrian', 18, NULL, '2022-03-29 02:03:00.285', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
218
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, 1648510200000, 1648510500000, 'pedestrian', 11, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
219
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, 1648510500000, 1648510800000, 'pedestrian', 14, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
220
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1648509900000, 1648510200000, 'pedestrian', 12, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
221
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1648510200000, 1648510500000, 'pedestrian', 4, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
222
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
223
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 1, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
224
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
225
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, 1646574000000, 1646574300000, 'pedestrian', 5, NULL, '2022-03-06 15:03:00.246', NULL, NULL, '2022-03-06 15:43:01.500', NULL, 'ok');
|
|
226
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, 1646574300000, 1646574600000, 'pedestrian', 14, NULL, '2022-03-06 15:03:00.246', NULL, NULL, '2022-03-06 15:43:01.500', NULL, 'ok');
|
|
227
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, 1646574600000, 1646574900000, 'pedestrian', 6, NULL, '2022-03-06 15:03:00.248', NULL, NULL, '2022-03-06 15:43:01.500', NULL, 'ok');
|
|
228
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
229
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
230
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 24, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.227', NULL, 'ok');
|
|
231
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 22, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.227', NULL, 'ok');
|
|
232
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 17, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
233
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 14, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
234
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 7, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
235
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 16, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
236
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 11, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
237
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 16, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
238
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 27, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
239
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 25, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
240
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 23, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
241
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 13, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
242
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 13, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
243
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 8, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
244
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 21, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
245
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 15, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
246
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 17, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
247
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 24, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
248
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 22, NULL, '2022-03-06 15:03:00.824', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
249
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 22, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
250
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 9, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
251
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 10, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
252
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 6, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
253
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 0, 44, 0, 1646573100000, 1646573400000, 'pedestrian', 16, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
254
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 0, 44, 0, 1646573400000, 1646573700000, 'pedestrian', 13, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
255
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 0, 44, 0, 1646573700000, 1646574000000, 'pedestrian', 16, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
256
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 149, NULL, '2022-03-19 18:23:00.322', NULL, NULL, '2022-03-19 19:03:00.570', NULL, 'ok');
|
|
257
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, 1647710100000, 1647710400000, 'pedestrian', 144, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.570', NULL, 'ok');
|
|
258
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, 1647710400000, 1647710700000, 'pedestrian', 152, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.571', NULL, 'ok');
|
|
259
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 326, NULL, '2022-03-19 18:23:00.323', NULL, NULL, '2022-03-19 19:03:00.571', NULL, 'ok');
|
|
260
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 183, NULL, '2022-03-19 18:23:00.324', NULL, NULL, '2022-03-19 19:03:00.573', NULL, 'ok');
|
|
261
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, 1647710100000, 1647710400000, 'pedestrian', 170, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
262
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, 1647710400000, 1647710700000, 'pedestrian', 159, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
263
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, 1647709800000, 1647710100000, 'pedestrian', 153, NULL, '2022-03-19 18:23:00.325', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
264
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, 1647710100000, 1647710400000, 'pedestrian', 145, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
265
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, 1652614200000, 1652614500000, 'pedestrian', 153, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
266
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, 1652614500000, 1652614800000, 'pedestrian', 124, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
267
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, 1652613900000, 1652614200000, 'pedestrian', 46, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
268
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, 1652614200000, 1652614500000, 'pedestrian', 107, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
269
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, 1652614500000, 1652614800000, 'pedestrian', 99, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
270
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 10, 82, 0, 1649656500000, 1649656800000, 'pedestrian', 4, NULL, '2022-04-11 08:23:04.952', NULL, NULL, '2022-04-11 08:43:07.529', NULL, 'ok');
|
|
271
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 10, 82, 0, 1649656800000, 1649657100000, 'pedestrian', 7, NULL, '2022-04-11 08:23:04.952', NULL, NULL, '2022-04-11 08:43:07.529', NULL, 'ok');
|
|
272
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 10, 82, 0, 1649657100000, 1649657400000, 'pedestrian', 7, NULL, '2022-04-11 08:23:04.952', NULL, NULL, '2022-04-11 08:43:07.529', NULL, 'ok');
|
|
273
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
274
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(13, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
275
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(13, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
276
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
277
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 1, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
278
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
279
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
280
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
281
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, 1647710400000, 1647710700000, 'pedestrian', 138, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
282
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
283
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
284
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
285
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
286
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 2, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
287
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
288
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(10, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
289
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, 1646574000000, 1646574300000, 'pedestrian', 256, NULL, '2022-03-06 15:03:01.869', NULL, NULL, '2022-03-06 15:43:02.455', NULL, 'ok');
|
|
290
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 9, 64, 0, 1649656200000, 1649656500000, 'pedestrian', 3, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
291
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 9, 64, 0, 1649655600000, 1649655900000, 'pedestrian', 3, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
292
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 9, 64, 0, 1649655900000, 1649656200000, 'pedestrian', 0, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
293
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 9, 64, 0, 1649656200000, 1649656500000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
294
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 9, 64, 0, 1649655600000, 1649655900000, 'pedestrian', 4, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
295
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 9, 64, 0, 1649655900000, 1649656200000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
296
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 9, 64, 0, 1649656200000, 1649656500000, 'pedestrian', 2, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
297
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 9, 64, 0, 1649655600000, 1649655900000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
298
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 9, 64, 0, 1649655900000, 1649656200000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
299
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(10, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
300
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(15, 2, 71, 0, 1648509900000, 1648510200000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.889', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
301
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(15, 2, 71, 0, 1648510200000, 1648510500000, 'pedestrian', 2, NULL, '2022-03-29 02:03:00.889', NULL, NULL, '2022-03-29 02:23:01.322', NULL, 'ok');
|
|
302
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(15, 2, 71, 0, 1648510500000, 1648510800000, 'pedestrian', 0, NULL, '2022-03-29 02:03:00.889', NULL, NULL, '2022-03-29 02:23:01.322', NULL, 'ok');
|
|
303
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 9, 64, 0, 1649656200000, 1649656500000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
304
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 9, 64, 0, 1649655600000, 1649655900000, 'pedestrian', 3, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
305
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 9, 64, 0, 1649655900000, 1649656200000, 'pedestrian', 0, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
306
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 9, 64, 0, 1649656200000, 1649656500000, 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
307
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, 1651202700000, 1651203000000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
308
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, 1652613900000, 1652614200000, 'pedestrian', 40, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
309
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, 1652614200000, 1652614500000, 'pedestrian', 36, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
310
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 231, NULL, '2022-03-06 15:03:02.262', NULL, NULL, '2022-03-06 15:23:02.643', NULL, 'ok');
|
|
311
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 117, NULL, '2022-03-06 15:03:02.262', NULL, NULL, '2022-03-06 15:23:02.643', NULL, 'ok');
|
|
312
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 92, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
313
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 123, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
314
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 102, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
315
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 138, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
316
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 133, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
317
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 208, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
318
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 225, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
319
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 249, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
320
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 114, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
321
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 89, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
322
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 133, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
323
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 104, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
324
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 151, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
325
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 140, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
326
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 202, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
327
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 217, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
328
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 244, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
329
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 112, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
330
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 95, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
331
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 132, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
332
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, 1646573100000, 1646573400000, 'pedestrian', 102, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
333
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, 1646573400000, 1646573700000, 'pedestrian', 140, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.646', NULL, 'ok');
|
|
334
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, 1646573700000, 1646574000000, 'pedestrian', 131, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.646', NULL, 'ok');
|
|
335
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, 1651203000000, 1651203300000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
336
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, 1651203300000, 1651203600000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
337
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, 1651202700000, 1651203000000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
338
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, 1651203000000, 1651203300000, 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
339
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 10, 82, 0, 1649657700000, 1649658000000, 'pedestrian', 3, NULL, '2022-04-11 08:43:07.486', NULL, NULL, '2022-04-11 09:03:08.979', NULL, 'ok');
|
|
340
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 10, 82, 0, 1649658000000, 1649658300000, 'pedestrian', 3, NULL, '2022-04-11 08:43:07.486', NULL, NULL, '2022-04-11 09:03:08.979', NULL, 'ok');
|
|
341
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, 1652614500000, 1652614800000, 'pedestrian', 35, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
342
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1652613900000, 1652614200000, 'pedestrian', 49, NULL, '2022-05-15 14:03:22.793', NULL, NULL, '2022-05-15 14:23:19.172', NULL, 'ok');
|
|
343
|
-
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, 1652614200000, 1652614500000, 'pedestrian', 121, NULL, '2022-05-15 14:03:22.793', NULL, NULL, '2022-05-15 14:23:19.172', NULL, 'ok');
|
|
144
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1647709200000 / 1000), to_timestamp(1647709500000 / 1000), 'pedestrian', 32, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
145
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1647709500000 / 1000), to_timestamp(1647709800000 / 1000), 'pedestrian', 13, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
146
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1647708900000 / 1000), to_timestamp(1647709200000 / 1000), 'pedestrian', 62, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
147
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1647709200000 / 1000), to_timestamp(1647709500000 / 1000), 'pedestrian', 62, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
148
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1647709500000 / 1000), to_timestamp(1647709800000 / 1000), 'pedestrian', 49, NULL, '2022-03-19 18:23:07.189', NULL, NULL, '2022-03-19 18:43:05.621', NULL, 'ok');
|
|
149
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(29, 11, 97, 0, to_timestamp(1647711900000 / 1000), to_timestamp(1647712200000 / 1000), 'pedestrian', 0, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
150
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(29, 11, 97, 0, to_timestamp(1647712200000 / 1000), to_timestamp(1647712500000 / 1000), 'pedestrian', 7, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
151
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(35, 11, 97, 0, to_timestamp(1647711600000 / 1000), to_timestamp(1647711900000 / 1000), 'pedestrian', 7, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
152
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(35, 11, 97, 0, to_timestamp(1647711900000 / 1000), to_timestamp(1647712200000 / 1000), 'pedestrian', 3, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
153
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1647708600000 / 1000), to_timestamp(1647708900000 / 1000), 'pedestrian', 28, NULL, '2022-03-19 18:03:10.707', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
154
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1647708000000 / 1000), to_timestamp(1647708300000 / 1000), 'pedestrian', 56, NULL, '2022-03-19 18:03:10.708', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
155
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 13, 32, 0, to_timestamp(1646572200000 / 1000), to_timestamp(1646572500000 / 1000), 'pedestrian', 58, NULL, '2022-03-06 14:43:14.067', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
156
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 13, 32, 0, to_timestamp(1646572500000 / 1000), to_timestamp(1646572800000 / 1000), 'pedestrian', 36, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
157
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 13, 32, 0, to_timestamp(1646572800000 / 1000), to_timestamp(1646573100000 / 1000), 'pedestrian', 78, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
158
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, to_timestamp(1646572200000 / 1000), to_timestamp(1646572500000 / 1000), 'pedestrian', 59, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
159
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, to_timestamp(1646572500000 / 1000), to_timestamp(1646572800000 / 1000), 'pedestrian', 39, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
160
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, to_timestamp(1646572800000 / 1000), to_timestamp(1646573100000 / 1000), 'pedestrian', 76, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
161
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, to_timestamp(1646572200000 / 1000), to_timestamp(1646572500000 / 1000), 'pedestrian', 37, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
162
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, to_timestamp(1646572500000 / 1000), to_timestamp(1646572800000 / 1000), 'pedestrian', 19, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
163
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, to_timestamp(1646572800000 / 1000), to_timestamp(1646573100000 / 1000), 'pedestrian', 42, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
164
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, to_timestamp(1646572200000 / 1000), to_timestamp(1646572500000 / 1000), 'pedestrian', 21, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
165
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, to_timestamp(1646572500000 / 1000), to_timestamp(1646572800000 / 1000), 'pedestrian', 17, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.093', NULL, 'ok');
|
|
166
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, to_timestamp(1646572800000 / 1000), to_timestamp(1646573100000 / 1000), 'pedestrian', 37, NULL, '2022-03-06 14:43:14.068', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
167
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1646572200000 / 1000), to_timestamp(1646572500000 / 1000), 'pedestrian', 38, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
168
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1646572500000 / 1000), to_timestamp(1646572800000 / 1000), 'pedestrian', 20, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
169
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1646572800000 / 1000), to_timestamp(1646573100000 / 1000), 'pedestrian', 41, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
170
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1646572200000 / 1000), to_timestamp(1646572500000 / 1000), 'pedestrian', 21, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
171
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1646572500000 / 1000), to_timestamp(1646572800000 / 1000), 'pedestrian', 19, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
172
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1646572800000 / 1000), to_timestamp(1646573100000 / 1000), 'pedestrian', 36, NULL, '2022-03-06 14:43:14.069', NULL, NULL, '2022-03-06 15:03:15.094', NULL, 'ok');
|
|
173
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1647708300000 / 1000), to_timestamp(1647708600000 / 1000), 'pedestrian', 96, NULL, '2022-03-19 18:03:10.708', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
174
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 13, 32, 0, to_timestamp(1647708600000 / 1000), to_timestamp(1647708900000 / 1000), 'pedestrian', 62, NULL, '2022-03-19 18:03:10.708', NULL, NULL, '2022-03-19 18:43:05.656', NULL, 'ok');
|
|
175
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(35, 11, 97, 0, to_timestamp(1647712200000 / 1000), to_timestamp(1647712500000 / 1000), 'pedestrian', 5, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.263', NULL, 'ok');
|
|
176
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(24, 11, 97, 0, to_timestamp(1647711600000 / 1000), to_timestamp(1647711900000 / 1000), 'pedestrian', 0, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.264', NULL, 'ok');
|
|
177
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(24, 11, 97, 0, to_timestamp(1647711900000 / 1000), to_timestamp(1647712200000 / 1000), 'pedestrian', 0, NULL, '2022-03-19 19:03:03.383', NULL, NULL, '2022-03-19 19:43:04.264', NULL, 'ok');
|
|
178
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 9, 64, 0, to_timestamp(1649655600000 / 1000), to_timestamp(1649655900000 / 1000), 'pedestrian', 2, NULL, '2022-04-11 08:03:12.442', NULL, NULL, '2022-04-11 08:43:07.088', NULL, 'ok');
|
|
179
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 9, 64, 0, to_timestamp(1649655900000 / 1000), to_timestamp(1649656200000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.088', NULL, 'ok');
|
|
180
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 9, 64, 0, to_timestamp(1649656200000 / 1000), to_timestamp(1649656500000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
181
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 9, 64, 0, to_timestamp(1649655600000 / 1000), to_timestamp(1649655900000 / 1000), 'pedestrian', 8, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
182
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 9, 64, 0, to_timestamp(1649655900000 / 1000), to_timestamp(1649656200000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
183
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 9, 64, 0, to_timestamp(1649656200000 / 1000), to_timestamp(1649656500000 / 1000), 'pedestrian', 4, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
184
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 9, 64, 0, to_timestamp(1649655600000 / 1000), to_timestamp(1649655900000 / 1000), 'pedestrian', 5, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.097', NULL, 'ok');
|
|
185
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 9, 64, 0, to_timestamp(1649655900000 / 1000), to_timestamp(1649656200000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
186
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 321, NULL, '2022-03-19 18:23:00.308', NULL, NULL, '2022-03-19 19:03:00.565', NULL, 'ok');
|
|
187
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 188, NULL, '2022-03-19 18:23:00.309', NULL, NULL, '2022-03-19 19:03:00.566', NULL, 'ok');
|
|
188
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1647710100000 / 1000), to_timestamp(1647710400000 / 1000), 'pedestrian', 162, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.566', NULL, 'ok');
|
|
189
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1647710400000 / 1000), to_timestamp(1647710700000 / 1000), 'pedestrian', 152, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.567', NULL, 'ok');
|
|
190
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 146, NULL, '2022-03-19 18:23:00.311', NULL, NULL, '2022-03-19 19:03:00.568', NULL, 'ok');
|
|
191
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, to_timestamp(1647710400000 / 1000), to_timestamp(1647710700000 / 1000), 'pedestrian', 126, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.568', NULL, 'ok');
|
|
192
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 327, NULL, '2022-03-19 18:23:00.320', NULL, NULL, '2022-03-19 19:03:00.569', NULL, 'ok');
|
|
193
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, to_timestamp(1647710100000 / 1000), to_timestamp(1647710400000 / 1000), 'pedestrian', 301, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.569', NULL, 'ok');
|
|
194
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 188, NULL, '2022-03-19 18:23:00.321', NULL, NULL, '2022-03-19 19:03:00.569', NULL, 'ok');
|
|
195
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, to_timestamp(1647710400000 / 1000), to_timestamp(1647710700000 / 1000), 'pedestrian', 161, NULL, '2022-03-19 18:43:01.921', NULL, NULL, '2022-03-19 19:03:00.570', NULL, 'ok');
|
|
196
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
197
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(11, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
198
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(11, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
199
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(11, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
200
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, to_timestamp(1646574000000 / 1000), to_timestamp(1646574300000 / 1000), 'pedestrian', 16, NULL, '2022-03-06 15:03:00.244', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
201
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, to_timestamp(1646574300000 / 1000), to_timestamp(1646574600000 / 1000), 'pedestrian', 27, NULL, '2022-03-06 15:03:00.244', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
202
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, to_timestamp(1646574600000 / 1000), to_timestamp(1646574900000 / 1000), 'pedestrian', 22, NULL, '2022-03-06 15:03:00.245', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
203
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, to_timestamp(1646574000000 / 1000), to_timestamp(1646574300000 / 1000), 'pedestrian', 10, NULL, '2022-03-06 15:03:00.245', NULL, NULL, '2022-03-06 15:43:01.496', NULL, 'ok');
|
|
204
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
205
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 1, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.317', NULL, 'ok');
|
|
206
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
207
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.885', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
208
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
209
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
210
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(12, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
211
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(12, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 1, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
212
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(12, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
213
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, to_timestamp(1651203300000 / 1000), to_timestamp(1651203600000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
214
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, to_timestamp(1651202700000 / 1000), to_timestamp(1651203000000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
215
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, to_timestamp(1651203000000 / 1000), to_timestamp(1651203300000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
216
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, to_timestamp(1651203300000 / 1000), to_timestamp(1651203600000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.628', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
217
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 18, NULL, '2022-03-29 02:03:00.285', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
218
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 11, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
219
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 14, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
220
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 12, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
221
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 4, NULL, '2022-03-29 02:03:00.286', NULL, NULL, '2022-03-29 02:23:02.711', NULL, 'ok');
|
|
222
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.318', NULL, 'ok');
|
|
223
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 1, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
224
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
225
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, to_timestamp(1646574000000 / 1000), to_timestamp(1646574300000 / 1000), 'pedestrian', 5, NULL, '2022-03-06 15:03:00.246', NULL, NULL, '2022-03-06 15:43:01.500', NULL, 'ok');
|
|
226
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, to_timestamp(1646574300000 / 1000), to_timestamp(1646574600000 / 1000), 'pedestrian', 14, NULL, '2022-03-06 15:03:00.246', NULL, NULL, '2022-03-06 15:43:01.500', NULL, 'ok');
|
|
227
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, to_timestamp(1646574600000 / 1000), to_timestamp(1646574900000 / 1000), 'pedestrian', 6, NULL, '2022-03-06 15:03:00.248', NULL, NULL, '2022-03-06 15:43:01.500', NULL, 'ok');
|
|
228
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
229
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.319', NULL, 'ok');
|
|
230
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 24, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.227', NULL, 'ok');
|
|
231
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 22, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.227', NULL, 'ok');
|
|
232
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 17, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
233
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 14, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
234
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 7, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
235
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 16, NULL, '2022-03-06 15:03:00.821', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
236
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 11, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
237
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 16, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
238
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 27, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
239
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 25, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
240
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 23, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
241
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 13, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
242
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 13, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
243
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 8, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.228', NULL, 'ok');
|
|
244
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 21, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
245
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 15, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
246
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 17, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
247
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 24, NULL, '2022-03-06 15:03:00.822', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
248
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 22, NULL, '2022-03-06 15:03:00.824', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
249
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 22, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
250
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 9, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
251
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 10, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
252
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 6, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
253
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 0, 44, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 16, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
254
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 0, 44, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 13, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
255
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 0, 44, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 16, NULL, '2022-03-06 15:03:00.825', NULL, NULL, '2022-03-06 15:23:01.229', NULL, 'ok');
|
|
256
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 149, NULL, '2022-03-19 18:23:00.322', NULL, NULL, '2022-03-19 19:03:00.570', NULL, 'ok');
|
|
257
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, to_timestamp(1647710100000 / 1000), to_timestamp(1647710400000 / 1000), 'pedestrian', 144, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.570', NULL, 'ok');
|
|
258
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, to_timestamp(1647710400000 / 1000), to_timestamp(1647710700000 / 1000), 'pedestrian', 152, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.571', NULL, 'ok');
|
|
259
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 326, NULL, '2022-03-19 18:23:00.323', NULL, NULL, '2022-03-19 19:03:00.571', NULL, 'ok');
|
|
260
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 183, NULL, '2022-03-19 18:23:00.324', NULL, NULL, '2022-03-19 19:03:00.573', NULL, 'ok');
|
|
261
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, to_timestamp(1647710100000 / 1000), to_timestamp(1647710400000 / 1000), 'pedestrian', 170, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
262
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, to_timestamp(1647710400000 / 1000), to_timestamp(1647710700000 / 1000), 'pedestrian', 159, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
263
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, to_timestamp(1647709800000 / 1000), to_timestamp(1647710100000 / 1000), 'pedestrian', 153, NULL, '2022-03-19 18:23:00.325', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
264
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, to_timestamp(1647710100000 / 1000), to_timestamp(1647710400000 / 1000), 'pedestrian', 145, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
265
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, to_timestamp(1652614200000 / 1000), to_timestamp(1652614500000 / 1000), 'pedestrian', 153, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
266
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 13, 32, 0, to_timestamp(1652614500000 / 1000), to_timestamp(1652614800000 / 1000), 'pedestrian', 124, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
267
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, to_timestamp(1652613900000 / 1000), to_timestamp(1652614200000 / 1000), 'pedestrian', 46, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
268
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, to_timestamp(1652614200000 / 1000), to_timestamp(1652614500000 / 1000), 'pedestrian', 107, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
269
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 13, 32, 0, to_timestamp(1652614500000 / 1000), to_timestamp(1652614800000 / 1000), 'pedestrian', 99, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
270
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 10, 82, 0, to_timestamp(1649656500000 / 1000), to_timestamp(1649656800000 / 1000), 'pedestrian', 4, NULL, '2022-04-11 08:23:04.952', NULL, NULL, '2022-04-11 08:43:07.529', NULL, 'ok');
|
|
271
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 10, 82, 0, to_timestamp(1649656800000 / 1000), to_timestamp(1649657100000 / 1000), 'pedestrian', 7, NULL, '2022-04-11 08:23:04.952', NULL, NULL, '2022-04-11 08:43:07.529', NULL, 'ok');
|
|
272
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 10, 82, 0, to_timestamp(1649657100000 / 1000), to_timestamp(1649657400000 / 1000), 'pedestrian', 7, NULL, '2022-04-11 08:23:04.952', NULL, NULL, '2022-04-11 08:43:07.529', NULL, 'ok');
|
|
273
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.886', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
274
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(13, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
275
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(13, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
276
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
277
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 1, NULL, '2022-03-29 02:03:00.887', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
278
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
279
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.320', NULL, 'ok');
|
|
280
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
281
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, to_timestamp(1647710400000 / 1000), to_timestamp(1647710700000 / 1000), 'pedestrian', 138, NULL, '2022-03-19 18:43:01.922', NULL, NULL, '2022-03-19 19:03:00.574', NULL, 'ok');
|
|
282
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
283
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
284
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
285
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
286
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 2, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
287
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
288
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(10, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
289
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, to_timestamp(1646574000000 / 1000), to_timestamp(1646574300000 / 1000), 'pedestrian', 256, NULL, '2022-03-06 15:03:01.869', NULL, NULL, '2022-03-06 15:43:02.455', NULL, 'ok');
|
|
290
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 9, 64, 0, to_timestamp(1649656200000 / 1000), to_timestamp(1649656500000 / 1000), 'pedestrian', 3, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
291
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 9, 64, 0, to_timestamp(1649655600000 / 1000), to_timestamp(1649655900000 / 1000), 'pedestrian', 3, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
292
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 9, 64, 0, to_timestamp(1649655900000 / 1000), to_timestamp(1649656200000 / 1000), 'pedestrian', 0, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
293
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 9, 64, 0, to_timestamp(1649656200000 / 1000), to_timestamp(1649656500000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.443', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
294
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 9, 64, 0, to_timestamp(1649655600000 / 1000), to_timestamp(1649655900000 / 1000), 'pedestrian', 4, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
295
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 9, 64, 0, to_timestamp(1649655900000 / 1000), to_timestamp(1649656200000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
296
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 9, 64, 0, to_timestamp(1649656200000 / 1000), to_timestamp(1649656500000 / 1000), 'pedestrian', 2, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
297
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 9, 64, 0, to_timestamp(1649655600000 / 1000), to_timestamp(1649655900000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
298
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 9, 64, 0, to_timestamp(1649655900000 / 1000), to_timestamp(1649656200000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.098', NULL, 'ok');
|
|
299
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(10, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.888', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
300
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(15, 2, 71, 0, to_timestamp(1648509900000 / 1000), to_timestamp(1648510200000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.889', NULL, NULL, '2022-03-29 02:23:01.321', NULL, 'ok');
|
|
301
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(15, 2, 71, 0, to_timestamp(1648510200000 / 1000), to_timestamp(1648510500000 / 1000), 'pedestrian', 2, NULL, '2022-03-29 02:03:00.889', NULL, NULL, '2022-03-29 02:23:01.322', NULL, 'ok');
|
|
302
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(15, 2, 71, 0, to_timestamp(1648510500000 / 1000), to_timestamp(1648510800000 / 1000), 'pedestrian', 0, NULL, '2022-03-29 02:03:00.889', NULL, NULL, '2022-03-29 02:23:01.322', NULL, 'ok');
|
|
303
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 9, 64, 0, to_timestamp(1649656200000 / 1000), to_timestamp(1649656500000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
304
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 9, 64, 0, to_timestamp(1649655600000 / 1000), to_timestamp(1649655900000 / 1000), 'pedestrian', 3, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
305
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 9, 64, 0, to_timestamp(1649655900000 / 1000), to_timestamp(1649656200000 / 1000), 'pedestrian', 0, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
306
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 9, 64, 0, to_timestamp(1649656200000 / 1000), to_timestamp(1649656500000 / 1000), 'pedestrian', 1, NULL, '2022-04-11 08:03:12.444', NULL, NULL, '2022-04-11 08:43:07.099', NULL, 'ok');
|
|
307
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, to_timestamp(1651202700000 / 1000), to_timestamp(1651203000000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.980', NULL, 'ok');
|
|
308
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, to_timestamp(1652613900000 / 1000), to_timestamp(1652614200000 / 1000), 'pedestrian', 40, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
309
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, to_timestamp(1652614200000 / 1000), to_timestamp(1652614500000 / 1000), 'pedestrian', 36, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
310
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(1, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 231, NULL, '2022-03-06 15:03:02.262', NULL, NULL, '2022-03-06 15:23:02.643', NULL, 'ok');
|
|
311
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 117, NULL, '2022-03-06 15:03:02.262', NULL, NULL, '2022-03-06 15:23:02.643', NULL, 'ok');
|
|
312
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 92, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
313
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(2, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 123, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
314
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 102, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
315
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 138, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
316
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(3, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 133, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
317
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 208, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
318
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 225, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
319
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(4, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 249, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
320
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 114, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
321
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 89, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.644', NULL, 'ok');
|
|
322
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 133, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
323
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 104, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
324
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 151, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
325
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 140, NULL, '2022-03-06 15:03:02.263', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
326
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 202, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
327
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 217, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
328
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 244, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
329
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 112, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
330
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 95, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
331
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(8, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 132, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
332
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, to_timestamp(1646573100000 / 1000), to_timestamp(1646573400000 / 1000), 'pedestrian', 102, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.645', NULL, 'ok');
|
|
333
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, to_timestamp(1646573400000 / 1000), to_timestamp(1646573700000 / 1000), 'pedestrian', 140, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.646', NULL, 'ok');
|
|
334
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(9, 1, 42, 0, to_timestamp(1646573700000 / 1000), to_timestamp(1646574000000 / 1000), 'pedestrian', 131, NULL, '2022-03-06 15:03:02.264', NULL, NULL, '2022-03-06 15:23:02.646', NULL, 'ok');
|
|
335
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, to_timestamp(1651203000000 / 1000), to_timestamp(1651203300000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
336
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(14, 2, 71, 0, to_timestamp(1651203300000 / 1000), to_timestamp(1651203600000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
337
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, to_timestamp(1651202700000 / 1000), to_timestamp(1651203000000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
338
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 2, 71, 0, to_timestamp(1651203000000 / 1000), to_timestamp(1651203300000 / 1000), 'pedestrian', 0, NULL, '2022-04-29 06:03:01.629', NULL, NULL, '2022-04-29 06:23:01.981', NULL, 'ok');
|
|
339
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 10, 82, 0, to_timestamp(1649657700000 / 1000), to_timestamp(1649658000000 / 1000), 'pedestrian', 3, NULL, '2022-04-11 08:43:07.486', NULL, NULL, '2022-04-11 09:03:08.979', NULL, 'ok');
|
|
340
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(6, 10, 82, 0, to_timestamp(1649658000000 / 1000), to_timestamp(1649658300000 / 1000), 'pedestrian', 3, NULL, '2022-04-11 08:43:07.486', NULL, NULL, '2022-04-11 09:03:08.979', NULL, 'ok');
|
|
341
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(5, 13, 32, 0, to_timestamp(1652614500000 / 1000), to_timestamp(1652614800000 / 1000), 'pedestrian', 35, NULL, '2022-05-15 14:03:22.792', NULL, NULL, '2022-05-15 14:23:19.171', NULL, 'ok');
|
|
342
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1652613900000 / 1000), to_timestamp(1652614200000 / 1000), 'pedestrian', 49, NULL, '2022-05-15 14:03:22.793', NULL, NULL, '2022-05-15 14:23:19.172', NULL, 'ok');
|
|
343
|
+
INSERT INTO flow_measurements (sink_id, cube_id, sequence_number, analytic_id, start_timestamp, end_timestamp, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by, data_validity) VALUES(7, 13, 32, 0, to_timestamp(1652614200000 / 1000), to_timestamp(1652614500000 / 1000), 'pedestrian', 121, NULL, '2022-05-15 14:03:22.793', NULL, NULL, '2022-05-15 14:23:19.172', NULL, 'ok');
|