-
Notifications
You must be signed in to change notification settings - Fork 0
/
docs10a17junho.json
executable file
·7317 lines (7317 loc) · 217 KB
/
docs10a17junho.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"value" : [{
"_score": 1.0,
"_type": "items",
"_id": "1007006738351120384_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "18",
"tweet": "18h08 - ATEN\u00c7\u00c3O! Bloqueio total nos dois sentidos da Av. Francisco Silveira Bitencourt com a Av. Pl\u00ednio Kroeff em decorr\u00eancia de manifestantes na via. Tr\u00e2nsito muito carregado nas duas vias agora.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007006738351120384",
"location": "",
"date": "2018-06-13 18:08:10",
"timezone": "-03",
"local": [
"Av. Francisco Silveira Bitencourt",
"Av. Pl\u00ednio Kroeff"
],
"id": "1007006738351120384",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007727361482162177_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "17",
"tweet": "17h51 - Principais vias da Capital com tr\u00e2nsito muito carregado neste fim de tarde de sexta-feira, 15. Maior fluxo permanece no entorno da Rodovi\u00e1ria e na \u00e1rea central da cidade. T\u00fanel da Concei\u00e7\u00e3o com pontos de lentid\u00e3o nos dois sentidos da via agora.",
"hashtags": [],
"day": 5,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007727361482162177",
"location": "",
"date": "2018-06-15 17:51:40",
"timezone": "-03",
"local": [
"Principais vias da Capital",
"Rodovi\u00e1ria",
"T\u00fanel da Concei\u00e7\u00e3o"
],
"id": "1007727361482162177",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007241904575180800_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "09",
"tweet": "09h43 - Direto das c\u00e2meras da EPTC: Servi\u00e7o sendo realizado na Av. Osvaldo Aranha sentido centro/bairro pr\u00f3ximo da Av. Jos\u00e9 Bonif\u00e1cio. Tr\u00e2nsito acentuado no trecho. Aten\u00e7\u00e3o na via, motorista! pic.twitter.com/ffmAL4ybnT",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007241904575180800",
"location": "",
"date": "2018-06-14 09:42:38",
"timezone": "-03",
"local": [
"Av. Osvaldo Aranha",
"Av. Jos\u00e9 Bonif\u00e1cio"
],
"id": "1007241904575180800",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007240686473793536_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "09",
"tweet": "09h36 - Tr\u00e2nsito carregado na Edvaldo P. Paiva no cruzamento com a Aureliano de F. Pinto. Servi\u00e7o \u00e9 realizado no cruzamento. Melhor evitar a regi\u00e3o nesse momento. pic.twitter.com/Fax7lYIv7a",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007240686473793536",
"location": "",
"date": "2018-06-14 09:37:47",
"timezone": "-03",
"local": [
"Edvaldo P. Paiva",
"Aureliano"
],
"id": "1007240686473793536",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007237509905108992_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "09",
"tweet": "09h24 - Van j\u00e1 saiu ap\u00f3s estragar na Av. da Legalidade, mas agora um carro acabou tamb\u00e9m entrando em pane mec\u00e2nica no mesmo local na chegada \u00e0 Capital. Fluxo bastante carregado no trecho. Aten\u00e7\u00e3o na via! pic.twitter.com/R8ZL8Yn76E",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007237509905108992",
"location": "",
"date": "2018-06-14 09:25:10",
"timezone": "-03",
"local": [
"Av. da Legalidade",
"chegada \u00e0 Capital"
],
"id": "1007237509905108992",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007234875957628929_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "09",
"tweet": "09h15 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Carro estragou na Av. Nilo Pe\u00e7anha sentido bairro/centro entre a Av. Carlos Gomes e a R. Carazinho. Fluxo bastante intenso na via. pic.twitter.com/AqP01L4Hoi",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007234875957628929",
"location": "",
"date": "2018-06-14 09:14:42",
"timezone": "-03",
"local": [
"Av. Nilo Pe\u00e7anha",
"Av. Carlos Gomes",
"R. Carazinho"
],
"id": "1007234875957628929",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007232490950578176_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "09",
"tweet": "09h05 - Vias com fluxo carregado nessa quinta, 14:Av. da Legalidade e da Democracia (I/C) - Van estragou - (FOTO)- 3\u00aa perim x Nilo Pe\u00e7anha (S/N)- Prot\u00e1sio Alves x Vicente da Fontoura (B/C)- Salvador Fran\u00e7a entre Bento e Ipiranga (S/N)- Goethe x Mostardeiro (2 sentidos) pic.twitter.com/hjYaiYy2kq",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007232490950578176",
"location": "",
"date": "2018-06-14 09:05:13",
"timezone": "-03",
"local": [
"Democracia",
"3\u00aa",
"Nilo Pe\u00e7anha",
"Prot\u00e1sio Alves",
"Vicente da Fontoura",
"Salvador Fran\u00e7a entre Bento e Ipiranga",
"Goethe",
"Mostardeiro"
],
"id": "1007232490950578176",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007227481403940864_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "08",
"tweet": "08h45 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Corredor de \u00f4nibus da Av. Farrapos com a Ernesto Alves est\u00e1 fechado para servi\u00e7os de manuten\u00e7\u00e3o. Por isso, os coletivos v\u00e3o precisar trafegar na via junto com os demais ve\u00edculos em ambos os sentidos. Fluxo acentuado na via, mas sem lentid\u00e3o. pic.twitter.com/VxgdzniS44",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007227481403940864",
"location": "",
"date": "2018-06-14 08:45:19",
"timezone": "-03",
"local": [
"Av. Farrapos",
"Ernesto Alves"
],
"id": "1007227481403940864",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007222418014920704_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "08",
"tweet": "08h24 - N\u00e3o h\u00e1 feridos no local. Apenas danos materiais. Lembramos que a van que estragou na Legalidade continua aguardando guincho para remo\u00e7\u00e3o.",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007222418014920704",
"location": "",
"date": "2018-06-14 08:25:12",
"timezone": "-03",
"local": [],
"id": "1007222418014920704",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007222142461767680_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "08",
"tweet": "08h23 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Acidente entre carro e \u00f4nibus embaixo da al\u00e7a de acesso da Ponte do Gua\u00edba na Av. da Legalidade sentido interior/capital. Tr\u00e2nsito carregado na via. Melhor evitar a regi\u00e3o. Farrapos \u00e9 alternativa. pic.twitter.com/YgsdI27fDm",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007222142461767680",
"location": "",
"date": "2018-06-14 08:24:06",
"timezone": "-03",
"local": [
"Ponte do Gua\u00edba",
"Av. da Legalidade"
],
"id": "1007222142461767680",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007215039101751296_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "07",
"tweet": "07h56 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Van estragou na chegada a Porto Alegre pela Avenida da Legalidade e da da Democracia na pista da direita. Fluxo muito carregado na via. pic.twitter.com/LnzXEP3wYg",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007215039101751296",
"location": "",
"date": "2018-06-14 07:55:53",
"timezone": "-03",
"local": [
"chegada a Porto Alegre",
"Avenida da Legalidade e da da Democracia"
],
"id": "1007215039101751296",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007212907959062528_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "07",
"tweet": "07h48 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Acidente entre carro e moto na Av. da Cavalhada sentido centro/bairro entre a R. Dr. Barcelos e a Otto Niemeyer. EPTC no local. SAMU e BM em deslocamento. Fluxo acentuado na via. pic.twitter.com/jaay27Ozja",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007212907959062528",
"location": "",
"date": "2018-06-14 07:47:25",
"timezone": "-03",
"local": [
"Av. da Cavalhada",
"R. Dr. Barcelos",
"Otto Niemeyer"
],
"id": "1007212907959062528",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007212333771513856_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "07",
"tweet": "07h45 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - \u00d4nibus em pane mec\u00e2nica na Prot\u00e1sio Alves sentido C/B pr\u00f3ximo a Ant\u00f4nio de Carvalho. Fluxo acentuado na via. pic.twitter.com/ZFnMiUdcHQ",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007212333771513856",
"location": "",
"date": "2018-06-14 07:45:08",
"timezone": "-03",
"local": [
"Prot\u00e1sio Alves",
"Ant\u00f4nio de Carvalho"
],
"id": "1007212333771513856",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007205360900460544_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "07",
"tweet": "07h17 - Bom dia! Tr\u00e2nsito j\u00e1 \u00e9 bastante intenso na chegada a Porto Alegre pela Avenida da Legalidade e da Democracia nessa quinta-feira, 14. N\u00e3o h\u00e1 acidentes no trecho.E lembre-se, em caso de acidentes ligue: SAMU 192, EPTC 118 ou BM 190! pic.twitter.com/RYjWl5MlEf",
"hashtags": [],
"day": 4,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007205360900460544",
"location": "",
"date": "2018-06-14 07:17:25",
"timezone": "-03",
"local": [
"chegada a Porto Alegre",
"Avenida da Legalidade e da Democracia"
],
"id": "1007205360900460544",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007015989656145920_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "pos",
"user_id": "80574781",
"hour": "18",
"tweet": "18h44 - Via liberada na Av. Francisco Silveira Bitencourt. Tr\u00e2nsito ainda est\u00e1 muito carregado no local.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007015989656145920",
"location": "",
"date": "2018-06-13 18:44:56",
"timezone": "-03",
"local": [
"Av. Francisco Silveira Bitencourt"
],
"id": "1007015989656145920",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007012268129898502_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "18",
"tweet": "18h30 - Tr\u00e2nsito muito carregado nas principais vias da Capital agora. Maiores fluxos agora:Legalidade (2sent)T\u00fanel da Concei\u00e7\u00e3o(C/B)Osvaldo Aranha(C/B) pr\u00f3x a Ven\u00e2ncio AiresIpiranga (C/B)pr\u00f3x a Ant\u00f4nio de CarvalhoNonoai(N/S) pr\u00f3x a Campos Velho",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007012268129898502",
"location": "",
"date": "2018-06-13 18:30:08",
"timezone": "-03",
"local": [
"2sent)T\u00fanel da Concei\u00e7\u00e3o(C",
"Ven\u00e2ncio AiresIpiranga",
"Ant\u00f4nio de CarvalhoNonoai(N",
"Campos"
],
"id": "1007012268129898502",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007007016567627782_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "18",
"tweet": "18h09 - H\u00e1 bloqueios tamb\u00e9m no cruzamento da Av. Francisco Silveira Bitencourt com a Av. Bernardino Silveira Amorim.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007007016567627782",
"location": "",
"date": "2018-06-13 18:09:16",
"timezone": "-03",
"local": [
"Av. Francisco Silveira Bitencourt",
"Av. Bernardino Silveira Amorim"
],
"id": "1007007016567627782",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007737207602413573_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "18",
"tweet": "18h30 - Informamos que amanh\u00e3, 16, ser\u00e3o realizadas obras de asfaltamento no T\u00fanel da Concei\u00e7\u00e3o, sentido C/B, pr\u00f3ximo a R. Sarmento Leite, das 7h \u00e0s 17h. N\u00e3o ocorrer\u00e3o bloqueios totais, somente bloqueios parciais ao longo do dia. Melhores op\u00e7\u00f5es em caso de congestionamento \ud83d\udc47\ud83c\udffc pic.twitter.com/g5LRkSWvrj",
"hashtags": [],
"day": 5,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007737207602413573",
"location": "",
"date": "2018-06-15 18:30:47",
"timezone": "-03",
"local": [
"T\u00fanel da Concei\u00e7\u00e3o",
"R. Sarmento Leite"
],
"id": "1007737207602413573",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007735284417613824_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "pos",
"user_id": "80574781",
"hour": "18",
"tweet": "18h23 - Entardecer colorido na Capital nesta sexta-feira, 15. Tr\u00e2nsito continua carregado no acesso a cidade pela Legalidade, mas j\u00e1 flui sem lentid\u00e3o agora. pic.twitter.com/Y3cE9SCqvh",
"hashtags": [],
"day": 5,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007735284417613824",
"location": "",
"date": "2018-06-15 18:23:09",
"timezone": "-03",
"local": [
"Capital"
],
"id": "1007735284417613824",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007728974108209152_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "17",
"tweet": "17h58 - Vias com tr\u00e2nsito carregado agora:- Mau\u00e1 a partir da General C\u00e2mara- T\u00fanel da Concei\u00e7\u00e3o (2 sent)- Osvaldo Aranha (C/B) a partir da Ven\u00e2ncio Aires- Terceira Perimetral (2 sent)- Prot\u00e1sio Alves (C/B) pr\u00f3x a Carlos Gomes *N\u00e3o temos registro de acidentes nestas vias.",
"hashtags": [],
"day": 5,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007728974108209152",
"location": "",
"date": "2018-06-15 17:58:04",
"timezone": "-03",
"local": [
"Mau\u00e1",
"T\u00fanel da Concei\u00e7\u00e3o",
"2 sent)- Osvaldo Aranha",
"Ven\u00e2ncio Aires- Terceira Perimetral",
"Prot\u00e1sio Alves",
"Carlos Gomes"
],
"id": "1007728974108209152",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1007727363386470401_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "17",
"tweet": "17h51 - Melhores op\u00e7\u00f5es neste momento:- Quem ainda n\u00e3o acessou a Legalidade melhor op\u00e7\u00e3o \u00e9 entrar na cidade pela Volunt\u00e1rios- Quem j\u00e1 se encontra na Legalidade melhor op\u00e7\u00e3o \u00e9 seguir pela Mau\u00e1, j\u00e1 que o T\u00fanel est\u00e1 bem parado",
"hashtags": [],
"day": 5,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1007727363386470401",
"location": "",
"date": "2018-06-15 17:51:40",
"timezone": "-03",
"local": [
"Mau\u00e1"
],
"id": "1007727363386470401",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006574446910627841_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "13",
"tweet": "13h30 - Boa tarde! Tr\u00e2nsito fluindo bem nas vias da Capital nessa ter\u00e7a, 12. N\u00e3o temos acidentes em atendimento e sem previs\u00f5es de i\u00e7amento do v\u00e3o m\u00f3vel da Ponte do Gua\u00edba para essa tarde.E lembre-se: O cinto de seguran\u00e7a salva vidas e n\u00e3o \u00e9 acess\u00f3rio. Use sempre! #DicaEPTC pic.twitter.com/UdamdAj1Pz",
"hashtags": [
"#DicaEPTC"
],
"day": 2,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006574446910627841",
"location": "",
"date": "2018-06-12 13:30:24",
"timezone": "-03",
"local": [
"Capital",
"Ponte do Gua\u00edba"
],
"id": "1006574446910627841",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006566750622797824_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "12",
"tweet": "12h59 - Capotamento na Av. Icara\u00ed sentido norte/sul pr\u00f3ximo a R. Itapitocai. N\u00e3o houve feridos. EPTC no local. Tr\u00e2nsito acentuado na via.",
"hashtags": [],
"day": 2,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006566750622797824",
"location": "",
"date": "2018-06-12 12:59:49",
"timezone": "-03",
"local": [
"Av. Icara\u00ed",
"R. Itapitocai"
],
"id": "1006566750622797824",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006917004106850304_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "12",
"tweet": "12h12 - Via totalmente liberada na R. Anita Garibaldi esquina com a R. Azevedo Sodr\u00e9.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006917004106850304",
"location": "",
"date": "2018-06-13 12:11:36",
"timezone": "-03",
"local": [
"R. Anita Garibaldi",
"R. Azevedo Sodr\u00e9"
],
"id": "1006917004106850304",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006914194523000832_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "12",
"tweet": "12h - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Atropelamento por carro na R. Lu\u00edza Rocco bem pr\u00f3ximo da Av. Prof. Oscar Pereira, bairro Gl\u00f3ria. EPTC no local. SAMU e BM em deslocamento. Tr\u00e2nsito acentuado na via.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006914194523000832",
"location": "",
"date": "2018-06-13 12:00:26",
"timezone": "-03",
"local": [
"R. Lu\u00edza Rocco",
"Av. Prof. Oscar Pereira",
"bairro Gl\u00f3ria"
],
"id": "1006914194523000832",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006912169169031174_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "11",
"tweet": "@Assisgb Ol\u00e1 @assisgb! Agradecemos seu aviso, mas verificamos a situa\u00e7\u00e3o dos sem\u00e1foros e est\u00e3o funcionando normalmente.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006912169169031174",
"location": "",
"date": "2018-06-13 11:52:23",
"timezone": "-03",
"local": [
"Agradecemos"
],
"id": "1006912169169031174",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006909386751709184_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "11",
"tweet": "11h41 - Informa\u00e7\u00f5es sobre as ocorr\u00eancias:Lembramos que na Padre Cacique duas faixas est\u00e3o bloqueadas para a realiza\u00e7\u00e3o desse servi\u00e7o que deve durar at\u00e9 o fim da tarde. Alternativa \u00e9 a Edvaldo P. Paiva.Quem sai de Canoas em dire\u00e7\u00e3o \u00e0 Capital a melhor alternativa \u00e9 a Freeway.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006909386751709184",
"location": "",
"date": "2018-06-13 11:41:19",
"timezone": "-03",
"local": [
"Padre Cacique",
"Edvaldo P. Paiva",
"Freeway"
],
"id": "1006909386751709184",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006909383429754880_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "11",
"tweet": "11h41 - Vias com fluxo carregado por conta de servi\u00e7os e ocorr\u00eancias em andamento:Av. Padre Cacique x R. Ot\u00e1vio Dutra (B/C) - imedia\u00e7\u00f5es Beira-RioR. Anita Garibaldi x R. Azevedo Sodr\u00e9 - risco de queda de posteR. 18 de Nov. x Cear\u00e1 - BR-116 imedia\u00e7\u00f5es Aeroporto (Canoas / POA) pic.twitter.com/1iUEyzZl7Z",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006909383429754880",
"location": "",
"date": "2018-06-13 11:41:19",
"timezone": "-03",
"local": [
"Av. Padre Cacique",
"R. Ot\u00e1vio Dutra",
"RioR. Anita Garibaldi",
"R. Azevedo Sodr\u00e9",
"BR-116 imedia\u00e7\u00f5es Aeroporto"
],
"id": "1006909383429754880",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006902596395663362_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "11",
"tweet": "11h14 - Carros de pequeno porte conseguem trafegar normalmente na via, mas quem puder evitar a regi\u00e3o \u00e9 o mais recomend\u00e1vel nesse momento. Ceee j\u00e1 foi acionada para resolu\u00e7\u00e3o do problema.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006902596395663362",
"location": "",
"date": "2018-06-13 11:14:20",
"timezone": "-03",
"local": [],
"id": "1006902596395663362",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006902591715004417_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "11",
"tweet": "11h14 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Poste com risco de queda gera bloqueio para ve\u00edculos de grande porte na R. Anita Garibaldi esquina com a R. Azevedo Sodr\u00e9, bairro Mont\u2019Serrat. Desvio sendo realizado na contram\u00e3o pela R. Jos\u00e9 Scutari, Lu\u00eds Cosme e Av. Andara\u00ed. Fluxo carregado na via. pic.twitter.com/hSxD8NYWmy",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006902591715004417",
"location": "",
"date": "2018-06-13 11:14:19",
"timezone": "-03",
"local": [
"R. Anita Garibaldi",
"R. Azevedo Sodr\u00e9",
"R. Jos\u00e9 Scutari",
"Lu\u00eds Cosme",
"Av. Andara\u00ed"
],
"id": "1006902591715004417",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006898583495270401_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "10",
"tweet": "10h58 - \u26a0\ufe0f ATEN\u00c7\u00c3O \u26a0\ufe0f - Lentid\u00e3o na BR-116 nas pr\u00f3ximidades do Aeroporto no sentido Canoas / Porto Alegre por conta de servi\u00e7o sendo realizado na 18 de Novembro no cruzamento com a Av. Cear\u00e1. Melhor evitar a regi\u00e3o. Op\u00e7\u00e3o \u00e9 utilizar a Freeway. pic.twitter.com/vj8g8gVu4q",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006898583495270401",
"location": "",
"date": "2018-06-13 10:58:24",
"timezone": "-03",
"local": [
"BR-116",
"Aeroporto",
"18 de Novembro",
"Av. Cear\u00e1",
"Freeway"
],
"id": "1006898583495270401",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006893309086728193_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "10",
"tweet": "\"J\u00e1 volto!\" \ud83e\udd26\u200d\u2642\ufe0f#EssaVagaN\u00e3o\u00c9tua pic.twitter.com/898ohEu4RF",
"hashtags": [
"#EssaVagaN\u00e3o\u00c9tua"
],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006893309086728193",
"location": "",
"date": "2018-06-13 10:37:26",
"timezone": "-03",
"local": [],
"id": "1006893309086728193",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006975858689626112_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "16",
"tweet": "16h05 - EPTC informa tr\u00e2nsito e transporte para Internacional x Vasco. Partida \u00e9 v\u00e1lida pela 12\u00aa rodada do Campeonato Brasileiro e ser\u00e1 realizada hoje, \u00e0s 21h45, no Est\u00e1dio Beira-Rio com previs\u00e3o de 30 mil torcedores. Saiba mais: https://goo.gl/kyGbkU\u00a0 pic.twitter.com/FBxh29TCyu",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006975858689626112",
"location": "",
"date": "2018-06-13 16:05:28",
"timezone": "-03",
"local": [
"Internacional",
"Vasco. Partida",
"Campeonato Brasileiro"
],
"id": "1006975858689626112",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006974815041937408_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "16",
"tweet": "16h01 - \u00d4nibus em pane mec\u00e2nica na faixa central da Av. Loureiro da Silva, sentido centro/bairro, embaixo do Viaduto da Borges de Medeiros. Tr\u00e2nsito bem carregado na via. pic.twitter.com/XIj7lzoPWx",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006974815041937408",
"location": "",
"date": "2018-06-13 16:01:19",
"timezone": "-03",
"local": [
"Av. Loureiro da Silva",
"Viaduto da Borges de Medeiros"
],
"id": "1006974815041937408",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006968620411441152_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neg",
"user_id": "80574781",
"hour": "15",
"tweet": "15h36 - ATEN\u00c7\u00c3O! Atropelamento por moto na faixa central da Av. Assis Brasil, sentido centro/bairro, pr\u00f3ximo a Av. do Forte. Samu no local. Tr\u00e2nsito bem carregado na via. pic.twitter.com/4qAA4IU1Tb",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006968620411441152",
"location": "",
"date": "2018-06-13 15:36:42",
"timezone": "-03",
"local": [
"Av. Assis Brasil",
"Av. do Forte"
],
"id": "1006968620411441152",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006965670322540544_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "neu",
"user_id": "80574781",
"hour": "15",
"tweet": "15h24 - Trajeto da prociss\u00e3o de Santo Ant\u00f4nio que est\u00e1 em andamento:- Paulino Chaves- Delfino Riet- Caldre Fi\u00e3o- Joaquim Cruz- Paulino Chaves*O tr\u00e2nsito est\u00e1 bem carregado na regi\u00e3o, uma boa op\u00e7\u00e3o para os motoristas que desejam evitar a Bento Gon\u00e7alves \u00e9 a Ipiranga.",
"hashtags": [],
"day": 3,
"retweet": null,
"user_rt": "None",
"link": "https://twitter.com/EPTC_POA/status/1006965670322540544",
"location": "",
"date": "2018-06-13 15:24:58",
"timezone": "-03",
"local": [
"Paulino Chaves- Delfino Riet- Caldre",
"Joaquim Cruz- Paulino Chaves*O",
"Bento Gon\u00e7alves",
"Ipiranga"
],
"id": "1006965670322540544",
"essid": ""
},
"_index": "twint"
},
{
"_score": 1.0,
"_type": "items",
"_id": "1006961211869679624_raw_",
"_source": {
"username": "EPTC_POA",
"polarity": "pos",