@golemio/flow 1.0.7 → 1.0.8-dev.577679507
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/.config.json +3 -0
- package/db/example/00_truncate_tables.sql +10 -0
- package/db/example/01_wifiHistoricData.sql +49 -0
- package/db/example/02_countersData.sql +99 -0
- package/db/example/03_flowData.sql +343 -0
- package/db/example/99_runUpdateProcedure.sql +1 -0
- package/db/migrations/postgresql/.config.json +3 -0
- package/db/migrations/postgresql/20220616144407-flow.js +53 -0
- package/db/migrations/postgresql/package.json +3 -0
- package/db/migrations/postgresql/sqls/20220616144407-flow-down.sql +15 -0
- package/db/migrations/postgresql/sqls/20220616144407-flow-up.sql +467 -0
- package/db/migrations/postgresql/sqls/package.json +3 -0
- package/dist/integration-engine/CountersWorker.d.ts +14 -0
- package/dist/integration-engine/CountersWorker.js +120 -0
- package/dist/integration-engine/CountersWorker.js.map +1 -0
- package/dist/integration-engine/FlowWorker.js +6 -2
- package/dist/integration-engine/FlowWorker.js.map +1 -1
- package/dist/integration-engine/queueDefinitions.js +27 -0
- package/dist/integration-engine/queueDefinitions.js.map +1 -1
- package/dist/integration-engine/transformations/EcoCounterMeasurementsTransformation.d.ts +6 -0
- package/dist/integration-engine/transformations/EcoCounterMeasurementsTransformation.js +42 -0
- package/dist/integration-engine/transformations/EcoCounterMeasurementsTransformation.js.map +1 -0
- package/dist/integration-engine/transformations/EcoCounterTransformation.d.ts +17 -0
- package/dist/integration-engine/transformations/EcoCounterTransformation.js +99 -0
- package/dist/integration-engine/transformations/EcoCounterTransformation.js.map +1 -0
- package/dist/output-gateway/models/PedestriansLocationsModel.js +4 -2
- package/dist/output-gateway/models/PedestriansLocationsModel.js.map +1 -1
- package/dist/output-gateway/models/PedestriansMeasurementsModel.js +4 -2
- package/dist/output-gateway/models/PedestriansMeasurementsModel.js.map +1 -1
- package/dist/schema-definitions/index.d.ts +185 -0
- package/dist/schema-definitions/index.js +197 -2
- package/dist/schema-definitions/index.js.map +1 -1
- package/docs/assets/flow_erd.png +0 -0
- package/docs/implementation_documentation_CZ.md +157 -0
- package/docs/implementation_documentation_Counters.md +166 -0
- package/package.json +62 -58
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:00:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
2
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:00:00.000', 'Stromovous', 'Avu ', 4, 'dir2', 'wifi1');
|
|
3
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:05:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
4
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:05:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
5
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:10:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
6
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:10:00.000', 'Stromovous', 'Avu ', 2, 'dir2', 'wifi1');
|
|
7
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:15:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
8
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:15:00.000', 'Stromovous', 'Avu ', 4, 'dir2', 'wifi1');
|
|
9
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:20:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
10
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:20:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
11
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:25:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
12
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:25:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
13
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:30:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
14
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:30:00.000', 'Stromovous', 'Avu ', 2, 'dir2', 'wifi1');
|
|
15
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:35:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
16
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:35:00.000', 'Stromovous', 'Avu ', 4, 'dir2', 'wifi1');
|
|
17
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:40:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
18
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:40:00.000', 'Stromovous', 'Avu ', 2, 'dir2', 'wifi1');
|
|
19
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:45:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
20
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:45:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
21
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:50:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
22
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:50:00.000', 'Stromovous', 'Avu ', 2, 'dir2', 'wifi1');
|
|
23
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:55:00.000', 'Avu ', 'Stromovous', 2, 'dir1', 'wifi1');
|
|
24
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 10:55:00.000', 'Stromovous', 'Avu ', 2, 'dir2', 'wifi1');
|
|
25
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:00:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
26
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:00:00.000', 'Stromovous', 'Avu ', 2, 'dir2', 'wifi1');
|
|
27
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:05:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
28
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:05:00.000', 'Stromovous', 'Avu ', 4, 'dir2', 'wifi1');
|
|
29
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:10:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
30
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:10:00.000', 'Stromovous', 'Avu ', 4, 'dir2', 'wifi1');
|
|
31
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:15:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
32
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:15:00.000', 'Stromovous', 'Avu ', 4, 'dir2', 'wifi1');
|
|
33
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:20:00.000', 'Avu ', 'Stromovous', 2, 'dir1', 'wifi1');
|
|
34
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:20:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
35
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:25:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
36
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:25:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
37
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:30:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
38
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:30:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
39
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:35:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
40
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:35:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
41
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:40:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
42
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:40:00.000', 'Stromovous', 'Avu ', 2, 'dir2', 'wifi1');
|
|
43
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:45:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
44
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:45:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
45
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:50:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
46
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:50:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
47
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:55:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
48
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 11:55:00.000', 'Stromovous', 'Avu ', 0, 'dir2', 'wifi1');
|
|
49
|
+
INSERT INTO pedestrians_wifi (measured_from, start_region, end_region, value, direction_id, location_id) VALUES('2020-11-24 12:00:00.000', 'Avu ', 'Stromovous', 0, 'dir1', 'wifi1');
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
INSERT INTO counters_directions (id,vendor_id,locations_id,"name",create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by) VALUES
|
|
2
|
+
('ecoCounter-104061215','104061215','ecoCounter-100061215','Pyrobox OICT Pěší Z viaduktu (směr Výstaviště)',NULL,'2020-08-24 14:08:26.597+02',NULL,NULL,'2020-11-11 06:15:02.549+01',NULL),
|
|
3
|
+
('ecoCounter-101065230','101065230','ecoCounter-100065230','Stromovka IN - směr viadukt',NULL,'2020-11-12 06:15:02.2+01',NULL,NULL,'2021-04-21 06:15:03.111+02',NULL),
|
|
4
|
+
('ecoCounter-353231242','353231242','ecoCounter-100065230','Stromovka [Pedestrian IN]',NULL,'2020-11-17 06:15:02.22+01',NULL,NULL,'2020-11-21 06:15:05.918+01',NULL),
|
|
5
|
+
('ecoCounter-353240727','353240727','ecoCounter-100065230','Stromovka [Pedestrian IN]',NULL,'2020-11-27 06:15:03.143+01',NULL,NULL,'2020-12-04 06:15:04.67+01',NULL),
|
|
6
|
+
('ecoCounter-353231243','353231243','ecoCounter-100065230','Stromovka [Pedestrian OUT]',NULL,'2020-11-17 06:15:02.22+01',NULL,NULL,'2020-11-21 06:15:05.918+01',NULL),
|
|
7
|
+
('ecoCounter-102065230','102065230','ecoCounter-100065230','Stromovka OUT - směr stromovka',NULL,'2020-11-12 06:15:02.2+01',NULL,NULL,'2021-04-21 06:15:03.111+02',NULL),
|
|
8
|
+
('ecoCounter-353245239','353245239','ecoCounter-100065230','Stromovka [Pedestrian IN]',NULL,'2020-12-05 06:15:04.879+01',NULL,NULL,'2021-04-21 06:15:03.111+02',NULL),
|
|
9
|
+
('ecoCounter-353245241','353245241','ecoCounter-100065230','Stromovka [Pedestrian OUT]',NULL,'2020-12-05 06:15:04.879+01',NULL,NULL,'2021-04-21 06:15:03.111+02',NULL),
|
|
10
|
+
('ecoCounter-101061215','101061215','ecoCounter-100061215','Pyrobox OICT Pěší Pod viadukt (směr Dukelských hrdinů)',NULL,'2020-08-24 14:08:26.597+02',NULL,NULL,'2020-11-11 06:15:02.549+01',NULL),
|
|
11
|
+
('ecoCounter-102061215','102061215','ecoCounter-100061215','Pyrobox OICT Pěší Z viaduktu (směr Výstaviště)',NULL,'2020-08-24 14:08:26.597+02',NULL,NULL,'2020-11-11 06:15:02.549+01',NULL);
|
|
12
|
+
INSERT INTO counters_directions (id,vendor_id,locations_id,"name",create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by) VALUES
|
|
13
|
+
('ecoCounter-101047647','101047647','ecoCounter-100047647','Praha Pěší do centra',NULL,'2020-08-20 16:30:00.472+02',NULL,NULL,'2020-08-24 14:00:00.541+02',NULL),
|
|
14
|
+
('ecoCounter-103061215','103061215','ecoCounter-100061215','Pyrobox OICT Pěší Pod viadukt (směr Dukelských hrdinů)',NULL,'2020-08-24 14:08:26.597+02',NULL,NULL,'2020-11-11 06:15:02.549+01',NULL),
|
|
15
|
+
('ecoCounter-102047647','102047647','ecoCounter-100047647','Praha Pěší z centra',NULL,'2020-08-20 16:30:00.472+02',NULL,NULL,'2020-08-24 14:00:00.541+02',NULL),
|
|
16
|
+
('ecoCounter-353240728','353240728','ecoCounter-100065230','Stromovka [Pedestrian OUT]',NULL,'2020-11-27 06:15:03.143+01',NULL,NULL,'2020-12-04 06:15:04.67+01',NULL),
|
|
17
|
+
('ecoCounter-353235721','353235721','ecoCounter-100065230','Stromovka [Pedestrian IN]',NULL,'2020-11-22 06:15:00.458+01',NULL,NULL,'2020-11-26 06:15:02.917+01',NULL),
|
|
18
|
+
('ecoCounter-353235722','353235722','ecoCounter-100065230','Stromovka [Pedestrian OUT]',NULL,'2020-11-22 06:15:00.458+01',NULL,NULL,'2020-11-26 06:15:02.917+01',NULL);
|
|
19
|
+
|
|
20
|
+
INSERT INTO counters_locations (id,vendor_id,vendor,lat,lng,"name",route,create_batch_id,created_at,created_by,update_batch_id,updated_at,updated_by) VALUES
|
|
21
|
+
('ecoCounter-100047647','100047647','ecoCounter',50.05949686563836,14.419192187464143,'Praha - Podolí',NULL,NULL,'2020-08-20 16:30:00.464+02',NULL,NULL,'2020-08-24 14:00:00.474+02',NULL),
|
|
22
|
+
('ecoCounter-100065230','100065230','ecoCounter',50.10462,14.43019,'Stromovka',NULL,NULL,'2020-11-12 06:15:02.172+01',NULL,NULL,'2021-04-21 06:15:03.101+02',NULL),
|
|
23
|
+
('ecoCounter-100061215','100061215','ecoCounter',50.104059678004795,14.43173860586101,'Viadukt u Výstaviště',NULL,NULL,'2020-08-24 14:08:26.564+02',NULL,NULL,'2020-11-11 06:15:02.53+01',NULL);
|
|
24
|
+
|
|
25
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595469600000, 1595470500000, 'pedestrian', 2, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
26
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595470500000, 1595471400000, 'pedestrian', 0, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
27
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595471400000, 1595472300000, 'pedestrian', 0, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
28
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595472300000, 1595473200000, 'pedestrian', 0, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
29
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595473200000, 1595474100000, 'pedestrian', 3, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
30
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595474100000, 1595475000000, 'pedestrian', 3, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
31
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595475000000, 1595475900000, 'pedestrian', 3, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
32
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595475900000, 1595476800000, 'pedestrian', 13, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
33
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595476800000, 1595477700000, 'pedestrian', 10, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
34
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595477700000, 1595478600000, 'pedestrian', 13, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
35
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595478600000, 1595479500000, 'pedestrian', 19, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
36
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595479500000, 1595480400000, 'pedestrian', 8, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
37
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595480400000, 1595481300000, 'pedestrian', 20, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
38
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595481300000, 1595482200000, 'pedestrian', 35, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
39
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595482200000, 1595483100000, 'pedestrian', 21, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
40
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595483100000, 1595484000000, 'pedestrian', 46, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
41
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595484000000, 1595484900000, 'pedestrian', 31, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
42
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595484900000, 1595485800000, 'pedestrian', 33, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
43
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595485800000, 1595486700000, 'pedestrian', 25, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
44
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595486700000, 1595487600000, 'pedestrian', 31, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
45
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595487600000, 1595488500000, 'pedestrian', 42, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
46
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595488500000, 1595489400000, 'pedestrian', 34, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
47
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595489400000, 1595490300000, 'pedestrian', 22, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
48
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595490300000, 1595491200000, 'pedestrian', 39, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
49
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595491200000, 1595492100000, 'pedestrian', 32, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
50
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595492100000, 1595493000000, 'pedestrian', 23, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
51
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595493000000, 1595493900000, 'pedestrian', 40, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
52
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595493900000, 1595494800000, 'pedestrian', 27, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
53
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595494800000, 1595495700000, 'pedestrian', 30, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
54
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595495700000, 1595496600000, 'pedestrian', 33, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
55
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595496600000, 1595497500000, 'pedestrian', 46, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
56
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595497500000, 1595498400000, 'pedestrian', 26, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
57
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595498400000, 1595499300000, 'pedestrian', 38, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
58
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595499300000, 1595500200000, 'pedestrian', 43, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
59
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595500200000, 1595501100000, 'pedestrian', 37, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
60
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595501100000, 1595502000000, 'pedestrian', 38, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
61
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595502000000, 1595502900000, 'pedestrian', 28, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
62
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595502900000, 1595503800000, 'pedestrian', 52, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
63
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595503800000, 1595504700000, 'pedestrian', 25, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
64
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595504700000, 1595505600000, 'pedestrian', 33, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
65
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595505600000, 1595506500000, 'pedestrian', 43, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
66
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595506500000, 1595507400000, 'pedestrian', 55, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
67
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595507400000, 1595508300000, 'pedestrian', 45, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
68
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595508300000, 1595509200000, 'pedestrian', 39, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
69
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595509200000, 1595510100000, 'pedestrian', 44, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
70
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595510100000, 1595511000000, 'pedestrian', 48, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
71
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595511000000, 1595511900000, 'pedestrian', 51, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
72
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595511900000, 1595512800000, 'pedestrian', 70, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
73
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595512800000, 1595513700000, 'pedestrian', 57, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
74
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595513700000, 1595514600000, 'pedestrian', 48, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
75
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595514600000, 1595515500000, 'pedestrian', 54, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
76
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595515500000, 1595516400000, 'pedestrian', 59, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
77
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595516400000, 1595517300000, 'pedestrian', 61, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
78
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595517300000, 1595518200000, 'pedestrian', 83, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
79
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595518200000, 1595519100000, 'pedestrian', 80, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
80
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595519100000, 1595520000000, 'pedestrian', 54, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
81
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595520000000, 1595520900000, 'pedestrian', 73, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
82
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595520900000, 1595521800000, 'pedestrian', 61, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
83
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595521800000, 1595522700000, 'pedestrian', 56, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
84
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595522700000, 1595523600000, 'pedestrian', 51, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
85
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595523600000, 1595524500000, 'pedestrian', 84, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
86
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595524500000, 1595525400000, 'pedestrian', 73, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
87
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595525400000, 1595526300000, 'pedestrian', 69, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
88
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595526300000, 1595527200000, 'pedestrian', 43, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
89
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595527200000, 1595528100000, 'pedestrian', 38, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
90
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595528100000, 1595529000000, 'pedestrian', 41, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
91
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595529000000, 1595529900000, 'pedestrian', 50, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
92
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595529900000, 1595530800000, 'pedestrian', 35, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
93
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595530800000, 1595531700000, 'pedestrian', 30, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
94
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595531700000, 1595532600000, 'pedestrian', 26, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
95
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595532600000, 1595533500000, 'pedestrian', 18, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
96
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595533500000, 1595534400000, 'pedestrian', 31, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
97
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595534400000, 1595535300000, 'pedestrian', 19, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
98
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595535300000, 1595536200000, 'pedestrian', 34, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|
|
99
|
+
INSERT INTO counters_detections (locations_id, directions_id, measured_from, measured_to, category, value, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by) VALUES('ecoCounter-100061215', 'ecoCounter-104061215', 1595536200000, 1595537100000, 'pedestrian', 13, -1, '2021-03-18 18:00:00.000', 'pp', -1, '2021-03-18 18:00:00.000', 'pp');
|