Skip to content

Instantly share code, notes, and snippets.

@bburky
Created December 1, 2013 02:41
Show Gist options
  • Save bburky/7727922 to your computer and use it in GitHub Desktop.
Save bburky/7727922 to your computer and use it in GitHub Desktop.
Plot tweets from a Twitter geocode search using IPython and follium
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import ConfigParser\n",
"import os\n",
"from twython import Twython\n",
"from IPython.display import HTML\n",
"import folium\n",
"import json"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 1
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Put in ~/.twitter_creds the following with correct creds:\n",
"\n",
" [twitter]\n",
" consumer_key = XXXXXXXXXXXXXXX\n",
" consumer_secret = XXXXXXXXXXXXXXX\n",
" access_token = XXXXXXXXXXXXXXX\n",
" access_token_secret = XXXXXXXXXXXXXXX"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Login to Twitter"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"config = ConfigParser.ConfigParser()\n",
"config.read(os.path.expanduser(\"~/.twitter_creds\"))\n",
"secrets = dict(config.items('twitter'))\n",
"\n",
"twitter = Twython(app_key=secrets['consumer_key'], app_secret=secrets['consumer_secret'],\n",
" oauth_token=secrets['access_token'], oauth_token_secret=secrets['access_token_secret'])"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Define some helper functions"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Folium wants to save its maps to files on disk. This works for my purposes though, but requires HTML5 srcdoc and doesn't support all of folium's features. Should work in non-IE browsers. This also uses the private `Map._build_map` function from folium which may not be stable between versions."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def inline_map(m):\n",
" m._build_map()\n",
" return HTML('<iframe srcdoc=\"{srcdoc}\" style=\"width: 100%; height: 510px; border: none\"></iframe>'.format(srcdoc=m.HTML.replace('\"', '&quot;')))"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 3
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For a tweet generate an HTML tooltip and add it to the map."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def plot_tweet(tweet_map, result):\n",
" lon, lat = result['coordinates']['coordinates']\n",
" screen_name = result['user']['screen_name']\n",
" profile_image_url = result['user']['profile_image_url']\n",
" created_at = result['created_at']\n",
" id_str = result['id_str']\n",
" html = '<a style=\"color: black; font-weight: bold\" href=\"http://twitter.com/{screen_name}\"><img style=\"float: left; margin: 0 6px 6px 0\" src=\"{profile_image_url}\">{screen_name}</a><br>{tweet}<br><a style=\"color: #999; display: block; text-align: right\" href=\"http://twitter.com/{screen_name}/status/{id_str}\">{created_at}</a>'.format(\n",
" screen_name=screen_name,\n",
" profile_image_url=profile_image_url,\n",
" tweet=Twython.html_for_tweet(result).encode('ascii', 'xmlcharrefreplace'),\n",
" id_str=id_str,\n",
" created_at=created_at)\n",
" tweet = json.dumps(html)[1:-1]\n",
" tweet_map.simple_marker([lat, lon], popup=tweet)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Search and map"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"These are coordinates of the center of TU. The search is done with a radius of 0.5 miles, so this doesn't need to be perfect."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"coords = [36.1514, -95.946]\n",
"coords_str = ','.join(map(str,coords))"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 5
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Search Twitter with a `geocode:latitude,longitude,radius` query."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"results = twitter.search(q='geocode:'+coords_str+',0.5mi', result_type='recent', count=100)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 6
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Map the results. Some tweets may somehow be missing coordinates, skip them."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"tweet_map = folium.Map(location=coords, zoom_start=16)\n",
"for result in results['statuses']:\n",
" if not result['coordinates'] or not result['coordinates']['coordinates']:\n",
" continue\n",
" plot_tweet(tweet_map, result)\n",
"inline_map(tweet_map)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<iframe srcdoc=\"<!DOCTYPE html>\n",
"<head>\n",
" <link rel=&quot;stylesheet&quot; href=&quot;http://cdn.leafletjs.com/leaflet-0.5/leaflet.css&quot; />\n",
" <script src=&quot;http://cdn.leafletjs.com/leaflet-0.5/leaflet.js&quot;></script>\n",
" \n",
" \n",
" \n",
" \n",
"\n",
"\n",
"<style>\n",
"\n",
"#map {\n",
" position:absolute;\n",
" top:0;\n",
" bottom:0;\n",
" right:0;\n",
" left:0;\n",
"}\n",
"\n",
"</style>\n",
"</head>\n",
"<body>\n",
"\n",
" <div id=&quot;map&quot; style=&quot;width: 960px; height: 500px&quot;></div>\n",
"\n",
"<script>\n",
"\n",
"\n",
"\n",
"var map = L.map('map').setView([36.1514, -95.946], 16);\n",
"\n",
"L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {\n",
" maxZoom: 18,\n",
" attribution: 'Map data (c) <a href=&quot;http://openstreetmap.org&quot;>OpenStreetMap</a> contributors'\n",
"}).addTo(map);\n",
"\n",
"\n",
"var marker_1 = L.marker([36.15045619, -95.94881933]);\n",
"marker_1.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/PeliLeaks\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000646363081/ad048dc2354400901f946d63f466a68f_normal.jpeg\\&quot;>PeliLeaks</a><br>cuti sudah habis bro<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/PeliLeaks/status/406973006133481473\\&quot;>Sun Dec 01 02:28:20 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_1)\n",
"\n",
"var marker_2 = L.marker([36.1489311, -95.9458648]);\n",
"marker_2.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/RiahhTurnn\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000495351291/a6a084ece4a8c1f8f45d0126d9cf81b2_normal.jpeg\\&quot;>RiahhTurnn</a><br>So sad I'm missing my best friends 21st birthday! Have fun tonight love! Wish I was there! <a href=\\&quot;https://twitter.com/kimoridi\\&quot; class=\\&quot;twython-mention\\&quot;>@kimoridi</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/RiahhTurnn/status/406968074684743681\\&quot;>Sun Dec 01 02:08:44 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_2)\n",
"\n",
"var marker_3 = L.marker([36.15143366, -95.94877046]);\n",
"marker_3.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/MaryamAlJabri1\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000173516754/895f094350011cb44f74b65dfac56e24_normal.jpeg\\&quot;>MaryamAlJabri1</a><br>&#8220;<a href=\\&quot;https://twitter.com/TedOfficialPage\\&quot; class=\\&quot;twython-mention\\&quot;>@TedOfficialPage</a>: One mistake and everyone judges you. That's life.&#8221;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/MaryamAlJabri1/status/406967693963587584\\&quot;>Sun Dec 01 02:07:13 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_3)\n",
"\n",
"var marker_4 = L.marker([36.14919764, -95.9478576]);\n",
"marker_4.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/AubreyHercyk\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/2924184419/bc361c09a4dfe7ac4cafe94bb0af73d8_normal.jpeg\\&quot;>AubreyHercyk</a><br><a href=\\&quot;https://twitter.com/HannahHercyk\\&quot; class=\\&quot;twython-mention\\&quot;>@HannahHercyk</a> <a href=\\&quot;https://twitter.com/Corywaite22\\&quot; class=\\&quot;twython-mention\\&quot;>@Corywaite22</a> <a href=\\&quot;https://twitter.com/DidlakeJake\\&quot; class=\\&quot;twython-mention\\&quot;>@DidlakeJake</a> I was first...<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/AubreyHercyk/status/406966076837072896\\&quot;>Sun Dec 01 02:00:48 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_4)\n",
"\n",
"var marker_5 = L.marker([36.14886068, -95.94360352]);\n",
"marker_5.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/ChadABennett\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/3403097277/54fc992231836a7d951ba1b1de743fc1_normal.jpeg\\&quot;>ChadABennett</a><br>A true diehard <a href=\\&quot;https://twitter.com/search?q=%23meangreenfootball\\&quot; class=\\&quot;twython-hashtag\\&quot;>#meangreenfootball</a> fan. Love it! @ H. A. Chapman Stadium <a href=\\&quot;http://t.co/Kitwrn2FTo\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hXHNaMzhsS/</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/ChadABennett/status/406964198502326272\\&quot;>Sun Dec 01 01:53:20 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_5)\n",
"\n",
"var marker_6 = L.marker([36.14897679, -95.947796]);\n",
"marker_6.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000724073178/9302c5d69e447d1abec3f0a8bd94c100_normal.jpeg\\&quot;>IAmAshleyClark</a><br>Man...some marble slab or cold stone sure does sound good right now!.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark/status/406956876534788096\\&quot;>Sun Dec 01 01:24:14 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_6)\n",
"\n",
"var marker_7 = L.marker([36.14964909, -95.94434091]);\n",
"marker_7.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/AubreyHercyk\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/2924184419/bc361c09a4dfe7ac4cafe94bb0af73d8_normal.jpeg\\&quot;>AubreyHercyk</a><br>It is not happy people who are thankful; it is thankful people who are happy. &#127810;&#10084;&#65039;&#127810; @ gobble gobble gobbl<a href=\\&quot;http://t.co/BU8XzyEgOt\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hXEDs_Dy4_/</a>Ot<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/AubreyHercyk/status/406956685325254656\\&quot;>Sun Dec 01 01:23:29 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_7)\n",
"\n",
"var marker_8 = L.marker([36.14910459, -95.9476293]);\n",
"marker_8.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000724073178/9302c5d69e447d1abec3f0a8bd94c100_normal.jpeg\\&quot;>IAmAshleyClark</a><br><a href=\\&quot;https://twitter.com/MarbleSlab\\&quot; class=\\&quot;twython-mention\\&quot;>@MarbleSlab</a> OMG!!. This is what I get EVERY TIME from marble slab!.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark/status/406956385989967872\\&quot;>Sun Dec 01 01:22:17 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_8)\n",
"\n",
"var marker_9 = L.marker([36.14897679, -95.947796]);\n",
"marker_9.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000724073178/9302c5d69e447d1abec3f0a8bd94c100_normal.jpeg\\&quot;>IAmAshleyClark</a><br>RT <a href=\\&quot;https://twitter.com/MarbleSlab\\&quot; class=\\&quot;twython-mention\\&quot;>@MarbleSlab</a>: Sweet Cream, cookie dough and marshmallow. RT if you'd like this creation for dessert tonight! http://t.co/rkT4EeyQ3Z<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark/status/406956244545458176\\&quot;>Sun Dec 01 01:21:44 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_9)\n",
"\n",
"var marker_10 = L.marker([36.14904737, -95.94772407]);\n",
"marker_10.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000724073178/9302c5d69e447d1abec3f0a8bd94c100_normal.jpeg\\&quot;>IAmAshleyClark</a><br>The Brady Bunch is such a good show!.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/IAmAshleyClark/status/406956079323435008\\&quot;>Sun Dec 01 01:21:04 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_10)\n",
"\n",
"var marker_11 = L.marker([36.1489104, -95.945811]);\n",
"marker_11.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/RiahhTurnn\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000495351291/a6a084ece4a8c1f8f45d0126d9cf81b2_normal.jpeg\\&quot;>RiahhTurnn</a><br>My Aunt told me to get her a gift card to the liquor store for Christmas....<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/RiahhTurnn/status/406953611902480384\\&quot;>Sun Dec 01 01:11:16 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_11)\n",
"\n",
"var marker_12 = L.marker([36.14964909, -95.94434091]);\n",
"marker_12.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/AubreyHercyk\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/2924184419/bc361c09a4dfe7ac4cafe94bb0af73d8_normal.jpeg\\&quot;>AubreyHercyk</a><br>It's not happy people who are thankful; it's thankful people who are happy. &#127810;&#10084;&#65039; @ gobble gobble gobble<a href=\\&quot;http://t.co/nLV9BgFdEo\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hXBKhOjy0F/</a>o<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/AubreyHercyk/status/406952880697262080\\&quot;>Sun Dec 01 01:08:22 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_12)\n",
"\n",
"var marker_13 = L.marker([36.15751941, -95.95181925]);\n",
"marker_13.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/haypoindexter\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000764073073/15ec1504e85b1d99c9bdd7db8833df34_normal.jpeg\\&quot;>haypoindexter</a><br>Don't mind me, just crying alone in my apartment while watching Dobby's death scene.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/haypoindexter/status/406949269858312192\\&quot;>Sun Dec 01 00:54:01 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_13)\n",
"\n",
"var marker_14 = L.marker([36.14987429, -95.93789041]);\n",
"marker_14.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/DrDustinDeVore\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/2176065118/IMG_1569_normal.JPG\\&quot;>DrDustinDeVore</a><br><a href=\\&quot;https://twitter.com/JeffTheMailman\\&quot; class=\\&quot;twython-mention\\&quot;>@JeffTheMailman</a> but as HC he has made the call to be the OC, which is a horrible coaching decision.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/DrDustinDeVore/status/406948538258427904\\&quot;>Sun Dec 01 00:51:06 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_14)\n",
"\n",
"var marker_15 = L.marker([36.15487034, -95.94425482]);\n",
"marker_15.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Damn, the <a href=\\&quot;https://twitter.com/FOXSports1\\&quot; class=\\&quot;twython-mention\\&quot;>@FOXSports1</a> feed has to freeze up now!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406947403158130688\\&quot;>Sun Dec 01 00:46:36 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_15)\n",
"\n",
"var marker_16 = L.marker([36.15487034, -95.94425482]);\n",
"marker_16.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Iowa State and West Virginia tied at 38 with five seconds left. Check out <a href=\\&quot;https://twitter.com/FOXSports1\\&quot; class=\\&quot;twython-mention\\&quot;>@FOXSports1</a>.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406946712796688384\\&quot;>Sun Dec 01 00:43:51 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_16)\n",
"\n",
"var marker_17 = L.marker([36.1492759, -95.9485471]);\n",
"marker_17.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/JBencke61\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000531999188/17d684317a46dc96ecc15b62edd9dfe6_normal.jpeg\\&quot;>JBencke61</a><br>I can't stand Alabama and their fans<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/JBencke61/status/406945863622070272\\&quot;>Sun Dec 01 00:40:29 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_17)\n",
"\n",
"var marker_18 = L.marker([36.15487034, -95.94425482]);\n",
"marker_18.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br><a href=\\&quot;https://twitter.com/markedwards1906\\&quot; class=\\&quot;twython-mention\\&quot;>@markedwards1906</a> <a href=\\&quot;https://twitter.com/SonofConway\\&quot; class=\\&quot;twython-mention\\&quot;>@SonofConway</a> I like/hate this too. <a href=\\&quot;https://t.co/8sOxyVedeH\\&quot; class=\\&quot;twython-url\\&quot;>twitter.com/EricBaileyTW/s&#8230;</a>\\n\\nWe suck at Tulsa now. I&#8217;m sad.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406945575779581952\\&quot;>Sun Dec 01 00:39:20 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_18)\n",
"\n",
"var marker_19 = L.marker([36.15751008, -95.95181256]);\n",
"marker_19.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/haypoindexter\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000764073073/15ec1504e85b1d99c9bdd7db8833df34_normal.jpeg\\&quot;>haypoindexter</a><br>Auburn? Please. Harry Potter is on.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/haypoindexter/status/406943787848462336\\&quot;>Sun Dec 01 00:32:14 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_19)\n",
"\n",
"var marker_20 = L.marker([36.1492409, -95.9432801]);\n",
"marker_20.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/luketimallen\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/3705616155/836599f784c330db47a0a39c2d8b008f_normal.jpeg\\&quot;>luketimallen</a><br>How do you not prepare for a return on a 57 yarder?<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/luketimallen/status/406942606048780288\\&quot;>Sun Dec 01 00:27:32 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_20)\n",
"\n",
"var marker_21 = L.marker([36.15751941, -95.95181925]);\n",
"marker_21.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/haypoindexter\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000764073073/15ec1504e85b1d99c9bdd7db8833df34_normal.jpeg\\&quot;>haypoindexter</a><br>The 3rd brother lived to a great age and handed his invisibility cloak to is son and left to journey with death as old friends<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/haypoindexter/status/406942476750958592\\&quot;>Sun Dec 01 00:27:01 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_21)\n",
"\n",
"var marker_22 = L.marker([36.15487029, -95.9442544]);\n",
"marker_22.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Auburn wins, Auburn wins! Missed 57-yard FG returned for a touchdown!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406942232877334528\\&quot;>Sun Dec 01 00:26:03 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_22)\n",
"\n",
"var marker_23 = L.marker([36.15487029, -95.9442544]);\n",
"marker_23.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Holy hell!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406942131912073216\\&quot;>Sun Dec 01 00:25:39 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_23)\n",
"\n",
"var marker_24 = L.marker([36.1492409, -95.9432801]);\n",
"marker_24.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/luketimallen\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/3705616155/836599f784c330db47a0a39c2d8b008f_normal.jpeg\\&quot;>luketimallen</a><br>NO STINKIN WAY<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/luketimallen/status/406942119027175425\\&quot;>Sun Dec 01 00:25:36 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_24)\n",
"\n",
"var marker_25 = L.marker([36.15487034, -95.94425482]);\n",
"marker_25.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br><a href=\\&quot;https://twitter.com/SonofConway\\&quot; class=\\&quot;twython-mention\\&quot;>@SonofConway</a> why do I keep lying?!?<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406940055819665408\\&quot;>Sun Dec 01 00:17:24 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_25)\n",
"\n",
"var marker_26 = L.marker([36.15487034, -95.94425482]);\n",
"marker_26.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>He didn&#8217;t cross the line of scrimmage, did he? Don&#8217;t think so. I yelled a lot.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406939254351085568\\&quot;>Sun Dec 01 00:14:13 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_26)\n",
"\n",
"var marker_27 = L.marker([36.15487034, -95.94425482]);\n",
"marker_27.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Touchdown! Holy shit!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406939148864352256\\&quot;>Sun Dec 01 00:13:48 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_27)\n",
"\n",
"var marker_28 = L.marker([36.15487033, -95.94425482]);\n",
"marker_28.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br><a href=\\&quot;https://twitter.com/SonofConway\\&quot; class=\\&quot;twython-mention\\&quot;>@SonofConway</a> I lied. Out of bounds, I guess.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406938962159083520\\&quot;>Sun Dec 01 00:13:03 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_28)\n",
"\n",
"var marker_29 = L.marker([36.1489438, -95.945828]);\n",
"marker_29.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/RiahhTurnn\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000495351291/a6a084ece4a8c1f8f45d0126d9cf81b2_normal.jpeg\\&quot;>RiahhTurnn</a><br>Got a paper cut on my eye... how that happens, idk<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/RiahhTurnn/status/406938692293382144\\&quot;>Sun Dec 01 00:11:59 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_29)\n",
"\n",
"var marker_30 = L.marker([36.1492409, -95.9432801]);\n",
"marker_30.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/luketimallen\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/3705616155/836599f784c330db47a0a39c2d8b008f_normal.jpeg\\&quot;>luketimallen</a><br>For a top 5 matchup this is one of the ugliest football games<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/luketimallen/status/406938086329700352\\&quot;>Sun Dec 01 00:09:34 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_30)\n",
"\n",
"var marker_31 = L.marker([36.15486883, -95.94425532]);\n",
"marker_31.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Bama kicker, please miss another FGA!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406937782519492608\\&quot;>Sun Dec 01 00:08:22 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_31)\n",
"\n",
"var marker_32 = L.marker([36.15398778, -95.94454466]);\n",
"marker_32.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>The punter looks a little shaken up. Good for him taking the hit. But damn SEC refs missing an illegal block.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406936638351106048\\&quot;>Sun Dec 01 00:03:49 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_32)\n",
"\n",
"var marker_33 = L.marker([36.15487034, -95.94425482]);\n",
"marker_33.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br><a href=\\&quot;https://twitter.com/EricBaileyTW\\&quot; class=\\&quot;twython-mention\\&quot;>@EricBaileyTW</a> Penn St. just missed too. College teams need better kickers<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406935651162931200\\&quot;>Sat Nov 30 23:59:54 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_33)\n",
"\n",
"var marker_34 = L.marker([36.15487034, -95.94425482]);\n",
"marker_34.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Wow, that sucks for Penn St. Missed a field goal with 31 seconds left and only up by 7.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406935461572009984\\&quot;>Sat Nov 30 23:59:09 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_34)\n",
"\n",
"var marker_35 = L.marker([36.14978489, -95.94542868]);\n",
"marker_35.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/Dbuzz_5\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000689802710/e463188ae1ed246296472d1e7788000f_normal.jpeg\\&quot;>Dbuzz_5</a><br>8-4 enough said<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/Dbuzz_5/status/406933558083592192\\&quot;>Sat Nov 30 23:51:35 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_35)\n",
"\n",
"var marker_36 = L.marker([36.15487034, -95.94425482]);\n",
"marker_36.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>99-yard Alabama touchdown&#8230; Damn it.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406931219989811201\\&quot;>Sat Nov 30 23:42:17 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_36)\n",
"\n",
"var marker_37 = L.marker([36.1488748, -95.94509108]);\n",
"marker_37.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/xoxolindss\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000810610954/59caf903e92e2849bf6f218f4ef2aeab_normal.jpeg\\&quot;>xoxolindss</a><br>Great game UNT &#128154; and future brother in law &#128141; http://t.co/E1PTa0VKH4<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/xoxolindss/status/406929901753622528\\&quot;>Sat Nov 30 23:37:03 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_37)\n",
"\n",
"var marker_38 = L.marker([36.14878182, -95.94839305]);\n",
"marker_38.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/KhalidAlkhaldi8\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000771706593/e96a963b019880a30d44639c7e8bb19c_normal.jpeg\\&quot;>KhalidAlkhaldi8</a><br>Headache!!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/KhalidAlkhaldi8/status/406928865752150016\\&quot;>Sat Nov 30 23:32:56 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_38)\n",
"\n",
"var marker_39 = L.marker([36.150991, -95.945778]);\n",
"marker_39.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br>Sweet Jesus, this Iron Bowl is great and I&#8217;ve only started watching this drive.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406928358748864512\\&quot;>Sat Nov 30 23:30:55 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_39)\n",
"\n",
"var marker_40 = L.marker([36.15099108, -95.94577775]);\n",
"marker_40.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/YBrammer\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000607172621/4ef12267e875a4fb418a7ffcca5b0ccb_normal.jpeg\\&quot;>YBrammer</a><br><a href=\\&quot;https://twitter.com/tim_cato\\&quot; class=\\&quot;twython-mention\\&quot;>@tim_cato</a> I&#8217;ll go through the pictures following the Bama-Auburn game and my eyes clear up&#8230; damn, we are so bad.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/YBrammer/status/406927525793640448\\&quot;>Sat Nov 30 23:27:37 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_40)\n",
"\n",
"var marker_41 = L.marker([36.148034, -95.94221212]);\n",
"marker_41.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/BBBurruss\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000646950888/cf7c03e143d9d3c075fdd35faf5adf8b_normal.jpeg\\&quot;>BBBurruss</a><br>NT wins big!!!!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/BBBurruss/status/406923069102383104\\&quot;>Sat Nov 30 23:09:54 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_41)\n",
"\n",
"var marker_42 = L.marker([36.14928315, -95.94459912]);\n",
"marker_42.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/kenziereeves8\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000759807285/3246fde1e3e69edc2714ac0e07f31116_normal.jpeg\\&quot;>kenziereeves8</a><br>This is the longest game everrrrr &#128530;&#127944;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/kenziereeves8/status/406919131678531584\\&quot;>Sat Nov 30 22:54:15 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_42)\n",
"\n",
"var marker_43 = L.marker([36.14881599, -95.94199055]);\n",
"marker_43.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/samrwalker\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000669196833/b9e7e84aa5ca5aaf59d73c936d9e0bac_normal.jpeg\\&quot;>samrwalker</a><br>Combined wins for the Blankenship family this year: 6 - 3 for Muskogee, 3 for TU<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/samrwalker/status/406916823691427840\\&quot;>Sat Nov 30 22:45:05 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_43)\n",
"\n",
"var marker_44 = L.marker([36.14886068, -95.94360352]);\n",
"marker_44.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/meeshafree\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/3544416946/5f8ea6eda6bfcf826d5c3cac984b062d_normal.jpeg\\&quot;>meeshafree</a><br>I'll freeze anywhere with her!! @ H. A. Chapman Stadium <a href=\\&quot;http://t.co/LAm11SKhbY\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hWxvmfAsod/</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/meeshafree/status/406916066611585024\\&quot;>Sat Nov 30 22:42:05 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_44)\n",
"\n",
"var marker_45 = L.marker([36.14883923, -95.94410024]);\n",
"marker_45.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/SamanthaSchmaus\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000736287364/44f08e190c7535892698e6e0d446e266_normal.jpeg\\&quot;>SamanthaSchmaus</a><br>http://t.co/4k8h8sxB2V<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/SamanthaSchmaus/status/406915546412621826\\&quot;>Sat Nov 30 22:40:01 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_45)\n",
"\n",
"var marker_46 = L.marker([36.14865543, -95.94333747]);\n",
"marker_46.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000762564418/37944f38cc1473394a20c71dfd9ac98d_normal.jpeg\\&quot;>iMA_SHOPAHOLiC</a><br>My nigga my nigga *beefs it up*<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC/status/406915081910231040\\&quot;>Sat Nov 30 22:38:10 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_46)\n",
"\n",
"var marker_47 = L.marker([36.14947678, -95.94453133]);\n",
"marker_47.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000762564418/37944f38cc1473394a20c71dfd9ac98d_normal.jpeg\\&quot;>iMA_SHOPAHOLiC</a><br>The dawg is loose <a href=\\&quot;https://twitter.com/TruthiS_Only1Me\\&quot; class=\\&quot;twython-mention\\&quot;>@TruthiS_Only1Me</a> &#128054;&#128154;&#127944; TOUCH DOOOOOWWWNNNN!!<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC/status/406915003380297728\\&quot;>Sat Nov 30 22:37:51 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_47)\n",
"\n",
"var marker_48 = L.marker([36.14960289, -95.94442541]);\n",
"marker_48.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000762564418/37944f38cc1473394a20c71dfd9ac98d_normal.jpeg\\&quot;>iMA_SHOPAHOLiC</a><br><a href=\\&quot;https://twitter.com/search?q=%23unt\\&quot; class=\\&quot;twython-hashtag\\&quot;>#unt</a> finna win innis hoeeeee<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC/status/406912967121190913\\&quot;>Sat Nov 30 22:29:46 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_48)\n",
"\n",
"var marker_49 = L.marker([36.149408, -95.948246]);\n",
"marker_49.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/vanusamendes14\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000787593286/afd46ec1da55bf12ceceeedfd9f97db4_normal.jpeg\\&quot;>vanusamendes14</a><br>Est&#244;mago&#128555;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/vanusamendes14/status/406912943452745728\\&quot;>Sat Nov 30 22:29:40 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_49)\n",
"\n",
"var marker_50 = L.marker([36.14886068, -95.94360352]);\n",
"marker_50.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/Genx13\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000631184506/392cafd1c93dbe5844fc36bc875fbf7e_normal.jpeg\\&quot;>Genx13</a><br>Victory walk to the car. @ H. A. Chapman Stadium <a href=\\&quot;http://t.co/NHrchUmOD8\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hWwR2fNsiy/</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/Genx13/status/406912675537760256\\&quot;>Sat Nov 30 22:28:36 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_50)\n",
"\n",
"var marker_51 = L.marker([36.14866647, -95.94397239]);\n",
"marker_51.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br>You know a stadium is loud when you can hear the ball hit the ground on a punt from 120 yards away. <a href=\\&quot;https://twitter.com/search?q=%23GMG\\&quot; class=\\&quot;twython-hashtag\\&quot;>#GMG</a> <a href=\\&quot;https://twitter.com/search?q=%23BeatTulsa\\&quot; class=\\&quot;twython-hashtag\\&quot;>#BeatTulsa</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406912644205916160\\&quot;>Sat Nov 30 22:28:29 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_51)\n",
"\n",
"var marker_52 = L.marker([36.14840862, -95.94372813]);\n",
"marker_52.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br><a href=\\&quot;https://twitter.com/totesppresh\\&quot; class=\\&quot;twython-mention\\&quot;>@totesppresh</a> Also it's fun to say we best they C-USA West champion. Their one conference loss If they win today. &#128541;<a href=\\&quot;https://twitter.com/search?q=%23GMG\\&quot; class=\\&quot;twython-hashtag\\&quot;>#GMG</a>G<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406911116938186752\\&quot;>Sat Nov 30 22:22:24 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_52)\n",
"\n",
"var marker_53 = L.marker([36.14834585, -95.94346781]);\n",
"marker_53.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br><a href=\\&quot;https://twitter.com/totesppresh\\&quot; class=\\&quot;twython-mention\\&quot;>@totesppresh</a> Rice would be the only other logical option to be selected for that bowl.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406910784220831744\\&quot;>Sat Nov 30 22:21:05 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_53)\n",
"\n",
"var marker_54 = L.marker([36.14837598, -95.94355549]);\n",
"marker_54.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br><a href=\\&quot;https://twitter.com/totesppresh\\&quot; class=\\&quot;twython-mention\\&quot;>@totesppresh</a> If Rice wins they will play in the C-USA championship, making it more likely for us to make the Heart of Dallas Bowl. <a href=\\&quot;https://twitter.com/search?q=%23GMG\\&quot; class=\\&quot;twython-hashtag\\&quot;>#GMG</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406910279423778817\\&quot;>Sat Nov 30 22:19:05 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_54)\n",
"\n",
"var marker_55 = L.marker([36.1477041, -95.9475924]);\n",
"marker_55.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/chenoab12\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000417629920/798b7eaf931b0e81434e4e7dbe2d4315_normal.jpeg\\&quot;>chenoab12</a><br>I'm at Coney I-Lander (Tulsa, OK) <a href=\\&quot;http://t.co/NZFp0GCjxs\\&quot; class=\\&quot;twython-url\\&quot;>4sq.com/1fTWMru</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/chenoab12/status/406909401090777088\\&quot;>Sat Nov 30 22:15:35 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_55)\n",
"\n",
"var marker_56 = L.marker([36.15163291, -95.94514847]);\n",
"marker_56.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/MichaelBall_13\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000400863787/87aeac917abffa56bea92e2ba5e934bc_normal.jpeg\\&quot;>MichaelBall_13</a><br>The Genave King Rogers fountains. <a href=\\&quot;https://twitter.com/search?q=%23universityoftulsa\\&quot; class=\\&quot;twython-hashtag\\&quot;>#universityoftulsa</a> <a href=\\&quot;https://twitter.com/search?q=%23tu\\&quot; class=\\&quot;twython-hashtag\\&quot;>#tu</a> <a href=\\&quot;https://twitter.com/search?q=%23tu\\&quot; class=\\&quot;twython-hashtag\\&quot;>#tu</a>lsauniversity <a href=\\&quot;https://twitter.com/search?q=%23photography\\&quot; class=\\&quot;twython-hashtag\\&quot;>#photography</a> &#128247;<a href=\\&quot;https://twitter.com/search?q=%23iphone\\&quot; class=\\&quot;twython-hashtag\\&quot;>#iphone</a>e&#8230;<a href=\\&quot;http://t.co/uBkeiZNO3i\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hWsQugMvi3/</a>i<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/MichaelBall_13/status/406904724030754816\\&quot;>Sat Nov 30 21:57:00 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_56)\n",
"\n",
"var marker_57 = L.marker([36.14892871, -95.94402595]);\n",
"marker_57.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/Kylegigem\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/3688714057/29aee05a1988d1e377d4eaa0b5bc0b64_normal.jpeg\\&quot;>Kylegigem</a><br>Still reppin <a href=\\&quot;https://twitter.com/JManziel2\\&quot; class=\\&quot;twython-mention\\&quot;>@JManziel2</a> and <a href=\\&quot;https://twitter.com/search?q=%23regime\\&quot; class=\\&quot;twython-hashtag\\&quot;>#regime</a> at the UNTvsTU game. <a href=\\&quot;https://twitter.com/search?q=%23BTHOmizzou\\&quot; class=\\&quot;twython-hashtag\\&quot;>#BTHOmizzou</a> http://t.co/RnBRcBalB7<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/Kylegigem/status/406903944812584960\\&quot;>Sat Nov 30 21:53:55 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_57)\n",
"\n",
"var marker_58 = L.marker([36.14906545, -95.94389355]);\n",
"marker_58.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/xoxolindss\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000810610954/59caf903e92e2849bf6f218f4ef2aeab_normal.jpeg\\&quot;>xoxolindss</a><br><a href=\\&quot;https://twitter.com/SHESuhBEAUT_\\&quot; class=\\&quot;twython-mention\\&quot;>@SHESuhBEAUT_</a> <a href=\\&quot;https://twitter.com/AnnieTheAnimal\\&quot; class=\\&quot;twython-mention\\&quot;>@AnnieTheAnimal</a> no.. This is the 3rd round<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/xoxolindss/status/406902297969451009\\&quot;>Sat Nov 30 21:47:22 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_58)\n",
"\n",
"var marker_59 = L.marker([36.14841582, -95.94378898]);\n",
"marker_59.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/xoxolindss\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000810610954/59caf903e92e2849bf6f218f4ef2aeab_normal.jpeg\\&quot;>xoxolindss</a><br>Guess you could say, I'm a proud Ryan raider alumni &#10084;&#65039;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/xoxolindss/status/406900934799659008\\&quot;>Sat Nov 30 21:41:57 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_59)\n",
"\n",
"var marker_60 = L.marker([36.15006938, -95.94359516]);\n",
"marker_60.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000635139090/f0f53cd4ede5680b615246983887a793_normal.jpeg\\&quot;>Kitty_go_hard</a><br><a href=\\&quot;https://twitter.com/Caitlyn_H12\\&quot; class=\\&quot;twython-mention\\&quot;>@Caitlyn_H12</a> http://t.co/Bw8qPMhVYg<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard/status/406900864477974528\\&quot;>Sat Nov 30 21:41:40 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_60)\n",
"\n",
"var marker_61 = L.marker([36.15383812, -95.94247312]);\n",
"marker_61.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/kenziereeves8\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000759807285/3246fde1e3e69edc2714ac0e07f31116_normal.jpeg\\&quot;>kenziereeves8</a><br><a href=\\&quot;https://twitter.com/vintage_love_14\\&quot; class=\\&quot;twython-mention\\&quot;>@vintage_love_14</a> my brother held my phone hostage and posted that. &#128513;&#128563;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/kenziereeves8/status/406900341599244288\\&quot;>Sat Nov 30 21:39:35 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_61)\n",
"\n",
"var marker_62 = L.marker([36.14928906, -95.94413459]);\n",
"marker_62.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/kenziereeves8\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000759807285/3246fde1e3e69edc2714ac0e07f31116_normal.jpeg\\&quot;>kenziereeves8</a><br>My brother is an idiot &#128544;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/kenziereeves8/status/406897477439070208\\&quot;>Sat Nov 30 21:28:13 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_62)\n",
"\n",
"var marker_63 = L.marker([36.15306416, -95.95597986]);\n",
"marker_63.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/modyalqabbani\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000792485898/946dbb20469a46824bf07d0ee9d88013_normal.jpeg\\&quot;>modyalqabbani</a><br>&#1605;&#1580;&#1606;&#1608;&#1606; &#1575;&#1581;&#1576; &#1594;&#1610;&#1585;&#1603; &#1571;&#1606;&#1575; &#127773;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/modyalqabbani/status/406897202729349120\\&quot;>Sat Nov 30 21:27:07 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_63)\n",
"\n",
"var marker_64 = L.marker([36.14878721, -95.94346098]);\n",
"marker_64.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/MarquelPhillips\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000737953085/8a7c219181374df47a24ff12b74f0179_normal.jpeg\\&quot;>MarquelPhillips</a><br>Dammit I wish they'd put in Calcagni.. &#128557; Evans &amp; Green suckin it up. &amp; pretty hard for RB's when we can't pass. &#128531;&#127944;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/MarquelPhillips/status/406897093802872832\\&quot;>Sat Nov 30 21:26:41 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_64)\n",
"\n",
"var marker_65 = L.marker([36.14911235, -95.94404711]);\n",
"marker_65.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br><a href=\\&quot;https://twitter.com/MeanGreenSports\\&quot; class=\\&quot;twython-mention\\&quot;>@MeanGreenSports</a> From Tulsa, Oklahoma GO MEAN GREEN. <a href=\\&quot;https://twitter.com/search?q=%23GMG\\&quot; class=\\&quot;twython-hashtag\\&quot;>#GMG</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406896348303065088\\&quot;>Sat Nov 30 21:23:43 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_65)\n",
"\n",
"var marker_66 = L.marker([36.14852008, -95.94387641]);\n",
"marker_66.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br><a href=\\&quot;https://twitter.com/joshtweetn\\&quot; class=\\&quot;twython-mention\\&quot;>@joshtweetn</a> <a href=\\&quot;https://twitter.com/johnnyacp\\&quot; class=\\&quot;twython-mention\\&quot;>@johnnyacp</a> championship makes a big difference too. <a href=\\&quot;https://twitter.com/search?q=%23GMG\\&quot; class=\\&quot;twython-hashtag\\&quot;>#GMG</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406895474700869632\\&quot;>Sat Nov 30 21:20:15 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_66)\n",
"\n",
"var marker_67 = L.marker([36.14857554, -95.94397186]);\n",
"marker_67.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br><a href=\\&quot;https://twitter.com/joshtweetn\\&quot; class=\\&quot;twython-mention\\&quot;>@joshtweetn</a> <a href=\\&quot;https://twitter.com/johnnyacp\\&quot; class=\\&quot;twython-mention\\&quot;>@johnnyacp</a> that'll be exciting. I'm not dogging on UTSA I was just offering an explanation. Them having a chance at the C-USA...<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406895360485765120\\&quot;>Sat Nov 30 21:19:48 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_67)\n",
"\n",
"var marker_68 = L.marker([36.14886068, -95.94360352]);\n",
"marker_68.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/MichaelBall_13\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000400863787/87aeac917abffa56bea92e2ba5e934bc_normal.jpeg\\&quot;>MichaelBall_13</a><br>I was at this game &amp; remember it very well. Miracle on 11th Street. 1991 <a href=\\&quot;https://twitter.com/search?q=%23FreedomBowl\\&quot; class=\\&quot;twython-hashtag\\&quot;>#FreedomBowl</a> team <a href=\\&quot;https://twitter.com/search?q=%23TU\\&quot; class=\\&quot;twython-hashtag\\&quot;>#TU</a>&#8230; <a href=\\&quot;http://t.co/FR7xeh487w\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hWn0VuMvpx/</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/MichaelBall_13/status/406895280404328448\\&quot;>Sat Nov 30 21:19:29 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_68)\n",
"\n",
"var marker_69 = L.marker([36.14910621, -95.94445428]);\n",
"marker_69.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000635139090/f0f53cd4ede5680b615246983887a793_normal.jpeg\\&quot;>Kitty_go_hard</a><br><a href=\\&quot;https://twitter.com/ADswag7\\&quot; class=\\&quot;twython-mention\\&quot;>@ADswag7</a> get sauced<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard/status/406893453428015104\\&quot;>Sat Nov 30 21:12:13 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_69)\n",
"\n",
"var marker_70 = L.marker([36.14720387, -95.94737548]);\n",
"marker_70.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/jkburdge\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/1110324793/ffb11da2-e720-4996-ac6d-e6a81da346ff_normal.png\\&quot;>jkburdge</a><br><a href=\\&quot;https://twitter.com/2KDavis\\&quot; class=\\&quot;twython-mention\\&quot;>@2KDavis</a> I gave it to him<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/jkburdge/status/406892416071770112\\&quot;>Sat Nov 30 21:08:06 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_70)\n",
"\n",
"var marker_71 = L.marker([36.14881912, -95.94406154]);\n",
"marker_71.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/xoxolindss\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000810610954/59caf903e92e2849bf6f218f4ef2aeab_normal.jpeg\\&quot;>xoxolindss</a><br>Let's go UNT &#128154; #89 http://t.co/YltViaAFpX<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/xoxolindss/status/406892414817669120\\&quot;>Sat Nov 30 21:08:06 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_71)\n",
"\n",
"var marker_72 = L.marker([36.1490151, -95.9441884]);\n",
"marker_72.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/tux3317\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000475574365/d5f6cd17ab0eccabe40f94427f0ac9d2_normal.jpeg\\&quot;>tux3317</a><br>Does anyone else othrr than me wish they could be a football mascot?<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/tux3317/status/406891506876694529\\&quot;>Sat Nov 30 21:04:29 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_72)\n",
"\n",
"var marker_73 = L.marker([36.14859473, -95.94393956]);\n",
"marker_73.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000762564418/37944f38cc1473394a20c71dfd9ac98d_normal.jpeg\\&quot;>iMA_SHOPAHOLiC</a><br><a href=\\&quot;https://twitter.com/search?q=%23GoMeanGreen\\&quot; class=\\&quot;twython-hashtag\\&quot;>#GoMeanGreen</a> they came to Tulsa to play! &#127944;&#128154;<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC/status/406891137291399168\\&quot;>Sat Nov 30 21:03:01 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_73)\n",
"\n",
"var marker_74 = L.marker([36.14853386, -95.94390795]);\n",
"marker_74.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br><a href=\\&quot;https://twitter.com/johnnyacp\\&quot; class=\\&quot;twython-mention\\&quot;>@johnnyacp</a> UTSA fans are just excited to have football. If they go through an awful drought in 8 years like we did, the fans will disappear.<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406890084886007809\\&quot;>Sat Nov 30 20:58:50 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_74)\n",
"\n",
"var marker_75 = L.marker([36.14843018, -95.94374695]);\n",
"marker_75.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000723390106/d563bc72e5d251ab1e150765c090c63e_normal.png\\&quot;>TOwens_NTDaily</a><br>Dat blocked punt doe. <a href=\\&quot;https://twitter.com/search?q=%23GMG\\&quot; class=\\&quot;twython-hashtag\\&quot;>#GMG</a> <a href=\\&quot;https://twitter.com/search?q=%23BeatTulsa\\&quot; class=\\&quot;twython-hashtag\\&quot;>#BeatTulsa</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/TOwens_NTDaily/status/406889699597234176\\&quot;>Sat Nov 30 20:57:18 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_75)\n",
"\n",
"var marker_76 = L.marker([36.14910776, -95.9441045]);\n",
"marker_76.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000635139090/f0f53cd4ede5680b615246983887a793_normal.jpeg\\&quot;>Kitty_go_hard</a><br>&#8220;<a href=\\&quot;https://twitter.com/Reginaieut\\&quot; class=\\&quot;twython-mention\\&quot;>@Reginaieut</a>: <a href=\\&quot;https://twitter.com/Kitty_go_hard\\&quot; class=\\&quot;twython-mention\\&quot;>@Kitty_go_hard</a> synchronize12 WHAT???????? http://t.co/vHUEV9jXO1&#8221; prolly not<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard/status/406888491688009728\\&quot;>Sat Nov 30 20:52:30 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_76)\n",
"\n",
"var marker_77 = L.marker([36.14854447, -95.9438399]);\n",
"marker_77.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/sam_aronson\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000684361111/d32c8c3d92a6090fd19fe337a3913547_normal.jpeg\\&quot;>sam_aronson</a><br><a href=\\&quot;https://twitter.com/TimBerns4405\\&quot; class=\\&quot;twython-mention\\&quot;>@TimBerns4405</a> <a href=\\&quot;https://twitter.com/SHannitysHair\\&quot; class=\\&quot;twython-mention\\&quot;>@SHannitysHair</a> then Auburn goes<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/sam_aronson/status/406888285600890880\\&quot;>Sat Nov 30 20:51:41 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_77)\n",
"\n",
"var marker_78 = L.marker([36.14886068, -95.94360352]);\n",
"marker_78.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000762564418/37944f38cc1473394a20c71dfd9ac98d_normal.jpeg\\&quot;>iMA_SHOPAHOLiC</a><br>Comfortable kicks for away games&#128523; @ H. A. Chapman Stadium<a href=\\&quot;http://t.co/NtbIuRIHNb\\&quot; class=\\&quot;twython-url\\&quot;>instagram.com/p/hWlH3SiU_l/</a>b<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/iMA_SHOPAHOLiC/status/406888128910467072\\&quot;>Sat Nov 30 20:51:04 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_78)\n",
"\n",
"var marker_79 = L.marker([36.14887454, -95.94444087]);\n",
"marker_79.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000635139090/f0f53cd4ede5680b615246983887a793_normal.jpeg\\&quot;>Kitty_go_hard</a><br>If anyone receives a text from my dad for my snapchat name, plz don't tell him<br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/Kitty_go_hard/status/406888059137847296\\&quot;>Sat Nov 30 20:50:47 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_79)\n",
"\n",
"var marker_80 = L.marker([36.14886123, -95.94394231]);\n",
"marker_80.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://twitter.com/MichaelBall_13\\&quot;><img style=\\&quot;float: left; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://pbs.twimg.com/profile_images/378800000400863787/87aeac917abffa56bea92e2ba5e934bc_normal.jpeg\\&quot;>MichaelBall_13</a><br>It's <a href=\\&quot;https://twitter.com/search?q=%23NorthTexas\\&quot; class=\\&quot;twython-hashtag\\&quot;>#NorthTexas</a>, not <a href=\\&quot;https://twitter.com/search?q=%23NorthCarolina\\&quot; class=\\&quot;twython-hashtag\\&quot;>#NorthCarolina</a> mister referee. <a href=\\&quot;https://twitter.com/search?q=%23TulsaFB\\&quot; class=\\&quot;twython-hashtag\\&quot;>#TulsaFB</a><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://twitter.com/MichaelBall_13/status/406887922579673089\\&quot;>Sat Nov 30 20:50:15 +0000 2013</a>&quot;);\n",
"map.addLayer(marker_80)\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"</script>\n",
"\n",
"</body>\" style=\"width: 100%; height: 510px; border: none\"></iframe>"
],
"metadata": {},
"output_type": "pyout",
"prompt_number": 7,
"text": [
"<IPython.core.display.HTML at 0x10869aad0>"
]
}
],
"prompt_number": 7
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment