-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgeoloc.json
21605 lines (21605 loc) · 856 KB
/
geoloc.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
{
"ten": [
{
"date_time": "sun oct 21 11:56:22 pdt 2012",
"tweet": "final color throw! #colorrun @ lp field http://t.co/9rafpa4i",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "36.1664454,-86.77134991"
},
{
"date_time": "sun oct 21 13:54:53 pdt 2012",
"tweet": "@sabanocchio @chrisjohnson28 was wired for sound for titans all access",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "36.2618773,-87.6443505"
},
{
"date_time": "sun oct 21 16:43:57 pdt 2012",
"tweet": "this blistering 83-yard touchdown run reminds us why titans bust chris johnson got paid $54 million http://t.co/cmdckhba",
"fb_assoc": "fb ten ",
"fb_weight": "5",
"geoloc": "43.6562911,-79.3857369"
},
{
"date_time": "sun oct 21 17:43:01 pdt 2012",
"tweet": "apparently the #bengals have no chance to win tonight. wonder if the raiders or titans had a chance either? #mediageniuses",
"fb_assoc": "oak ten cin ",
"fb_weight": "9",
"geoloc": "38.0311011,-82.8443333"
},
{
"date_time": "sun oct 28 10:13:25 pdt 2012",
"tweet": "clash of da titans.... #epl http://t.co/zbqac7dx",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "6.8169564,3.4573354"
},
{
"date_time": "sun oct 28 10:36:13 pdt 2012",
"tweet": "@swtgal9 ay get off my titans",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "36.16714897,-86.77101082"
},
{
"date_time": "sun oct 28 10:49:28 pdt 2012",
"tweet": "colts vs. titans. #titans @ lp field http://t.co/wrmlv7ks",
"fb_assoc": "ind ten ",
"fb_weight": "11",
"geoloc": "36.1664454,-86.77134991"
},
{
"date_time": "sun oct 28 11:31:31 pdt 2012",
"tweet": "that was a sick block by the titans",
"fb_assoc": "fb ten ",
"fb_weight": "3",
"geoloc": "40.8197605,-74.1669884"
},
{
"date_time": "sun oct 28 11:40:10 pdt 2012",
"tweet": "titans <3333",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "36.0936203,-88.5475662"
},
{
"date_time": "sun oct 28 16:23:26 pdt 2012",
"tweet": "why can't @tennesseetitans have a te like jason witten.",
"fb_assoc": "ten dal ",
"fb_weight": "5",
"geoloc": "39.68351405,-83.95407557"
},
{
"date_time": "sun nov 04 10:52:20 pst 2012",
"tweet": "looks like i'm not wearing my titans jersey tomorrow #titanfanprobs",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "41.36323691,-88.45309564"
},
{
"date_time": "sun nov 04 10:56:47 pst 2012",
"tweet": "the titans have the tails between their legs and i love it",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "36.0811083,-86.7475337"
},
{
"date_time": "sun nov 04 11:02:12 pst 2012",
"tweet": "@bears1985mc bears making titans look like a high school team",
"fb_assoc": "chi ten ",
"fb_weight": "4",
"geoloc": "38.4404678,-121.4419548"
},
{
"date_time": "sun nov 04 11:22:47 pst 2012",
"tweet": "chris johnson i didntneed those fantasy points nyway n it just helps that you gave those points2 the bearsd who i'm playing #acceptintheloss",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "40.77961687,-91.09684998"
},
{
"date_time": "sun nov 04 12:15:25 pst 2012",
"tweet": "craig stevens gets hit and now he's hurt. #fragile #soft #weak",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "35.20241094,-89.75666774"
},
{
"date_time": "sun nov 04 12:53:21 pst 2012",
"tweet": "the titans are playing good today lol",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "43.61428454,-84.74157925"
},
{
"date_time": "sun nov 04 15:22:09 pst 2012",
"tweet": "@garyfiore @mike_cip lol cip is technically a titans fan and they got abused today",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "40.59890769,-73.98816728"
},
{
"date_time": "sun nov 04 19:14:43 pst 2012",
"tweet": "remember the titans <3",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "37.7276355,-120.95144748"
},
{
"date_time": "sun nov 04 19:22:16 pst 2012",
"tweet": "remember the titans #anotherclassic",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "40.32997799,-74.23896665"
},
{
"date_time": "sun nov 11 10:39:12 pst 2012",
"tweet": "jake locker fucking the dolphins up",
"fb_assoc": "mia ten ",
"fb_weight": "4",
"geoloc": "25.58189604,-80.33085116"
},
{
"date_time": "sun nov 11 10:50:28 pst 2012",
"tweet": "watching the game. (@ sun life stadium for tennessee titans vs miami dolphins w/ 295 others) http://t.co/zhzd2tg4",
"fb_assoc": "ten mia ",
"fb_weight": "8",
"geoloc": "25.95789998,-80.23877621"
},
{
"date_time": "sun nov 11 11:35:50 pst 2012",
"tweet": "no one wants to watch the titans cbs",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "34.70525315,-88.69803042"
},
{
"date_time": "sun nov 11 13:54:55 pst 2012",
"tweet": "go titans! #nfl",
"fb_assoc": "ten fb ",
"fb_weight": "5",
"geoloc": "36.10963076,-86.86006313"
},
{
"date_time": "sun nov 25 10:03:13 pst 2012",
"tweet": "#titans",
"fb_assoc": "ten ",
"fb_weight": "5",
"geoloc": "36.52718124,-86.88400875"
},
{
"date_time": "sun nov 25 10:07:27 pst 2012",
"tweet": "#titans settle for 3 after turnover #titans lead 3-0",
"fb_assoc": "fb ten ",
"fb_weight": "11",
"geoloc": "36.13322642,-86.69876604"
},
{
"date_time": "sun nov 25 10:16:50 pst 2012",
"tweet": "titans getting finally getting some sacks.",
"fb_assoc": "ten fb ",
"fb_weight": "3",
"geoloc": "33.18319601,-87.54753937"
},
{
"date_time": "sun nov 25 10:28:00 pst 2012",
"tweet": "#titansmobile #titans need to get jake locker going!!!",
"fb_assoc": "ten ",
"fb_weight": "7",
"geoloc": "36.013124,-87.316683"
},
{
"date_time": "sun nov 25 11:35:55 pst 2012",
"tweet": "let's go titans!!",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "36.19387517,-86.62945569"
},
{
"date_time": "sun nov 25 12:46:27 pst 2012",
"tweet": "@rucummingtonite touchdown @tennesseetitans!!! there's @kennybritt_18 #titans #jaguars",
"fb_assoc": "fb ten jac ",
"fb_weight": "14",
"geoloc": "35.94270059,-83.90043772"
},
{
"date_time": "sun nov 25 17:27:58 pst 2012",
"tweet": "i gatta play titans to go to the super bowl",
"fb_assoc": "fb ten ",
"fb_weight": "4",
"geoloc": "25.04037,-77.34507"
},
{
"date_time": "sun dec 02 16:41:09 pst 2012",
"tweet": "put it in charleston and the closest team would be the titans",
"fb_assoc": "ten ",
"fb_weight": "2",
"geoloc": "37.74012001,-81.87924785"
}
],
"tb": [
{
"date_time": "sun oct 21 11:28:54 pdt 2012",
"tweet": "i want a retro orange bucs legarrette blount jersey.",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "38.93978124,-95.29558215"
},
{
"date_time": "sun oct 21 12:09:11 pdt 2012",
"tweet": "@joellferguson @dpecylak mahatma juandhi #itsabucslife http://t.co/ctdh5fsh",
"fb_assoc": "tb ",
"fb_weight": "3",
"geoloc": "27.975465,-82.502924"
},
{
"date_time": "sun oct 21 12:11:16 pdt 2012",
"tweet": "it's official, @tbbuccaneers deserve to lose now, if u can't score with 4 plays on the 1 you should go home!",
"fb_assoc": "tb ",
"fb_weight": "3",
"geoloc": "27.97508459,-82.5043789"
},
{
"date_time": "sun oct 21 12:12:44 pdt 2012",
"tweet": "classic bucs. not a compliment. @tbbuccaneers: that 95-yard catch-and-run by vincent jackson is the longest reception in buccaneers history.",
"fb_assoc": "tb ",
"fb_weight": "7",
"geoloc": "28.54245383,-81.37154968"
},
{
"date_time": "sun oct 21 12:32:21 pdt 2012",
"tweet": "ay buccaneers, you suck.",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "42.32703861,-83.17340305"
},
{
"date_time": "sun oct 21 12:35:10 pdt 2012",
"tweet": "vincent jackson and alfred morris are making this a good sunday for my fantasy team",
"fb_assoc": "tb was ",
"fb_weight": "4",
"geoloc": "40.8649046,-74.0439993"
},
{
"date_time": "sun oct 21 13:25:21 pdt 2012",
"tweet": "that was some bullshit pushing mike williams out of bounds! tampa should've had that td.",
"fb_assoc": "fb tb ",
"fb_weight": "5",
"geoloc": "40.87014397,-79.85994869"
},
{
"date_time": "sun oct 28 15:19:40 pdt 2012",
"tweet": "@russrhoads31 haha doug martin got me 40",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "40.79374096,-77.85771942"
},
{
"date_time": "sun nov 04 12:12:46 pst 2012",
"tweet": "i'm at o.co coliseum for tampa bay buccaneers vs oakland raiders (oakland, ca) w/ 73 others http://t.co/7jp7nqxs",
"fb_assoc": "oak tb ",
"fb_weight": "8",
"geoloc": "37.75141203,-122.20092773"
},
{
"date_time": "sun nov 04 15:31:47 pst 2012",
"tweet": "doug martin. nuff said #bucs #yeahmyfavoriteteam",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "39.82900047,-75.42157904"
},
{
"date_time": "sun nov 04 15:45:01 pst 2012",
"tweet": "#buccaneers defense needs to tighten up tho come on",
"fb_assoc": "fb tb ",
"fb_weight": "6",
"geoloc": "29.64881286,-82.35645977"
},
{
"date_time": "sun nov 04 15:47:36 pst 2012",
"tweet": "doug martin wtf #stupidgood",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "43.7588541,-70.4242022"
},
{
"date_time": "sun nov 04 16:05:29 pst 2012",
"tweet": "thank you so much doug martin, brandon marshall, and the bears d. i don't even need anyone else on my fantasy team this week.",
"fb_assoc": "chi tb ",
"fb_weight": "6",
"geoloc": "40.56376367,-84.19640766"
},
{
"date_time": "sun nov 04 16:31:09 pst 2012",
"tweet": "doug martin.",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "39.01871405,-95.05103418"
},
{
"date_time": "sun nov 04 16:33:42 pst 2012",
"tweet": "who does doug martin think he is",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "35.40747745,-80.61061092"
},
{
"date_time": "sun nov 04 16:36:31 pst 2012",
"tweet": "#itsabucslife",
"fb_assoc": "tb ",
"fb_weight": "3",
"geoloc": "27.99604069,-81.66441145"
},
{
"date_time": "sun nov 04 16:58:48 pst 2012",
"tweet": "doug martin ..... gosh damn man",
"fb_assoc": "tb ",
"fb_weight": "4",
"geoloc": "43.6232056,-87.7997112"
},
{
"date_time": "sun nov 04 17:29:43 pst 2012",
"tweet": "s/o doug martin fir getting me stupid fantasy points...",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "39.9468068,-74.19376092"
},
{
"date_time": "sun nov 04 18:56:56 pst 2012",
"tweet": "thank you doug martin for validating why i traded shaun greene in the preseason. #fantasygenius",
"fb_assoc": "fb tb ",
"fb_weight": "3",
"geoloc": "40.91347,-79.937405"
},
{
"date_time": "sun nov 11 10:14:10 pst 2012",
"tweet": "doug martin so fast man his break away speed is ridiculous",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "29.65303545,-82.36024844"
},
{
"date_time": "sun nov 11 11:56:55 pst 2012",
"tweet": "when tiquan scores, can the #bucs play kid n play? #bucsnation #itsabucslife #nfl",
"fb_assoc": "fb tb ",
"fb_weight": "8",
"geoloc": "27.97548716,-82.50356284"
},
{
"date_time": "sun nov 11 15:54:49 pst 2012",
"tweet": "fans compare @dougmartin22 to emmitt & ray rice. w/ his total yards, why no comparisons to marshall faulk? #bucsnation #bucs #itsabucslife",
"fb_assoc": "fb bal tb ",
"fb_weight": "8",
"geoloc": "28.29913417,-82.50161191"
},
{
"date_time": "sun nov 25 11:20:14 pst 2012",
"tweet": "my bucs tied up with the falcons 10-10 at halftime...imma need a couple defensive stops and for doug martin to take over",
"fb_assoc": "atl tb ",
"fb_weight": "4",
"geoloc": "30.5578906,-81.817821"
},
{
"date_time": "sun nov 25 12:05:09 pst 2012",
"tweet": "beer and football is the only way you can make this black guy blush! @ raymond james stadium http://t.co/jxvyepgi",
"fb_assoc": "tb ",
"fb_weight": "2",
"geoloc": "27.97599447,-82.50334919"
},
{
"date_time": "sun nov 25 12:13:43 pst 2012",
"tweet": "let's go @tbbuccaneers !!!!!!! #statementgame #getthatwin",
"fb_assoc": "tb ",
"fb_weight": "6",
"geoloc": "43.49779627,-73.78426488"
},
{
"date_time": "sun dec 02 11:58:40 pst 2012",
"tweet": "the peyton show (@ sports authority field for tampa bay buccaneers vs denver broncos w/ 115 others) http://t.co/nwxtlcl5",
"fb_assoc": "tb den ",
"fb_weight": "8",
"geoloc": "39.74397274,-105.02015591"
},
{
"date_time": "sun dec 02 16:03:33 pst 2012",
"tweet": "eating great food while i'm watching the denver #broncos beat the tampa bay buccaneers. (@ los arcos) [pic]: http://t.co/ssif58bd",
"fb_assoc": "tb den ",
"fb_weight": "8",
"geoloc": "39.55228,-104.884936"
},
{
"date_time": "sun oct 21 20:47:44 pdt 2012",
"tweet": "@bekahbaker23 team i played had brees peterson vincent jackson vikings d luck everyone on his team wet off aj green too",
"fb_assoc": "no min tb cin ",
"fb_weight": "8",
"geoloc": "30.20959858,-81.52387155"
}
],
"gb": [
{
"date_time": "sun oct 21 10:53:21 pdt 2012",
"tweet": "seeing @e_ninety3 play reminds me of the @packers #sbxlv run",
"fb_assoc": "fb gb ",
"fb_weight": "4",
"geoloc": "44.73605638,-93.21651852"
},
{
"date_time": "sun oct 21 11:13:58 pdt 2012",
"tweet": "lets go... (@ edward jones dome for green bay packers vs st. louis rams w/ 259 others) http://t.co/ajt8vp9b",
"fb_assoc": "gb stl ",
"fb_weight": "7",
"geoloc": "38.63236865,-90.18871486"
},
{
"date_time": "sun oct 21 12:06:05 pdt 2012",
"tweet": "casey hayward ;)",
"fb_assoc": "gb ",
"fb_weight": "4",
"geoloc": "41.272652,-95.853455"
},
{
"date_time": "sun oct 21 12:32:12 pdt 2012",
"tweet": "aaron rodgers got a fukkin bullet",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "43.0647669,-87.9036512"
},
{
"date_time": "sun oct 21 12:33:16 pdt 2012",
"tweet": "aaron rodgers could get it",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "43.01562386,-87.93626647"
},
{
"date_time": "sun oct 21 12:35:25 pdt 2012",
"tweet": "aaron rodgers is hawt but i still hate him.",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "40.10574459,-88.23914797"
},
{
"date_time": "sun oct 21 12:37:43 pdt 2012",
"tweet": "really hoping @gpicc10 listened me to and started my boy randall cobb. #problem",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "41.45454628,-73.50229436"
},
{
"date_time": "sun oct 21 12:53:26 pdt 2012",
"tweet": "@marcusleshock i need 8 passing yards from rodgers to get a big bonus. go pack!",
"fb_assoc": "fb gb ",
"fb_weight": "2",
"geoloc": "41.8382666,-87.82533374"
},
{
"date_time": "sun oct 21 13:03:47 pdt 2012",
"tweet": "green bay packers improve to 4-3 after defeating the st louis rams 30-20 #nfl",
"fb_assoc": "gb stl fb ",
"fb_weight": "8",
"geoloc": "44.2041886,-88.5210301"
},
{
"date_time": "sun oct 21 13:13:25 pdt 2012",
"tweet": "so proud of my packers!!! <3",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "43.3944638,-84.66450815"
},
{
"date_time": "sun oct 21 13:35:10 pdt 2012",
"tweet": "@packers 30 @rams 20 las cosas en su sitio!",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "19.28426142,-99.04174838"
},
{
"date_time": "sun oct 28 10:32:35 pdt 2012",
"tweet": "its like rodgers has the same team..green and finley on this drive.",
"fb_assoc": "gb fb ",
"fb_weight": "2",
"geoloc": "28.5189769,-81.1589442"
},
{
"date_time": "sun oct 28 11:30:45 pdt 2012",
"tweet": "alright what's with the qb coverage today?! @packers needa step up the offensive line stat!",
"fb_assoc": "fb gb ",
"fb_weight": "6",
"geoloc": "35.19486938,-106.65445231"
},
{
"date_time": "sun oct 28 12:14:47 pdt 2012",
"tweet": "what the hell, packers!?!! really?",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "33.41460585,-112.18897103"
},
{
"date_time": "sun oct 28 12:14:47 pdt 2012",
"tweet": "perfect day at lambeau. now, pick it up pack! #gopackgo @ lambeau field http://t.co/nkde80lg",
"fb_assoc": "fb gb ",
"fb_weight": "3",
"geoloc": "44.50123457,-88.06215763"
},
{
"date_time": "sun oct 28 12:30:44 pdt 2012",
"tweet": "i'm at the north loft at lambeau field (green bay, wi) http://t.co/h6lkst3i",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "44.50282564,-88.06226736"
},
{
"date_time": "sun oct 28 12:43:03 pdt 2012",
"tweet": "tell me the score for the packers against jaguars.",
"fb_assoc": "gb jac ",
"fb_weight": "4",
"geoloc": "37.2140841,-109.1673622"
},
{
"date_time": "sun oct 28 13:13:41 pdt 2012",
"tweet": "listening to the jaguars @ packers in western canada. sweet. #nfl #siriusxm",
"fb_assoc": "jac gb fb ",
"fb_weight": "7",
"geoloc": "52.85066693,-110.3956902"
},
{
"date_time": "sun oct 28 13:18:17 pdt 2012",
"tweet": "packers won! they're finally on a winning streak. in honesty if they lost to the jaguars i probably would've dropped my head in shame.",
"fb_assoc": "gb jac ",
"fb_weight": "4",
"geoloc": "40.92760755,-111.87865887"
},
{
"date_time": "sun oct 28 15:24:41 pdt 2012",
"tweet": "@kimmyleon oh really?? i'm pretty sure my packers beat your steelers in the super bowl not long ago",
"fb_assoc": "gb pit fb ",
"fb_weight": "5",
"geoloc": "39.68394793,-105.04538479"
},
{
"date_time": "sun oct 28 19:17:16 pdt 2012",
"tweet": "@onlyjeffreys @robbruck03 insert: charles woodson, the pirates, mellow yellow, or the lion king",
"fb_assoc": "det gb ",
"fb_weight": "3",
"geoloc": "39.99561112,-83.01077894"
},
{
"date_time": "sun nov 04 10:11:08 pst 2012",
"tweet": "its clay matthews time packer nation! #letsgopack",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "39.90870335,-82.01157027"
},
{
"date_time": "sun nov 04 11:10:07 pst 2012",
"tweet": "i want go to a @packers home game!",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "40.3512245,-94.8778549"
},
{
"date_time": "sun nov 04 11:39:23 pst 2012",
"tweet": "seriously not ok with the fact that the packers game isn't televised here. the nfl gods are telling me to actually do homework #lame",
"fb_assoc": "gb fb ",
"fb_weight": "4",
"geoloc": "42.2708038,-83.746898"
},
{
"date_time": "sun nov 04 12:07:42 pst 2012",
"tweet": "did the offense decide to take the 3rd qtr off? #packers",
"fb_assoc": "fb gb ",
"fb_weight": "6",
"geoloc": "39.89843471,-75.01469608"
},
{
"date_time": "sun nov 04 12:19:27 pst 2012",
"tweet": "packers are playing, and i'm at the park with caleb. no haven't lost it, just cant pass up on the amazing warm day. http://t.co/d6k1kfdq",
"fb_assoc": "gb fb ",
"fb_weight": "3",
"geoloc": "44.94636739,-123.09118814"
},
{
"date_time": "sun nov 04 12:22:50 pst 2012",
"tweet": "jarrett bush #douchebag",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "45.2750676,-88.5096088"
},
{
"date_time": "sun nov 04 13:16:22 pst 2012",
"tweet": "fuckin packers man... lost $15 today. all of my tips haha",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "42.72486033,-92.48355011"
},
{
"date_time": "sun nov 04 13:18:38 pst 2012",
"tweet": "we got to improve but 6 and 3 going into the bye anit bad #packers",
"fb_assoc": "gb ",
"fb_weight": "5",
"geoloc": "41.05038437,-73.52236715"
},
{
"date_time": "sun nov 04 13:25:30 pst 2012",
"tweet": "randall cobb with over 200 yards receiving #bbn",
"fb_assoc": "fb gb ",
"fb_weight": "3",
"geoloc": "36.96189811,-86.47801745"
},
{
"date_time": "sun nov 04 17:41:04 pst 2012",
"tweet": "@aaronrodgers12 great piece on @60minutes tonight...i was one of those #favre diehards but you sure convinced me! #packers",
"fb_assoc": "gb ",
"fb_weight": "5",
"geoloc": "40.76136404,-74.00101761"
},
{
"date_time": "sun nov 04 20:33:46 pst 2012",
"tweet": "@joey___k looks like ur gna b buying a jacquizz rodgers jersey w all that cake",
"fb_assoc": "gb atl ",
"fb_weight": "3",
"geoloc": "39.17305958,-86.53153183"
},
{
"date_time": "sun nov 25 16:09:53 pst 2012",
"tweet": "@thepackerfan @packers living the pack life http://t.co/l74c76mu",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "32.3751789,-90.2084044"
},
{
"date_time": "sun nov 25 17:24:02 pst 2012",
"tweet": "\"@snfonnbc: game time! let's do this! #snf @packers vs @giants #gbvsnyg http://t.co/xg4ucvlf\" dallas' last chance = nyg loss!",
"fb_assoc": "gb nyg fb ",
"fb_weight": "9",
"geoloc": "29.9178628,-95.5755592"
},
{
"date_time": "sun nov 25 17:24:30 pst 2012",
"tweet": "i really don't care to hear faith hill right now, i just wanna watch my @packers kiss some ass! #packernation #chessehead",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "36.92624949,-86.44763016"
},
{
"date_time": "sun nov 25 17:24:34 pst 2012",
"tweet": "aaron rodgers mustache is way better than eli's.",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "40.89528015,-73.34895979"
},
{
"date_time": "sun nov 25 17:25:13 pst 2012",
"tweet": "how about aaron rodgers' mustache?",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "37.99346069,-121.89596426"
},
{
"date_time": "sun nov 25 17:27:30 pst 2012",
"tweet": "http://t.co/bqnujwxf - rodgers tanggapi positif hasil imbang di swansea",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "-6.9136995,107.6634705"
},
{
"date_time": "sun nov 25 17:30:31 pst 2012",
"tweet": "@snfonnbc @packers love sunday night with your broadcast team, everybody is a class act! thank you",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "39.11384304,-94.52368159"
},
{
"date_time": "sun nov 25 17:31:20 pst 2012",
"tweet": "aaron rodgers mustache>>>>>>>",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "33.94299906,-84.62753258"
},
{
"date_time": "sun nov 25 17:38:28 pst 2012",
"tweet": "packers d looking like a team missing its playmakers...rough start, but lots of ball game left...",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "42.89603332,-87.90075328"
},
{
"date_time": "sun nov 25 17:43:55 pst 2012",
"tweet": "sports ?! (@ metlife stadium for green bay packers vs new york giants w/ 655 others) http://t.co/6ajtdg2v",
"fb_assoc": "gb nyg ",
"fb_weight": "8",
"geoloc": "40.81348443,-74.07433033"
},
{
"date_time": "sun nov 25 17:52:18 pst 2012",
"tweet": "davon house. my main man. http://t.co/z8v1youw",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "25.77415,-80.19492"
},
{
"date_time": "sun nov 25 18:03:07 pst 2012",
"tweet": "aaron rodgers showing some soccer love! @theworldssport http://t.co/bmygxvrn",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "39.67269456,-86.12224359"
},
{
"date_time": "sun nov 25 18:08:35 pst 2012",
"tweet": "randall cobb is too underrated..",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "38.42296832,-82.42519275"
},
{
"date_time": "sun nov 25 18:11:37 pst 2012",
"tweet": "aaron rodgers needs to shave that mustache!",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "35.80609568,-79.17653968"
},
{
"date_time": "sun nov 25 18:18:42 pst 2012",
"tweet": "where you packers fans at ? http://t.co/gvwoop1b",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "35.02891926,-89.85277761"
},
{
"date_time": "sun nov 25 18:19:47 pst 2012",
"tweet": "randall cobb wears my number <3 #18",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "34.31805,-118.4646235"
},
{
"date_time": "sun nov 25 18:26:18 pst 2012",
"tweet": "@nhandrewl giants packers you crumb",
"fb_assoc": "nyg gb ",
"fb_weight": "4",
"geoloc": "42.80758827,-71.56802878"
},
{
"date_time": "sun nov 25 18:30:35 pst 2012",
"tweet": "24-7 eli & my giants showing them packers how we really play. #gbvsnyg keep it going g-mennnnn!!",
"fb_assoc": "nyg gb fb ",
"fb_weight": "5",
"geoloc": "40.8627638,-73.90454947"
},
{
"date_time": "sun nov 25 18:31:14 pst 2012",
"tweet": "packers really need to wake up #gopack",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "44.0249773,-88.1547059"
},
{
"date_time": "sun nov 25 18:40:06 pst 2012",
"tweet": "\"@radcock_ii: i want aaron rodgers' mustache. just for a day\"",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "36.4873133,-86.8595449"
},
{
"date_time": "sun nov 25 18:54:48 pst 2012",
"tweet": "marshall newhouse was just schooled.",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "39.54953818,-104.87382066"
},
{
"date_time": "sun nov 25 18:55:16 pst 2012",
"tweet": "aaron rodgers do you have a person locked in your basement? #pedostache #disgusting",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "38.4243941,-78.8710282"
},
{
"date_time": "sun nov 25 18:57:11 pst 2012",
"tweet": "the giants are killing the packers.",
"fb_assoc": "nyg gb ",
"fb_weight": "4",
"geoloc": "30.92310567,-93.28680263"
},
{
"date_time": "sun nov 25 18:57:27 pst 2012",
"tweet": "hahahahahahaha way to go packers. thanks for the easy first place seed in the north",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "33.37866878,-111.91711575"
},
{
"date_time": "sun nov 25 18:57:51 pst 2012",
"tweet": "wow the giants are making the packers look like a bunch of bitches lol #gbvsnyg",
"fb_assoc": "nyg gb ",
"fb_weight": "4",
"geoloc": "44.05848445,-103.19632012"
},
{
"date_time": "sun nov 25 18:57:54 pst 2012",
"tweet": "huh, would you look at that. the packers are beatable. lovie better be taking notes.",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "41.9438437,-87.75539676"
},
{
"date_time": "sun nov 25 18:58:04 pst 2012",
"tweet": "at least the packers are off to a solid start.",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "44.26423721,-88.30376683"
},
{
"date_time": "sun nov 25 18:59:50 pst 2012",
"tweet": "i'm so sickened by the way the packers are playing. get your fucking heads out of your asses.",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "35.9275204,-84.0734075"
},
{
"date_time": "sun nov 25 19:01:24 pst 2012",
"tweet": "the giants are doing work to the packers, haha wow 31-10 #halftime",
"fb_assoc": "nyg gb ",
"fb_weight": "4",
"geoloc": "42.5558333,-72.0220959"
},
{
"date_time": "sun nov 25 19:09:55 pst 2012",
"tweet": "@jaymboller @jasonzabel like fudge packers? that's what everyone called me in junior high!!!",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "40.69349512,-73.94814918"
},
{
"date_time": "sun nov 25 19:13:19 pst 2012",
"tweet": "look look its everyone's favorite qb aaron rodgers stinking up the joint. what a joke. #teambrady...",
"fb_assoc": "fb gb ",
"fb_weight": "4",
"geoloc": "29.55839697,-98.64375014"
},
{
"date_time": "sun nov 25 19:34:30 pst 2012",
"tweet": "wuz up wit aaron rodgers rockin the porn stache! lol",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "41.39716,-81.79688"
},
{
"date_time": "sun nov 25 19:36:17 pst 2012",
"tweet": "@sharonfanfirst a lot of teams this particular #nflsunday seem to have had the same problem(s) as the packers tonight.",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "37.37978154,-122.05494588"
},
{
"date_time": "sun nov 25 19:40:23 pst 2012",
"tweet": "lol where are the packers tonight?,.",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "32.72428809,-97.47910816"
},
{
"date_time": "sun nov 25 19:42:53 pst 2012",
"tweet": "@elfenske what's up with your packers? i'm blaming it on rodgers' rapist stache. he's killing my fantasy team!",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "38.62704146,-90.3497873"
},
{
"date_time": "sun nov 25 19:45:28 pst 2012",
"tweet": "ayee packers.. u mad? lmfao",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "44.82630157,-91.46936417"
},
{
"date_time": "sun nov 25 19:47:11 pst 2012",
"tweet": "@jersyboymc i am! but they already won. giants have this one though. packers are sucking bad",
"fb_assoc": "nyg gb ",
"fb_weight": "4",
"geoloc": "41.26132937,-82.96541451"
},
{
"date_time": "sun nov 25 19:48:12 pst 2012",
"tweet": "aaron rodgers: \"you will go to sleep, or i will put you to sleep.\" lookin a lot like @theorderlyguy wit the stache.",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "37.4695627,-94.68783012"
},
{
"date_time": "sun nov 25 19:56:40 pst 2012",
"tweet": "rodgers is taking a beating #giantschat #bigblue",
"fb_assoc": "gb nyg ",
"fb_weight": "4",
"geoloc": "40.67886904,-74.00138615"
},
{
"date_time": "sun dec 02 10:27:48 pst 2012",
"tweet": "mason crosby.. worst kicker or worstest kicker?",
"fb_assoc": "fb gb ",
"fb_weight": "4",
"geoloc": "44.79288005,-93.50386247"
},
{
"date_time": "sun dec 02 10:29:26 pst 2012",
"tweet": "mason crosby lol. wow. he is going to get criticized even after a made field goal! #minvsgb #packers",
"fb_assoc": "gb fb ",
"fb_weight": "8",
"geoloc": "44.2461564,-88.33866059"
},
{
"date_time": "sun dec 02 10:30:33 pst 2012",
"tweet": "fuck jordy nelson stop getting hurt you pus",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "38.3987515,-86.9713904"
},
{
"date_time": "sun dec 02 11:08:20 pst 2012",
"tweet": "packers lose another offensive lineman! oh boy. #vikings",
"fb_assoc": "gb fb min ",
"fb_weight": "8",
"geoloc": "44.91207659,-97.11166933"
},
{
"date_time": "sun dec 02 11:17:32 pst 2012",
"tweet": "i want a giant bowl of chilli with cheese, sour cream, and fritos while watching the packers with my rents.",
"fb_assoc": "nyg gb ",
"fb_weight": "3",
"geoloc": "37.1754342,-3.6076248"
},
{
"date_time": "sun dec 02 11:20:26 pst 2012",
"tweet": "seriously packers get your shit together",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "35.84851298,-86.36444254"
},
{
"date_time": "sun dec 02 11:26:55 pst 2012",
"tweet": "mason crosby blows dick lmao",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "39.2551507,-76.70715347"
},
{
"date_time": "sun dec 02 11:27:10 pst 2012",
"tweet": "@tommyjonjak @packerforum @packers @mmangen #gopackgo",
"fb_assoc": "gb ",
"fb_weight": "3",
"geoloc": "43.35321731,-87.91766912"
},
{
"date_time": "sun dec 02 11:28:19 pst 2012",
"tweet": "packers better get their shit together in this second half!",
"fb_assoc": "gb ",
"fb_weight": "2",
"geoloc": "43.3983915,-94.8158809"
},
{
"date_time": "sun dec 02 11:42:51 pst 2012",
"tweet": "morgan burnett pick in the endzone!!!",
"fb_assoc": "fb gb ",
"fb_weight": "3",
"geoloc": "31.393434,-85.677794"
},
{
"date_time": "sun dec 02 11:48:17 pst 2012",
"tweet": "hope i'm wrong, but i have a bad feeling. frustration and mental errors. can't seem to get anything going. #packers",
"fb_assoc": "gb ",
"fb_weight": "5",
"geoloc": "44.257716,-88.476975"
},
{
"date_time": "sun dec 02 11:51:26 pst 2012",
"tweet": "adrian peterson better beat on the packers defense today.",
"fb_assoc": "min gb fb ",
"fb_weight": "6",
"geoloc": "34.26492547,-81.62534772"
},