-
Notifications
You must be signed in to change notification settings - Fork 1
/
boston_old.json
23639 lines (23639 loc) · 854 KB
/
boston_old.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
{
"tweets": [
{
"cate": [
"T02"
],
"created_at": "2013-04-16T18:08:51Z",
"geolocation": {
"lat": "42.3443984985352",
"lon": "-71.0849762"
},
"lemmed_text": "Hoping this beautiful day will bring some peace and happiness to all those hurt from yesterday's\u2026 http://t.co/Pes8Q1EAch",
"text": "Hoping this beautiful day will bring some peace and happiness to all those hurting from yesterday's\u2026 http://t.co/Pes8Q1EAch",
"token_tags": "VDANVVDN&NPXDVPNU",
"tokens": {
"hurt": [
"T02"
]
},
"tweet_id": "324207772751253504"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T18:50:59",
"geolocation": {
"lat": "42.3501968383789",
"lon": "-71.08086926"
},
"lemmed_text": "Explosion at coply http://t.co/EqKbGeWhha",
"text": "Explosion at coply http://t.co/EqKbGeWhha",
"token_tags": "NDNU",
"tokens": {
"explosion": [
"C07"
]
},
"tweet_id": "323871088532668416"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T23:40:19Z",
"geolocation": {
"lat": "42.3426895141602",
"lon": "-71.0889172"
},
"lemmed_text": "relative in Scotland who ive never even meet reach out shortly after the bomb .. There be amazing people amongst the sick one in the world",
"text": "relatives in Scotland who ive never even met reached out shortly after the bomb .. There are amazing people amongst the sick ones in the world",
"token_tags": "NP^OLRRVVTRPDN,XVANPDANPDN",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323928800830300161"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T10:39:06Z",
"geolocation": {
"lat": "42.3526153564453",
"lon": "-71.06809204"
},
"lemmed_text": "Eerie feel around downtown #Boston this morning . Lots of Military humvees at Boston Common , and a heavy police presence everywhere .",
"text": "Eerie feel around downtown #Boston this morning . Lots of Military humvees at Boston Common , and a heavy police presence everywhere .",
"token_tags": "AVPA#DN,NP^^P^N,&DANNR,",
"tokens": {
"police": [
"C07"
]
},
"tweet_id": "324094590867095554"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T16:59:59Z",
"geolocation": {
"lat": "42.3717308044434",
"lon": "-71.1146171"
},
"lemmed_text": "\" @jeffzeleny : Boston bomb appear to be pack with ball bearing , nail and other metal fragment , hospital and law enforcement tell @ABC \"",
"text": "\" @jeffzeleny : Boston bombs appear to be packed with ball bearings , nails and other metal fragments , hospital and law enforcement tells @ABC \"",
"token_tags": ",@~^NVPVVPNN,N&ANN,N&NNV@,",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "324190444210765826"
},
{
"cate": [
"T02",
"T03",
"C07"
],
"created_at": "2013-04-15T23:20:01Z",
"geolocation": {
"lat": "42.3586006164551",
"lon": "-71.0567"
},
"lemmed_text": "Explosions at Boston Marathon finish line kill 2 , injure dozen : http://t.co/r75cmeZJxo",
"text": "Explosions at Boston Marathon finish line kill 2 , injure dozens : http://t.co/r75cmeZJxo",
"token_tags": "NP^NVNV$,VN,U",
"tokens": {
"dozen": [
"T02",
"T03"
],
"injure": [
"T02",
"C07"
],
"kill": [
"T03",
"C07"
]
},
"tweet_id": "323923692323229696"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T22:31:31Z",
"geolocation": {
"lat": "42.33573425",
"lon": "-71.04543314"
},
"lemmed_text": "@recklesssimmi 2 bomb go off but more be find ... The city of boston be in complete chaos right now .. Can't believe this happen",
"text": "@recklesssimmi 2 bombs went off but more were found ... The city of boston is in complete chaos right now .. Can't believe this happened",
"token_tags": "@$NVT&RVV,DNP^VPANRR,VVOV",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323926589794557952"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T18:03:40Z",
"geolocation": {
"lat": "42.3360557556152",
"lon": "-71.10628032"
},
"lemmed_text": "Seat Team out in front of the hospital hold gun and walk through the hospital ... This be the new life we will live .. #prayforboston",
"text": "Seat Team out in front of the hospital holding guns and walking through the hospital ... This is the new life we will live .. #prayforboston",
"token_tags": "NNPPNPDNVN&VPDN,OVDANOVV,#",
"tokens": {
"gun": [
"C07"
]
},
"tweet_id": "324206469773930496"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T20:40:18Z",
"geolocation": {
"lat": "42.3498268127441",
"lon": "-71.078836"
},
"lemmed_text": "#Repost this be a shot from this summer at the #Bostonmarathon finish #prayforboston @ Marathon Sports http://t.co/gmBTi6ShgO",
"text": "#Repost this is a shot from this summer at the #Bostonmarathon finish #prayforboston @ Marathon Sports http://t.co/gmBTi6ShgO",
"token_tags": "#OVDNPDNPD^V#P^^U",
"tokens": {
"shot": [
"C07"
]
},
"tweet_id": "323883501831221249"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T20:40:44Z",
"geolocation": {
"lat": "42.3477935791016",
"lon": "-71.0821905"
},
"lemmed_text": "I hope to God that it isn't a terrorist attack ... I really hope !",
"text": "I hope to God that it isn't a terrorist attack ... I really hope !",
"token_tags": "OVP^POVDAN,ORV,",
"tokens": {
"attack": [
"C07"
]
},
"tweet_id": "323883608270065665"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T00:02:14Z",
"geolocation": {
"lat": "42.348934173584",
"lon": "-71.08647096"
},
"lemmed_text": "@Snocohousewife we be fine as be @runnerbrain from BI who be run . Such a terrible day . Prayers to all the victim and family .",
"text": "@Snocohousewife we are fine as is @runnerbrain from BI who was running . Such a terrible day . Prayers to all the victims and families .",
"token_tags": "@OVAPV@P^OVV,ADAN,NPXDN&N,",
"tokens": {
"victim": [
"C07"
]
},
"tweet_id": "323934319108304896"
},
{
"cate": [
"T04"
],
"created_at": "2013-04-16T04:25:33Z",
"geolocation": {
"lat": "42.3478507995605",
"lon": "-71.08206331"
},
"lemmed_text": "@TheBusyHR no , more crowd at the finish line and the elite marathon be over and the rest of the crowd be pull in !",
"text": "@TheBusyHR no , more crowds at the finish line and the elite marathon was over and the rest of the crowd was pulling in !",
"token_tags": "@!,ANPDNN&DNNVR&DNPDNVVP,",
"tokens": {
"line": [
"T04"
],
"pull": [
"T04"
]
},
"tweet_id": "324000582463545344"
},
{
"cate": [
"T02"
],
"created_at": "2013-04-15T22:52:28Z",
"geolocation": {
"lat": "42.3700637817383",
"lon": "-71.11675987"
},
"lemmed_text": "thanks for keep me in your prayer , everyone ... if you know me , you know how exactly much I appreciate it ... pray for those hurt tho .",
"text": "thanks for keeping me in your prayers , everyone ... if you know me , you know how exactly much I appreciate it ... pray for those hurt tho .",
"token_tags": "NPVOPDN,N,POVO,OVRRAOVO,VPOVR,",
"tokens": {
"hurt": [
"T02"
]
},
"tweet_id": "323916759990149122"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T19:02:24Z",
"geolocation": {
"lat": "42.3521919250488",
"lon": "-71.07573829"
},
"lemmed_text": "Flowers for victim of the #marathon bombing in #Boston . @ Clarendon Street http://t.co/OIQWJfUunf",
"text": "Flowers for victims of the #marathon bombings in #Boston . @ Clarendon Street http://t.co/OIQWJfUunf",
"token_tags": "NPNPD^NP^,P^^U",
"tokens": {
"bombing": [
"C07"
],
"victim": [
"C07"
]
},
"tweet_id": "324221249511358464"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T21:20:16Z",
"geolocation": {
"lat": "42.3631591796875",
"lon": "-71.01606958"
},
"lemmed_text": "So sad what happen in Boston today . I be supposed to be downtown shopping . Glad we change our plan . #BOS . Praying for the victim .",
"text": "So sad what happened in Boston today . I was supposed to be downtown shopping . Glad we changed our plans . #BOS . Praying for the victims .",
"token_tags": "RAOVP^N,OVAPVAN,AOVDN,#,VPDN,",
"tokens": {
"victim": [
"C07"
]
},
"tweet_id": "323893558748798976"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T19:56:09Z",
"geolocation": {
"lat": "42.3521156311035",
"lon": "-71.07308085"
},
"lemmed_text": "Maizey and I just saw two bomb go off at the Boston marathon finish line . Fucking crazy .",
"text": "Maizey and I just saw two bombs go off at the Boston marathon finish line . Fucking crazy .",
"token_tags": "^&ORV$NVRPD^NVN,RA,",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323872388758532096"
},
{
"cate": [
"T09"
],
"created_at": "2013-04-16T01:16:20Z",
"geolocation": {
"lat": "42.3466491699219",
"lon": "-71.0756568"
},
"lemmed_text": "Mandatory evacuation in the bulding where I stay . #Boston #bostonmarathon",
"text": "Mandatory evacuation in the bulding where I stay . #Boston #bostonmarathon",
"token_tags": "ANPDNROV,##",
"tokens": {
"evacuation": [
"T09"
]
},
"tweet_id": "323952967411720196"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T01:00:17Z",
"geolocation": {
"lat": "42.3561172485352",
"lon": "-71.0552516"
},
"lemmed_text": "Navy bomb unit send to Boston : The Navy have send one of its bomb-disposal unit to Boston to assist local ... http://t.co/ZcLaacqv1p",
"text": "Navy bomb unit sent to Boston : The Navy has sent one of its bomb-disposal units to Boston to assist local ... http://t.co/ZcLaacqv1p",
"token_tags": "^NNVP^,D^VV$PDANP^PVA,U",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323948927000911872"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T22:43:00Z",
"geolocation": {
"lat": "42.3560638427734",
"lon": "-71.0694625"
},
"lemmed_text": "@GregStaskowski security perimeter .",
"text": "@GregStaskowski security perimeter .",
"token_tags": "@NN,",
"tokens": {
"security": [
"C07"
]
},
"tweet_id": "323914376379789312"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T13:14:36Z",
"geolocation": {
"lat": "42.3513679504395",
"lon": "-71.05556274"
},
"lemmed_text": "South Station this morning : lot of security , bag be check , runner wear Boston Marathon gear as they take train out of the city .",
"text": "South Station this morning : lots of security , bags being checked , runners wearing Boston Marathon gear as they take trains out of the city .",
"token_tags": "^^DN,NPN,NVV,NV^^NPOVNPPDN,",
"tokens": {
"security": [
"C07"
]
},
"tweet_id": "324133723081678850"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T20:02:03Z",
"geolocation": {
"lat": "42.3475379943848",
"lon": "-71.08746319"
},
"lemmed_text": "Cop just scream \" It's a crime scene I can't tell you any more \" at someone",
"text": "Cop just screamed \" It's a crime scene I can't tell you any more \" at someone",
"token_tags": "NRV,LDNNOVVODA,PN",
"tokens": {
"cop": [
"C07"
]
},
"tweet_id": "323873874854952962"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T20:24:26Z",
"geolocation": {
"lat": "42.346076965332",
"lon": "-71.085057"
},
"lemmed_text": "Hey everyone- I be safe and be back in my hotel when bomb go off . Still a few in our group miss . Say prayer !!",
"text": "Hey everyone- I am safe and was back in my hotel when bombs went off . Still a few in our group missing . Say prayers !!",
"token_tags": "!NOVA&VRPDNRNVT,RDAPDNV,VN,",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323879506484002816"
},
{
"cate": [
"T02",
"C07"
],
"created_at": "2013-04-15T20:30:54Z",
"geolocation": {
"lat": "42.3361740112305",
"lon": "-71.09838177"
},
"lemmed_text": "Thankful that all my friend be safe . Praying for those injure . This be a crazy world .",
"text": "Thankful that all my friends are safe . Praying for those injured . This is a crazy world .",
"token_tags": "APXDNVA,VPOV,OVDAN,",
"tokens": {
"injure": [
"T02",
"C07"
]
},
"tweet_id": "323881136101138433"
},
{
"cate": [
"T09"
],
"created_at": "2013-04-15T20:19:53Z",
"geolocation": {
"lat": "42.352222442627",
"lon": "-71.06298334"
},
"lemmed_text": "Everyone's evacuate .. http://t.co/C8fR7oDNAo",
"text": "Everyone's evacuating .. http://t.co/C8fR7oDNAo",
"token_tags": "LV,U",
"tokens": {
"evacuate": [
"T09"
]
},
"tweet_id": "323878362508578816"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T22:24:07Z",
"geolocation": {
"lat": "42.3522834777832",
"lon": "-71.06940539"
},
"lemmed_text": "Reporter : Is it unusual that nobody have claim responsibility at this point ?. FBI : This be a very complicated investigation ...",
"text": "Reporter : Is it unusual that nobody has claimed responsibility at this point ?. FBI : This is a very complicated investigation ...",
"token_tags": "N,VOAPNVVNPDN,^,OVDRAN,",
"tokens": {
"investigation": [
"C07"
]
},
"tweet_id": "324272014921699329"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T22:26:19Z",
"geolocation": {
"lat": "42.3502006530762",
"lon": "-71.10667987"
},
"lemmed_text": "BU student gather for the memorial for yesterday's event minute after a bomb threat in the \u2026 http://t.co/qgKBO4QnmW",
"text": "BU students gathering for the memorial for yesterday's events minutes after a bomb threat in the \u2026 http://t.co/qgKBO4QnmW",
"token_tags": "GNVPDNPSNNPDNNPD,U",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "324272567382863872"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T15:18:03Z",
"geolocation": {
"lat": "42.3590393066406",
"lon": "-71.02083593"
},
"lemmed_text": "Doctor say \" pellet and nail \" remove from #BostonMarathon victim , add : \" I think they come from the bomb ... \"",
"text": "Doctor says \" pellets and nails \" removed from #BostonMarathon victims , adds : \" I think they came from the bomb ... \"",
"token_tags": "NV,N&N,VP^N,V,,OVOVPDN,,",
"tokens": {
"bomb": [
"C07"
],
"victim": [
"C07"
]
},
"tweet_id": "324164790459183104"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T22:29:20Z",
"geolocation": {
"lat": "42.3645973205566",
"lon": "-71.06206095"
},
"lemmed_text": "@dfmooreisgod we be definitely plan on walk back to brens house from here . Lots of police still around keep thing safe",
"text": "@dfmooreisgod we were definitely planning on walking back to brens house from here . Lots of police still around keeping things safe",
"token_tags": "@OVRVPVRPZNPR,NPNRRVNA",
"tokens": {
"police": [
"C07"
]
},
"tweet_id": "323910939994890241"
},
{
"cate": [
"T04",
"C07"
],
"created_at": "2013-04-16T02:35:16Z",
"geolocation": {
"lat": "42.3517837524414",
"lon": "-71.08493618"
},
"lemmed_text": "God bless . \u201c @BostonDotCom : Death toll in Boston Marathon attack rise to three . \u201d",
"text": "God bless . \u201c @BostonDotCom : Death toll in Boston Marathon attack rises to three . \u201d",
"token_tags": "^V,,@~NNP^^NVP$,,",
"tokens": {
"attack": [
"C07"
],
"rise": [
"T04"
],
"toll": [
"T04"
]
},
"tweet_id": "323972828561014785"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T21:51:13Z",
"geolocation": {
"lat": "42.349479675293",
"lon": "-71.05666252"
},
"lemmed_text": "They have certainly amped up security all over . Army guy stand guard with police at south station . #notfuckingaround #BostonStrong",
"text": "They have certainly amped up security all over . Army guys standing guard with police at south station . #notfuckingaround #BostonStrong",
"token_tags": "OVRVTNDP,NNVNPNP^N,##",
"tokens": {
"police": [
"C07"
],
"security": [
"C07"
]
},
"tweet_id": "324263735994773504"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T23:58:18Z",
"geolocation": {
"lat": "42.3561172485352",
"lon": "-71.0552516"
},
"lemmed_text": "Boston blast prompt UK review of London Marathon : British police be review security plan for Sunday's ... http://t.co/XqJjwYrHBx",
"text": "Boston blasts prompt UK review of London Marathon : British police are reviewing security plans for Sunday's ... http://t.co/XqJjwYrHBx",
"token_tags": "^NV^NP^N,ANVVNNPZ,U",
"tokens": {
"police": [
"C07"
],
"security": [
"C07"
]
},
"tweet_id": "323933329982382080"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T23:53:00Z",
"geolocation": {
"lat": "42.3562431335449",
"lon": "-71.06271168"
},
"lemmed_text": "This be Boston Common . Full of soldier , surround by cop . WTF America ? Is this who we be ? http://t.co/5A2L7A1sxD",
"text": "This is Boston Common . Full of soldiers , surrounded by cops . WTF America ? Is this who we are ? http://t.co/5A2L7A1sxD",
"token_tags": "OV^N,APN,VPN,!^,VOOOV,U",
"tokens": {
"cop": [
"C07"
]
},
"tweet_id": "324294380968112129"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T22:17:29Z",
"geolocation": {
"lat": "42.3623809814453",
"lon": "-71.08400272"
},
"lemmed_text": "I'm see report that there be a third explosion at JFK at 4:30 . I be there at 3:20 and it be already on fire . http://t.co/cFiLOfObJU",
"text": "I'm seeing reports that there was a third explosion at JFK at 4:30 . I was there at 3:20 and it was already on fire . http://t.co/cFiLOfObJU",
"token_tags": "LVNPXVDANP^P$,OVRP$&OVRPN,U",
"tokens": {
"fire": [
"C07"
]
},
"tweet_id": "323907955630157824"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T20:00:18Z",
"geolocation": {
"lat": "42.3498611450195",
"lon": "-71.07398075"
},
"lemmed_text": "A bomb just go off by Boston marathon finish line",
"text": "A bomb just went off by Boston marathon finish line",
"token_tags": "DNRVTP^NVN",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323873434008449024"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T20:21:11Z",
"geolocation": {
"lat": "42.3515472412109",
"lon": "-71.05788332"
},
"lemmed_text": "Fire engine and police siren everywhere . Hope everyone be well near the @bostonmarathon finish line . #BeSafe #bostonmarathonexplosion",
"text": "Fire engines and police sirens everywhere . Hope everyone is well near the @bostonmarathon finish line . #BeSafe #bostonmarathonexplosion",
"token_tags": "^N&NNR,VNVRPD@VN,##",
"tokens": {
"police": [
"C07"
]
},
"tweet_id": "323878689303560192"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T21:51:37Z",
"geolocation": {
"lat": "42.3563346862793",
"lon": "-71.06474386"
},
"lemmed_text": "@matteegee me too but fight that urge . That's how we get to this type of catastrophe in the first place .",
"text": "@matteegee me too but fight that urge . That's how we get to this type of catastrophe in the first place .",
"token_tags": "@OR&VDN,LROVPDNPNPDAN,",
"tokens": {
"fight": [
"C07"
]
},
"tweet_id": "323901447840337921"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T21:30:03Z",
"geolocation": {
"lat": "42.3565444946289",
"lon": "-71.04998946"
},
"lemmed_text": "Bomb sniff dog clear me to board the ferry . #grateful #bostonmarathon (@ Rowes Wharf ) http://t.co/zm7n6RJGEk",
"text": "Bomb sniffing dog cleared me to board the ferry . #grateful #bostonmarathon (@ Rowes Wharf ) http://t.co/zm7n6RJGEk",
"token_tags": "VVNVOPVDN,##P^^,U",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "324258407370608640"
},
{
"cate": [
"T02",
"C07"
],
"created_at": "2013-04-15T22:22:08Z",
"geolocation": {
"lat": "42.3578147888184",
"lon": "-71.06012119"
},
"lemmed_text": "617 635 4500 if you're look for any family who may have be injure . 1-800-494-TIPS if you have any info on today's explosion .",
"text": "617 635 4500 if you're looking for any family who may have been injured . 1-800-494-TIPS if you have any info on today's explosions .",
"token_tags": "$$$PLVPDNOVVVV,$POVDNPSN,",
"tokens": {
"family": [
"T02"
],
"injure": [
"T02",
"C07"
]
},
"tweet_id": "323909128563093504"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T02:53:56Z",
"geolocation": {
"lat": "42.3622741699219",
"lon": "-71.10489939"
},
"lemmed_text": "Have at it : \u201c @JeffersonObama : I haven't see right wing gun and terror nut this happy since Huckabee release his free squirrel pie recipe . \u201d",
"text": "Have at it : \u201c @JeffersonObama : I haven't seen right wing gun and terror nuts this happy since Huckabee released his free squirrel pie recipe . \u201d",
"token_tags": "VPO,,@~OVVANN&NNDAP^VDANNN,,",
"tokens": {
"gun": [
"C07"
],
"terror": [
"C07"
]
},
"tweet_id": "323977525812400128"
},
{
"cate": [
"T03"
],
"created_at": "2013-04-15T10:32:35Z",
"geolocation": {
"lat": "42.3561185",
"lon": "-71.0552516"
},
"lemmed_text": "Man die after stab outside home : A 22-year-old man die Sunday after he be stab near his home in Milton . http://t.co/AW08Ulya5k",
"text": "Man dies after stabbing outside home : A 22-year-old man died Sunday after he was stabbed near his home in Milton . http://t.co/AW08Ulya5k",
"token_tags": "NVPVPN,DANV^POVVPDNP^,U",
"tokens": {
"die": [
"T03"
],
"man": [
"T03"
]
},
"tweet_id": "323745664112656384"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T00:16:37Z",
"geolocation": {
"lat": "42.3501853942871",
"lon": "-71.09516327"
},
"lemmed_text": "I have a feel that bomb lockdown at Xaverian on Friday be go to be related to what happen today",
"text": "I have a feeling that bomb lockdown at Xaverian on Friday is going to be related to what happened today",
"token_tags": "OVDVDNNP^P^VVPVAPOVN",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323937937752481793"
},
{
"cate": [
"T02",
"C07"
],
"created_at": "2013-04-15T21:24:28Z",
"geolocation": {
"lat": "42.3460006713867",
"lon": "-71.06091059"
},
"lemmed_text": "2 dead & 22 injure ...",
"text": "2 dead & 22 injured ...",
"token_tags": "$A&$V,",
"tokens": {
"injure": [
"T02",
"C07"
]
},
"tweet_id": "323894616275439618"
},
{
"cate": [
"T02",
"C07"
],
"created_at": "2013-04-15T23:31:27Z",
"geolocation": {
"lat": "42.343448638916",
"lon": "-71.11697046"
},
"lemmed_text": "Those injure today be in the hand of some of the best hospital in the country #thankful #prayforboston",
"text": "Those injured today are in the hands of some of the best hospitals in the country #thankful #prayforboston",
"token_tags": "OVNVPDNPDPDANPDN##",
"tokens": {
"injure": [
"T02",
"C07"
]
},
"tweet_id": "323926573256421376"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-16T21:45:54Z",
"geolocation": {
"lat": "42.3496627807617",
"lon": "-71.10405441"
},
"lemmed_text": "So much police at cas #whatsgoingon",
"text": "So much police at cas #whatsgoingon",
"token_tags": "RANP^#",
"tokens": {
"police": [
"C07"
]
},
"tweet_id": "324262396124348417"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T23:11:34Z",
"geolocation": {
"lat": "42.3561172485352",
"lon": "-71.0552516"
},
"lemmed_text": "Logan reopen follow Boston Marathon attack : Boston's Logan International Airport reopen a little after ... http://t.co/ajnIY0KduW",
"text": "Logan reopens following Boston Marathon attack : Boston's Logan International Airport reopened a little after ... http://t.co/ajnIY0KduW",
"token_tags": "^VV^^N,Z^^^VDAP,U",
"tokens": {
"attack": [
"C07"
]
},
"tweet_id": "323921567933399042"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T18:48:04Z",
"geolocation": {
"lat": "42.3561172485352",
"lon": "-71.0552516"
},
"lemmed_text": "Former school employee face 9 count of stalk : Police in Portsmouth say a former school district technology ... http://t.co/zlrZewX6Xu",
"text": "Former school employee faces 9 counts of stalking : Police in Portsmouth say a former school district technology ... http://t.co/zlrZewX6Xu",
"token_tags": "ANNV$NPV,NP^VDANNN,U",
"tokens": {
"police": [
"C07"
]
},
"tweet_id": "323855254489796608"
},
{
"cate": [
"T02",
"C07"
],
"created_at": "2013-04-15T19:50:10Z",
"geolocation": {
"lat": "42.33991431",
"lon": "-71.09127184"
},
"lemmed_text": "so far no one I know be injure",
"text": "so far no one I know was injured",
"token_tags": "RRDNOVVV",
"tokens": {
"injure": [
"T02",
"C07"
]
},
"tweet_id": "323885984385232897"
},
{
"cate": [
"C07"
],
"created_at": "2013-04-15T20:56:38Z",
"geolocation": {
"lat": "42.3561134338379",
"lon": "-71.05019964"
},
"lemmed_text": "@peterbclarke doode . I be literally stand where the bomb go off 10 or 15 minute before . If Sarah run slower Kevin & I would be dead",
"text": "@peterbclarke doode . I was literally standing where the bomb went off 10 or 15 minutes before . If Sarah ran slower Kevin & I would be dead",
"token_tags": "@N,OVRVRDNVT$&$NP,P^VA^&OVVA",
"tokens": {
"bomb": [
"C07"
]
},
"tweet_id": "323887609560580096"
},
{
"cate": [
"T04"
],
"created_at": "2013-04-16T13:01:34Z",
"geolocation": {
"lat": "42.3526992797852",
"lon": "-71.08168513"
},
"lemmed_text": "@NotifyBoston be everything on newbury street shut down ?",
"text": "@NotifyBoston is everything on newbury street shut down ?",
"token_tags": "@VNP^NVT,",
"tokens": {
"shut": [
"T04"
],
"street": [
"T04"
]
},
"tweet_id": "324130445107290113"
},
{
"cate": [
"T04"
],
"created_at": "2013-04-16T14:05:48Z",
"geolocation": {
"lat": "42.3488235473633",
"lon": "-71.08999754"
},
"lemmed_text": "He be on a bike . I hope he get hit by a truck .",
"text": "He was on a bike . I hope he gets hit by a truck .",
"token_tags": "OVPDN,OVOVVPDN,",