Skip to content

Instantly share code, notes, and snippets.

@uafrazier
Last active November 21, 2015 21:14
Show Gist options
  • Save uafrazier/8d78e6d70bd1f41342e3 to your computer and use it in GitHub Desktop.
Save uafrazier/8d78e6d70bd1f41342e3 to your computer and use it in GitHub Desktop.
D3: Texas Tornado Map (2014)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3: Texas Tornados</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Oswald:700,400);
body {
font-family: oswald, arial, sans-serif;
color: #333;
}
a:link {
color: #3A96B7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: #3A96B7;
}
a:active {
color: steelBlue;
}
#container {
width: 900px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
margin-bottom: 50px;
padding: 20px 50px;
background: #d3d3d3;
box-shadow: 0 0 5px #999999;
}
#container h1 {
text-align: center;
}
svg {
background: #d3d3d3;
}
.source {
font-family: oswald, arial, sans-serif;
font-weight: bold;
font-size: .75em;
text-align: center;
}
</style>
</head>
<body>
<div id="container">
<h1>Tornados in Texas - 2014</h1>
<p class="source">Source: <a href='http://www.tornadohistoryproject.com/'>Tornado History Project</a></p>
</div>
<script type="text/javascript">
//Width and height
var w = 900,
h = 500;
//Define projection
var projection = d3.geo.mercator()
.center([ -99.43,31.47 ])
.translate([ w/2, h/2 ])
.scale([ 2000 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection);
//Create SVG
var svg = d3.select("#container")
.append("svg")
.attr("width", w)
.attr("height", h);
//Load in GeoJSON data
d3.json("texas.json", function(json) {
//Bind data and create one path per GeoJSON feature
svg.selectAll("path")
.data(json.features)
.enter()
.append("path")
.attr("d", path)
.attr("fill","#fff");
});
//Load in Texas tornado data
d3.csv("tornadoData2014.csv",function(data) {
//Create image for each tornado
var imgs = svg.selectAll("image")
.data(data)
.enter()
.append("svg:image")
.attr("xlink:href", "tornado.svg")
.attr("x", function(d) {
//[0] returns the first coordinate (x) of the projected value
return projection([d.TouchdownLon, d.TouchdownLat])[0];
})
.attr("y", function(d) {
//[1] returns the second coordinate (y) of the projected value
return projection([d.TouchdownLon, d.TouchdownLat])[1]-15;
})
.attr("width", "15")
.attr("height", "15");
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"STATE_NAME":"Texas","DRAWSEQ":41,"STATE_FIPS":"48","SUB_REGION":"West South Central","STATE_ABBR":"TX"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-106.53951429561045,31.786305357068045],[-106.61498629568072,31.81783435709741],[-106.61612329568179,31.84474035712247],[-106.64407929570783,31.895205357169466],[-106.63374929569821,31.914101357187064],[-106.63260529569713,31.97222035724119],[-106.6500622957134,31.980329357248745],[-106.62362529568877,32.001088357268074],[-106.37838729546039,32.00074735726776],[-106.003240295111,32.00165835726861],[-104.92230529410429,32.00438235727115],[-104.85106829403796,32.00326535727011],[-104.0192972932633,32.00740335727396],[-103.981377293228,32.006015357272666],[-103.72944429299336,32.006229357272865],[-103.33254929262372,32.004281357271054],[-103.05841329236841,32.00202235726895],[-103.05564029236584,32.08511635734634],[-103.0600182923699,32.5155453577472],[-103.04933129235995,32.953639358155215],[-103.04310129235415,33.37783135855027],[-103.03873629235008,33.565843358725374],[-103.03325829234498,33.82618135896783],[-103.02964629234162,34.30782035941639],[-103.02265729233511,34.745332359823855],[-103.02525129233753,34.96478036002823],[-103.02615129233837,35.17726536022612],[-103.02229429233478,35.62364836064185],[-103.02261229233507,35.742327360752384],[-103.0240482923364,36.05606136104457],[-103.02728629233943,36.49159136145019],[-102.9974012923116,36.49237036145091],[-102.16567329153699,36.49023436144893],[-102.03465829141497,36.492981361451484],[-101.62075529102948,36.4920313614506],[-101.09010229053528,36.48805036144689],[-100.95734129041163,36.48963736144837],[-100.54983929003212,36.48947936144822],[-100.00727328952682,36.493912361452345],[-100.00155028952149,36.492554361451084],[-99.99755328951777,36.05759136104599],[-99.99812328951829,35.88383736088417],[-100.0003922895204,35.61885636063739],[-99.99474328951514,35.424622360456496],[-99.99757028951778,35.18223536023075],[-99.99645528951675,35.03105136008995],[-99.99926028951936,34.74724335982563],[-99.99647528951677,34.56238435965347],[-99.97248028949441,34.56192635965304],[-99.94512028946893,34.57963435966954],[-99.93228728945698,34.579173359669106],[-99.88097728940919,34.5482423596403],[-99.86094928939055,34.51869435961278],[-99.83030828936201,34.50184635959709],[-99.77806028931334,34.444064359543276],[-99.68527728922693,34.3775203594813],[-99.60181728914921,34.36863435947303],[-99.58558928913409,34.384934359488206],[-99.57821928912723,34.40898835951061],[-99.55423228910489,34.41525635951645],[-99.50250428905672,34.4041453595061],[-99.47980628903558,34.38360035948696],[-99.43874328899733,34.36478335946944],[-99.41032328897086,34.36918535947354],[-99.39452228895615,34.39682235949928],[-99.39315728895488,34.42907035952931],[-99.36456928892825,34.45027235954906],[-99.32365928889016,34.41278735951415],[-99.26753528883788,34.39836435950072],[-99.25446528882571,34.36829435947271],[-99.20584928878043,34.33207535943898],[-99.19666328877187,34.305205359413954],[-99.2049552887796,34.255730359367874],[-99.19084028876645,34.22382135933816],[-99.1765112887531,34.21281635932791],[-99.1283002887082,34.20155635931742],[-99.07878428866209,34.208446359323844],[-99.03557028862184,34.199009359315056],[-98.9965442885855,34.209583359324895],[-98.95285728854482,34.194653359311],[-98.89168928848785,34.16091035927957],[-98.81141028841309,34.146026359265704],[-98.77887728838279,34.132053359252694],[-98.70563228831458,34.13080635925154],[-98.68255228829307,34.150089359269494],[-98.662059288274,34.147129359266735],[-98.62633028824071,34.15852735927735],[-98.60758428822325,34.1514893592708],[-98.57666828819445,34.14202235926198],[-98.557914288177,34.1054283592279],[-98.49985228812292,34.06650835919165],[-98.44851928807512,34.05446935918044],[-98.42167028805011,34.06592435919111],[-98.40746428803688,34.08254835920659],[-98.39128228802181,34.08732435921104],[-98.38458328801556,34.115873359237625],[-98.35073028798404,34.14221335926216],[-98.32081428795618,34.13951235925964],[-98.27732428791568,34.12296435924423],[-98.17316428781866,34.115461359237244],[-98.13718228778517,34.138524359258724],[-98.11518628776467,34.149079359268555],[-98.09444128774535,34.134649359255114],[-98.11100528776078,34.06991535919482],[-98.08652228773798,34.00541035913475],[-98.05587328770943,33.9898963591203],[-98.02380628767956,33.98708135911768],[-97.98299528764156,34.001382359131],[-97.95053928761133,33.97125835910294],[-97.94806728760904,33.95984935909232],[-97.96331128762323,33.948748359081975],[-97.95099728761176,33.932616359066955],[-97.97644228763546,33.9121513590479],[-97.9766932876357,33.902603359039006],[-97.95504828761554,33.88357935902128],[-97.909377287573,33.87412335901248],[-97.87006228753638,33.85521435899487],[-97.85285728752037,33.857171358996695],[-97.7905152874623,33.890556359027784],[-97.75667028743078,33.93219735906656],[-97.72932628740531,33.93939135907326],[-97.70456728738226,33.9716443591033],[-97.67137128735133,33.98871135911919],[-97.60048428728533,33.969535359101336],[-97.59265628727803,33.917985359053326],[-97.57597028726249,33.90263135903903],[-97.55489028724286,33.90400435904031],[-97.51850428720897,33.916871359052294],[-97.47783128717109,33.90780835904385],[-97.46306028715733,33.90248335903889],[-97.45736028715203,33.89053235902776],[-97.453035287148,33.83631535897727],[-97.4104162871083,33.820812358962826],[-97.36361628706472,33.83112735897244],[-97.34210028704469,33.8620173590012],[-97.31525228701967,33.8704943590091],[-97.31438228701887,33.8959413590328],[-97.27257228697992,33.872675359011126],[-97.26420228697214,33.858832358998235],[-97.25098028695982,33.8730723590115],[-97.24635628695552,33.89433935903131],[-97.21162628692316,33.90579035904197],[-97.18805928690122,33.89930535903593],[-97.16446028687925,33.86325035900235],[-97.16888528688337,33.84789635898805],[-97.19530728690796,33.83626135897722],[-97.20861328692037,33.81975235896184],[-97.18945528690251,33.752874358899554],[-97.15276428686835,33.728773358877106],[-97.11585228683397,33.72603835887456],[-97.09078828681062,33.731776358879905],[-97.08375428680408,33.74251835888991],[-97.08795828680799,33.80767535895059],[-97.05031328677293,33.823551358965375],[-97.07853528679922,33.83791335897875],[-97.08246528680287,33.85120335899113],[-97.07118828679238,33.856830358996376],[-97.02588328675019,33.840664358981314],[-97.0061382867318,33.850616358990585],[-96.98799528671489,33.876525359014714],[-96.98814828671503,33.944303359077836],[-96.96847128669671,33.93742135907143],[-96.93648728666692,33.947949359081235],[-96.92985028666074,33.9618733590942],[-96.89873628663176,33.95012735908326],[-96.88313328661724,33.92469235905958],[-96.87921928661359,33.88410435902178],[-96.8612962865969,33.861781359000986],[-96.84429028658106,33.85813435899759],[-96.81439728655322,33.871871359010385],[-96.79787128653783,33.870051359008684],[-96.7491022864924,33.831840358973096],[-96.71195328645781,33.83397235897509],[-96.69365728644077,33.84800635898816],[-96.67797928642617,33.904424359040696],[-96.6665122864155,33.913644359049286],[-96.58476028633935,33.89624535903308],[-96.61443928636699,33.86300135900212],[-96.60146828635492,33.84305835898355],[-96.56240428631853,33.82552235896721],[-96.51084328627051,33.81578735895815],[-96.50101628626136,33.78819235893245],[-96.4876412862489,33.77823235892318],[-96.41973028618565,33.78842835893267],[-96.37108328614035,33.74049735888803],[-96.34785028611871,33.705631358855555],[-96.31653828608955,33.70190435885209],[-96.30105028607512,33.7141533588635],[-96.28994328606478,33.76203435890809],[-96.27833828605398,33.77348935891875],[-96.21280728599294,33.756792358903205],[-96.18728628596918,33.758684358904965],[-96.16907428595222,33.769457358915],[-96.16157528594523,33.79832935894189],[-96.1416772859267,33.820420358962465],[-96.1547772859389,33.824044358965835],[-96.1809852859633,33.80853435895139],[-96.18338828596555,33.815892358958244],[-96.16946428595257,33.829083358970536],[-96.14922328593373,33.835690358976684],[-96.10970128589692,33.82935735897079],[-96.09178028588023,33.84467735898505],[-96.04823028583967,33.84137735898198],[-96.0270042858199,33.856121358995715],[-96.01432428580809,33.84430735898471],[-96.00204828579666,33.8570783589966],[-96.00287228579742,33.873489359011884],[-95.99446428578959,33.87547635901374],[-95.97764828577394,33.858051358997514],[-95.95901628575659,33.86513935900411],[-95.94332328574197,33.89007135902733],[-95.93332828573266,33.89062835902785],[-95.84680528565208,33.84113835898176],[-95.82622128563291,33.84312535898361],[-95.7957252856045,33.864774359003775],[-95.7687612855794,33.85150335899141],[-95.76449728557542,33.879106359017115],[-95.76094228557211,33.893541359030564],[-95.74710928555923,33.90349735903983],[-95.69995028551531,33.89492635903186],[-95.63373228545363,33.9202073590554],[-95.61322428543454,33.92034135905552],[-95.61507028543626,33.936794359070845],[-95.6063122854281,33.94465635907817],[-95.56301328538778,33.93617735907027],[-95.54655528537245,33.90413735904043],[-95.51981328534754,33.90674735904286],[-95.52697028535421,33.89792035903464],[-95.54773028537355,33.8932623590303],[-95.54427428537032,33.8858463590234],[-95.51312228534131,33.89784035903457],[-95.49909128532825,33.88182235901965],[-95.46835928529963,33.88653735902404],[-95.45184128528425,33.86585835900478],[-95.33027228517102,33.871024359009596],[-95.33646028517678,33.89722035903399],[-95.30218828514487,33.88673035902422],[-95.2866622851304,33.88700835902448],[-95.27758328512195,33.91804535905338],[-95.26384928510916,33.89790735903463],[-95.2512232850974,33.905128359041356],[-95.25152128509768,33.936550359070615],[-95.2342702850816,33.96496935909708],[-95.14854428500178,33.94365335907723],[-95.12819628498282,33.94097535907474],[-95.12690628498162,33.91725235905265],[-95.11945228497468,33.912388359048116],[-95.09558628495245,33.921845359056924],[-95.08249428494025,33.91856035905386],[-95.08994028494719,33.89702335903381],[-95.0838292849415,33.88856935902593],[-95.06370228492275,33.917756359053115],[-95.06336628492244,33.8968013590336],[-95.04308728490356,33.88455335902219],[-95.03758628489844,33.866559359005436],[-95.01299628487553,33.870053359008686],[-94.98950428485365,33.85629035899587],[-94.96892728483449,33.86632235900521],[-94.9601292848263,33.84818435898832],[-94.94010928480765,33.84093235898157],[-94.94062028480813,33.815915358958264],[-94.91845628478748,33.81630435895863],[-94.90876628477847,33.80358635894679],[-94.91409928478343,33.78970535893386],[-94.8818552847534,33.77507235892023],[-94.85809628473127,33.74942935889635],[-94.81937528469521,33.74951335889642],[-94.80343728468037,33.73969135888728],[-94.783722284662,33.753370358900014],[-94.764388284644,33.75295135889963],[-94.78224128466063,33.74237635888978],[-94.78337028466167,33.73377435888177],[-94.74998328463059,33.7368153588846],[-94.76293028464264,33.716906358866055],[-94.74232328462345,33.71915735886816],[-94.75469028463496,33.707881358857655],[-94.74186528462302,33.701377358851595],[-94.69119728457584,33.690399358841375],[-94.66866728455486,33.69664835884719],[-94.65568928454276,33.69240335884324],[-94.64453528453238,33.677762358829604],[-94.66816328455438,33.67157135882384],[-94.66963628455575,33.66617335881881],[-94.65874828454561,33.663850358816646],[-94.6389732845272,33.670217358822576],[-94.63194628452065,33.68401135883542],[-94.60115328449197,33.66572135881839],[-94.58531428447722,33.67909535883084],[-94.57871428447108,33.67058535882292],[-94.56093028445451,33.67202735882426],[-94.56541628445869,33.66312735881597],[-94.58536728447727,33.66224635881515],[-94.58859428448028,33.65556235880893],[-94.57666928446918,33.65227135880586],[-94.54562528444026,33.661735358814674],[-94.54213828443702,33.64836135880222],[-94.56240228445589,33.64294435879717],[-94.56235628445584,33.635650358790386],[-94.5504012844447,33.63280935878774],[-94.51819628441471,33.643124358797344],[-94.52526128442129,33.621136358776866],[-94.5107652844078,33.63092535878598],[-94.50081628439852,33.62316235877876],[-94.47669128437606,33.63208135878706],[-94.43611728433827,33.63656135879123],[-94.43653628433866,33.616961358772976],[-94.45175728435284,33.60446435876134],[-94.44353228434518,33.596621358754035],[-94.42867028433133,33.59725835875463],[-94.40677228431095,33.573604358732595],[-94.3936192842987,33.57507735873397],[-94.37931428428537,33.59344435875107],[-94.37082928427746,33.590160358748015],[-94.37250828427904,33.57278035873183],[-94.39546528430041,33.56042135872032],[-94.37095928427759,33.547802358708566],[-94.32895028423846,33.57325435873227],[-94.30258228421391,33.55705435871718],[-94.29901928421059,33.57997235873853],[-94.27918228419212,33.58945235874736],[-94.27227828418569,33.584726358742955],[-94.27474228418798,33.56185735872166],[-94.23743328415324,33.592543358750234],[-94.22323428414,33.585840358743994],[-94.2355642841515,33.56165635872147],[-94.21108028412868,33.558108358718165],[-94.20554128412353,33.5852003587434],[-94.15971028408084,33.5938943587515],[-94.15536028407679,33.56720635872664],[-94.09889328402421,33.57312035873215],[-94.08684628401299,33.58407535874235],[-94.0616222839895,33.57733535873607],[-94.03611628396574,33.55603435871623],[-94.03669128396628,33.27045335845027],[-94.03893128396837,33.0234223582202],[-94.04178528397102,32.88248535808894],[-94.04038228396972,32.69495735791429],[-94.03541828396509,32.3893813576297],[-94.03495528396466,32.199609357452964],[-94.03525528396494,31.994679357262108],[-94.0100782839415,31.9893003572571],[-94.00458428393638,31.978108357246676],[-93.97740028391107,31.94632735721708],[-93.97017528390433,31.92333235719566],[-93.93591928387242,31.909624357182896],[-93.91811128385584,31.909870357183124],[-93.92365028386101,31.892762357167193],[-93.89944928383846,31.894623357168925],[-93.8927132838322,31.87023435714621],[-93.8814512838217,31.871588357147473],[-93.8775912838181,31.85028235712763],[-93.86501028380638,31.817442357097043],[-93.83451428377799,31.802187357082836],[-93.82225428376657,31.77480835705734],[-93.83134828377504,31.75345235703745],[-93.81017628375533,31.730524357016094],[-93.81513528375994,31.71252335699933],[-93.80895528375419,31.707738356994874],[-93.79245228373881,31.71156835699844],[-93.81203028375705,31.674740356964143],[-93.806613283752,31.65394135694477],[-93.81491428375973,31.64814135693937],[-93.81977428376426,31.61826735691155],[-93.83576528377915,31.615364356908845],[-93.8328052837764,31.590360356885558],[-93.81650828376122,31.577287356873384],[-93.81070228375582,31.559240356856577],[-93.78031328372751,31.53391335683299],[-93.76348928371183,31.530902356830182],[-93.74772728369716,31.537896356836697],[-93.73184228368237,31.522055356821944],[-93.70597728365827,31.520747356820728],[-93.71917628367056,31.49558235679729],[-93.75061828369985,31.490736356792777],[-93.75142728370061,31.485680356788066],[-93.72696628367783,31.459654356763828],[-93.6985992836514,31.461638356765675],[-93.70210828365467,31.446431356751514],[-93.68718528364077,31.438311356743952],[-93.69631028364927,31.42791735673427],[-93.6946232836477,31.41610335672327],[-93.68767328364123,31.40631135671415],[-93.66419628361936,31.398510356706886],[-93.66125128361662,31.372577356682733],[-93.6350352835922,31.374009356684063],[-93.67721928363149,31.328570356641748],[-93.68176628363572,31.31286335662712],[-93.65630628361201,31.2868553566029],[-93.6457702836022,31.290447356606244],[-93.63100628358845,31.274088356591008],[-93.61663228357507,31.275989356592778],[-93.6120542835708,31.270218356587403],[-93.61117628356999,31.24237335656147],[-93.59072128355093,31.229873356549827],[-93.60309628356246,31.19925335652131],[-93.5941162835541,31.18038635650374],[-93.57711728353827,31.172328356496237],[-93.55076428351373,31.19111635651373],[-93.52909628349354,31.185961356508933],[-93.5271052834917,31.178263356501763],[-93.53719128350109,31.176527356500145],[-93.52850128349299,31.16313035648767],[-93.54436328350776,31.15935435648415],[-93.53767928350153,31.13262935645926],[-93.52826428349277,31.126114356453193],[-93.53526028349928,31.11626135644402],[-93.55685228351939,31.109532356437754],[-93.56015628352247,31.10072635642955],[-93.54329428350677,31.094941356424165],[-93.54427828350768,31.082563356412635],[-93.51717028348244,31.074861356405464],[-93.52591328349058,31.057171356388984],[-93.50738928347333,31.039099356372155],[-93.54729128351049,31.014334356349092],[-93.5651142835271,31.018256356352744],[-93.56806728352984,31.01311735634796],[-93.57101928353259,30.99746435633338],[-93.56112428352337,30.99188335632818],[-93.57262928353408,30.97637235631374],[-93.54884828351194,30.97038435630816],[-93.53751028350138,30.95707935629577],[-93.53236028349659,30.960926356299353],[-93.52579128349046,30.93601435627615],[-93.53015528349454,30.927167356267912],[-93.54979428351282,30.925080356265966],[-93.54668928350993,30.90553035624776],[-93.56464928352665,30.902128356244592],[-93.5686702835304,30.886431356229973],[-93.56101728352327,30.872077356216607],[-93.55297628351579,30.860480356205805],[-93.56661828352848,30.845346356191712],[-93.55581428351843,30.842540356189097],[-93.55085528351381,30.828542356176058],[-93.58204528354285,30.802239356151563],[-93.58534828354593,30.77238435612376],[-93.61862928357692,30.745989356099177],[-93.60782528356687,30.732211356086346],[-93.61796528357631,30.732749356086845],[-93.61258528357129,30.71053035606615],[-93.61778128357614,30.687003356044244],[-93.6601632836156,30.673060356031257],[-93.67814528363236,30.63989435600037],[-93.69305328364624,30.640243356000692],[-93.68475928363851,30.623626355985216],[-93.69286928364608,30.61599735597811],[-93.6717582836264,30.598033355961384],[-93.69359428364675,30.599037355962317],[-93.71798528366946,30.587582355951646],[-93.71805428366953,30.56835535593374],[-93.73547928368575,30.54571935591266],[-93.70563228365796,30.52306035589156],[-93.71481028366651,30.50531635587503],[-93.70744728365965,30.496443355866766],[-93.7150232836667,30.48883135585968],[-93.69814628365098,30.470249355842373],[-93.70359328365606,30.462715355835357],[-93.69674128364967,30.44283535581684],[-93.72170528367292,30.433183355807852],[-93.7427312836925,30.409027355785355],[-93.75511328370403,30.38199335576018],[-93.74800228369742,30.367615355746786],[-93.75950728370813,30.354350355734432],[-93.75934728370798,30.34107735572207],[-93.72994128368059,30.30512235568859],[-93.69937728365213,30.297593355681574],[-93.70752428365972,30.239578355627543],[-93.71500828366669,30.22051335560979],[-93.70452528365692,30.181068355573053],[-93.6963312836493,30.175884355568222],[-93.69982628365256,30.151017355545065],[-93.68330728363716,30.148440355542665],[-93.68612328363979,30.141461355536165],[-93.6988032836516,30.14143435553614],[-93.69708728364999,30.118139355514444],[-93.70854628366067,30.114950355511475],[-93.71602328366764,30.095878355493713],[-93.71264428366449,30.06073135546098],[-93.76036728370893,30.006176355410172],[-93.85744728379935,29.990867355395913],[-93.85650028379847,29.964815355371652],[-93.95193628388735,29.818579355235457],[-93.83512528377855,29.674792355101545],[-94.06558128399318,29.674297355101086],[-94.35718228426475,29.560129354994757],[-94.37719428428339,29.55219835498737],[-94.68271228456793,29.43313835487649],[-94.7667432846462,29.36422735481231],[-94.78544428466361,29.383495354830252],[-94.68210928456737,29.475343354915793],[-94.57288528446564,29.533283354969754],[-94.50147228439914,29.517754354955294],[-94.46998528436981,29.557009354991852],[-94.51100228440802,29.54537735498102],[-94.53389028442933,29.554213354989248],[-94.56463028445796,29.579227355012545],[-94.78828328466625,29.53878635497488],[-94.7066172845902,29.658741355086597],[-94.70047528458447,29.754791355176053],[-94.73592328461748,29.793207355211827],[-94.82961528470474,29.76008135518098],[-94.88736328475854,29.668766355095933],[-94.93279028480083,29.682436355108663],[-95.08847228494582,29.804205355222074],[-95.04060428490125,29.71180635513602],[-94.98953928485369,29.679928355106327],[-95.01432728487677,29.559494354994165],[-94.91135728478088,29.500564354939286],[-94.98301528484761,29.46075835490221],[-94.94395828481123,29.46491235490608],[-94.95270928481939,29.424466354868414],[-94.913645284783,29.420345354864573],[-94.91719328478631,29.44805435489038],[-94.89133628476223,29.399557354845214],[-94.81555028469165,29.371166354818772],[-94.89167228476254,29.394065354840098],[-94.89898728476935,29.309011354760884],[-94.9513342848181,29.326157354776853],[-95.06657228492543,29.196116354655743],[-95.16073028501312,29.200271354659613],[-95.16498828501709,29.117790354582798],[-95.19755128504741,29.10546535457132],[-95.24861828509498,28.978637354453202],[-95.52680728535405,28.80349635429009],[-95.68326428549977,28.727214354219043],[-95.67155228548886,28.752941354243006],[-95.786592285596,28.739132354230144],[-95.9375492857366,28.690720354185057],[-95.95638728575413,28.622942354121932],[-95.70238428551758,28.719247354211625],[-96.20682828598737,28.488663353996877],[-95.9918882857872,28.59669535409749],[-95.98399028577984,28.6534013541503],[-96.23783328601625,28.571595354074113],[-96.2392752860176,28.597389354098137],[-96.15771528594163,28.61150235411128],[-96.24070128601892,28.635130354133285],[-96.15130528593566,28.762938354252316],[-96.21241828599258,28.686989354181584],[-96.28621928606131,28.661995354158307],[-96.2706242860468,28.709249354202313],[-96.32640428609874,28.63436135413257],[-96.36440828613414,28.618254354117568],[-96.39202628615986,28.67052335416625],[-96.39297928616074,28.726298354218194],[-96.42733628619274,28.71228335420514],[-96.44992728621378,28.755304354245204],[-96.43250928619756,28.69751935419139],[-96.40364628617068,28.719763354212105],[-96.41903528618501,28.63893735413683],[-96.3756462861446,28.61036235411022],[-96.49145628625246,28.557220354060725],[-96.43740728620212,28.59726535409802],[-96.45463528621816,28.656206354152914],[-96.48352128624506,28.598330354099012],[-96.51214728627173,28.60845635410844],[-96.51198628627158,28.649815354146963],[-96.57065028632621,28.6365403541346],[-96.57081028632636,28.692113354186354],[-96.5724652863279,28.808442354294694],[-96.57673828633189,28.690961354185283],[-96.59175328634586,28.71763035421012],[-96.6467702863971,28.714413354207124],[-96.66026728640968,28.679348354174465],[-96.60696028636004,28.623908354122833],[-96.61060028636342,28.559217354062586],[-96.56695828632277,28.574374354076703],[-96.48683228624814,28.50650035401349],[-96.56344928631951,28.46990635397941],[-96.51875528627788,28.46110635397121],[-96.47675428623876,28.499733354007187],[-96.39097528615888,28.434339353946285],[-96.66156828641088,28.30654735382727],[-96.70262228644913,28.340479353858868],[-96.70407128645047,28.396166353910733],[-96.74102928648489,28.403738353917785],[-96.78735528652804,28.477785353986746],[-96.82413828656229,28.449920353960795],[-96.78859928652919,28.44653435395764],[-96.75936328650197,28.411192353924726],[-96.7756222865171,28.39191135390677],[-96.85375628658987,28.405277353919217],[-96.78849328652909,28.352753353870302],[-96.78653328652727,28.313142353833413],[-96.79359828653385,28.271657353794772],[-96.77819428651951,28.22963535375564],[-96.8039512865435,28.21173435373897],[-96.9511712866806,28.114646353648546],[-96.91298628664504,28.2570823537812],[-96.97557128670333,28.21103735373832],[-96.94133728667144,28.187059353715988],[-96.97537228670313,28.11533635364919],[-97.03388328675763,28.137687353670003],[-97.02383528674828,28.200083353728118],[-97.13210428684911,28.130717353663513],[-97.13568328685244,28.16209935369274],[-97.16826128688278,28.15974935369055],[-97.1573272868726,28.116672353650436],[-97.26055428696874,28.06501735360233],[-97.24150328695099,28.04894735358736],[-97.27056328697806,28.0262273535662],[-97.23648328694631,28.040814353579783],[-97.12334528684094,28.054560353592585],[-97.02667328675092,28.108041353642395],[-97.0240712867485,28.020532353560895],[-97.11489128683307,27.91568735346325],[-97.19573228690837,27.812525353367175],[-97.24729228695638,27.822624353376582],[-97.21360828692501,27.831415353384767],[-97.28375428699034,27.87144735342205],[-97.36131528706258,27.840257353393],[-97.34588928704821,27.873480353423943],[-97.47962628717276,27.853264353405116],[-97.4969522871889,27.875769353426076],[-97.5219692872122,27.863927353415047],[-97.49980628719156,27.843544353396062],[-97.48008328717319,27.820585353374682],[-97.38881228708819,27.831730353385062],[-97.39683028709565,27.77114635332864],[-97.3180632870223,27.71253435327405],[-97.34977928705183,27.71563735327694],[-97.32028328702437,27.690944353253943],[-97.35363228705542,27.641112353207532],[-97.39948528709813,27.633498353200444],[-97.34777228704996,27.631752353198817],[-97.3094802870143,27.70817335326999],[-97.25006128695897,27.689143353252266],[-97.33172728703502,27.562636353134447],[-97.41252828711028,27.321345352909727],[-97.5007032871924,27.319988352908464],[-97.50780828719901,27.439531353019795],[-97.52865028721843,27.344420352931216],[-97.60038228728523,27.300455352890275],[-97.7503492874249,27.41998335300159],[-97.68027928735964,27.294693352884906],[-97.78501728745718,27.28804035287871],[-97.54842428723684,27.23053035282515],[-97.4274812871242,27.26545535285768],[-97.50376728719525,27.081868352686698],[-97.47926028717242,26.996838352607504],[-97.56883128725585,26.978188352590138],[-97.55831728724606,26.84638735246739],[-97.49583728718785,26.79411735241871],[-97.451958287147,26.60132735223916],[-97.42611528712293,26.518569352162086],[-97.47496828716842,26.47715035212351],[-97.42144728711858,26.38540735203807],[-97.3689552870697,26.359409352013856],[-97.35361928705541,26.182802351849375],[-97.25337328696205,26.068672351743086],[-97.27657528698366,26.00263335168158],[-97.21334828692477,26.009425351687906],[-97.17247428688671,25.954927351637153],[-97.30739928701236,25.965482351646983],[-97.30469028700983,25.939022351622338],[-97.38124628708114,25.917379351602182],[-97.38589928708546,25.845721351535445],[-97.43460728713083,25.84555735153529],[-97.59035328727589,25.93358935161728],[-97.57520128726178,25.95452935163678],[-97.61318928729715,25.962359351644075],[-97.6482402873298,26.023801351701294],[-97.86770828753419,26.06049635173547],[-98.04035228769497,26.059750351734777],[-98.07663128772876,26.034982351711708],[-98.08349828773517,26.066113351740704],[-98.20097928784458,26.055732351731034],[-98.29223728792957,26.098459351770828],[-98.27164528791039,26.121249351792052],[-98.29256628792987,26.133162351803147],[-98.32822628796308,26.112000351783436],[-98.34748428798102,26.15903235182724],[-98.38481528801579,26.156383351824772],[-98.45368928807993,26.221261351885197],[-98.48881528811265,26.201895351867158],[-98.60026828821644,26.26080335192202],[-98.67821928828904,26.242404351904884],[-98.82013628842121,26.375413352028758],[-98.90920328850416,26.360671352015032],[-98.93957628853245,26.395651352047608],[-99.1070362886884,26.41986935207016],[-99.10178028868351,26.488676352134245],[-99.1689892887461,26.54606135218769],[-99.16612828874344,26.580220352219502],[-99.28583728885492,26.857678352477905],[-99.39083528895272,26.94694335256104],[-99.39303228895476,26.995861352606596],[-99.45538128901283,27.02895835263742],[-99.43747528899615,27.19950235279625],[-99.46559028902233,27.270186352862083],[-99.54390828909527,27.3189543529075],[-99.49081328904583,27.49105135306778],[-99.52706128907958,27.504579353080377],[-99.54950728910049,27.612919353181276],[-99.71481828925445,27.66184935322685],[-99.81605528934872,27.78039435333725],[-99.87506328940368,27.79797235335362],[-99.9421892894662,27.98716235352982],[-99.99364328951413,28.003739353545257],[-100.09726228961063,28.154555353685716],[-100.21441628971974,28.20220635373009],[-100.22380828972848,28.2417273537669],[-100.29826628979782,28.280622353803125],[-100.29323928979315,28.32062735384038],[-100.3519192898478,28.394447353909133],[-100.37712028987126,28.4789133539878],[-100.34615128984242,28.501072354008436],[-100.4198842899111,28.54445135404883],[-100.40352628989585,28.589991354091246],[-100.49826428998409,28.661243354157605],[-100.59014929006966,28.894469354374813],[-100.64758529012316,28.922595354401007],[-100.66913229014322,29.080312354547893],[-100.7689742902362,29.166807354628446],[-100.79735729026264,29.24273635469916],[-101.00943129046014,29.37348235482093],[-101.06773729051444,29.473776354914335],[-101.26181129069519,29.526692354963615],[-101.25496929068882,29.628964355058866],[-101.30931329073944,29.58112435501431],[-101.30624729073658,29.65264435508092],[-101.36878629079483,29.657373355085323],[-101.41648729083924,29.74564135516753],[-101.40166329082544,29.770111355190316],[-101.44881329086935,29.760791355181638],[-101.47085629088988,29.788895355207814],[-101.5387352909531,29.763222355183903],[-101.54434429095832,29.81032235522777],[-101.58188129099328,29.765354355185888],[-101.64006429104747,29.75716335517826],[-101.7594912911587,29.787367355206392],[-101.80560429120165,29.780199355199713],[-101.81949829121459,29.814324355231495],[-101.92462729131249,29.788701355207632],[-101.97372429135822,29.818971355235824],[-102.06440229144266,29.78476935520397],[-102.32475129168513,29.88030935529295],[-102.3679802917254,29.845483355260512],[-102.38521529174145,29.768141355188483],[-102.50352129185163,29.78564935520479],[-102.55237329189713,29.749694355171304],[-102.57692629191999,29.778441355198076],[-102.63803929197691,29.73253235515532],[-102.676790292013,29.74441835516639],[-102.80516029213256,29.530343354967016],[-102.82264029214883,29.412045354856843],[-102.88344829220546,29.353572354802388],[-102.90876429222904,29.269406354724],[-102.86660929218978,29.229241354686593],[-102.98853929230334,29.19106735465104],[-103.15391129245735,28.978891354453438],[-103.2670372925627,29.00766235448023],[-103.28080029257552,28.9865823544606],[-103.33597029262691,29.05054535452017],[-103.37590329266409,29.032314354503193],[-103.47453129275596,29.072338354540467],[-103.52669629280453,29.14684835460986],[-103.72077929298528,29.190832354650823],[-103.74031929300348,29.230548354687812],[-103.78262529304288,29.229994354687296],[-103.76822929302948,29.281438354735208],[-103.7874632930474,29.267457354722186],[-104.04610529328828,29.328313354778864],[-104.16485929339888,29.40090535484647],[-104.20521229343645,29.48422835492407],[-104.37807429359744,29.550794354986063],[-104.53572929374427,29.67964235510606],[-104.57804129378367,29.808107355225705],[-104.67485229387384,29.909449355320085],[-104.69697729389445,30.057462355457936],[-104.6752402938742,30.149120355543296],[-104.70309729390014,30.23864135562667],[-104.81444429400385,30.35061835573096],[-104.80696029399688,30.376596355755154],[-104.8534852940402,30.39241135576988],[-104.8911692940753,30.570700355935926],[-104.98742529416495,30.641467356001833],[-104.99803929417483,30.684474356041886],[-105.06106029423353,30.68801035604518],[-105.21484429437675,30.812223356160864],[-105.25869129441759,30.79779135614742],[-105.28810429444498,30.83208635617936],[-105.31428829446936,30.81664435616498],[-105.39082129454064,30.85321735619904],[-105.40957529455811,30.902645356245074],[-105.55489729469345,30.99841835633427],[-105.60373329473893,31.086558356416354],[-105.77025029489401,31.170908356494913],[-105.99888629510694,31.39394035670263],[-106.21328529530662,31.478246356781142],[-106.38358129546522,31.733872357019216],[-106.53951429561045,31.786305357068045]]],[[[-94.91362828478299,29.2578103547132],[-94.76757528464697,29.34268635479225],[-94.74860028462929,29.319727354770865],[-95.1056212849618,29.097200354563622],[-94.91362828478299,29.2578103547132]]],[[[-96.39813328616555,28.34612835386413],[-96.8348892865723,28.066615353603815],[-96.80410428654363,28.17245035370238],[-96.73916928648316,28.183823353712974],[-96.53239128629058,28.318528353838428],[-96.46330528622624,28.326115353845495],[-96.42280628618852,28.391720353906592],[-96.39813328616555,28.34612835386413]]],[[[-96.94023028667041,28.046227353584825],[-96.8726862866075,28.131695353664426],[-96.83768928657491,28.10213235363689],[-96.85407028659017,28.049696353588057],[-97.04987228677253,27.841258353393933],[-97.02469528674908,27.914681353462313],[-96.94965228667918,27.98482235352764],[-96.97326628670118,28.001149353542843],[-96.94023028667041,28.046227353584825]]],[[[-97.35938028706077,27.284040352874985],[-97.37964328707965,27.21077735280675],[-97.37635628707659,27.284965352875844],[-97.33576928703879,27.441138353021294],[-97.24893928695792,27.581449353151967],[-97.25894928696724,27.652061353217732],[-97.20384928691593,27.612379353180774],[-97.17044728688482,27.707771353269614],[-97.07556028679645,27.811579353366294],[-97.1133032868316,27.81952135337369],[-97.05383228677621,27.83077735338417],[-97.22398228693467,27.57432335314533],[-97.35938028706077,27.284040352874985]]],[[[-97.30138728700676,26.601365352239192],[-97.35828228705975,26.70698535233756],[-97.38159228708146,26.820711352443475],[-97.39557028709447,26.922320352538108],[-97.4011722870997,27.111554352714343],[-97.38905028708841,27.201975352798556],[-97.37879628707886,27.204773352801162],[-97.38718728708668,27.097571352701323],[-97.38159328708146,26.949354352563283],[-97.35828328705975,26.80300035242698],[-97.29609228700183,26.601012352238865],[-97.23236128694248,26.41849035206888],[-97.19524228690791,26.259593351920895],[-97.17204828688631,26.078076351751843],[-97.17958628689333,26.072276351746442],[-97.20916728692087,26.25089435191279],[-97.22656228693708,26.348900352004065],[-97.25150428696031,26.41965235206996],[-97.26750328697521,26.479251352125466],[-97.27880328698573,26.540307352182328],[-97.30138728700676,26.601365352239192]]]]}}]}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Index Segment Date Time TimeZone State1 State2 State3 Fujita Fatalities Injuries Width Length County1 County2 County3 County4 County5 County6 County7 County8 County9 County10 County11 County12 Damage CropLoss TouchdownLat TouchdownLon LiftoffLat LiftoffLon NumberOfStates StateTor TorNum RecordStatus
20140403.48.509155 Summary 2014-04-03 18:27:00 3 Texas - - 0 0 1 40 0.94 Collin - - - - - - - - - - - $0.2 33.1851 -96.5234 33.1772 -96.5101 1 0 509155 Unmodified
20140403.48.509156 Summary 2014-04-03 19:03:00 3 Texas - - 1 0 4 750 11.8 Hunt - - - - - - - - - - - $0.9 33.1959 -96.2488 33.2643 -96.0618 1 0 509156 Unmodified
20140403.48.509157 Summary 2014-04-03 20:20:00 3 Texas - - 0 0 1 250 0.56 Hopkins - - - - - - - - - - - $0.425 33.2671 -95.587 33.2736 -95.5813 1 0 509157 Unmodified
20140413.48.501736 Summary 2014-04-13 14:46:00 3 Texas - - 0 0 0 25 0.28 Camp - - - - - - - - - - - $0.5 33.0181 -94.9673 33.0212 -94.9643 1 0 501736 Unmodified
20140413.48.500766 Summary 2014-04-13 15:45:00 3 Texas - - 1 0 1 20 0.79 Houston - - - - - - - - - - - $0.12 31.1251 -95.4477 31.1365 -95.4479 1 0 500766 Unmodified
20140420.48.501722 Summary 2014-04-20 16:30:00 3 Texas - - 0 0 0 50 0.2 Childress - - - - - - - - - - - - 34.51 -100.07 34.51 -100.07 1 0 501722 Unmodified
20140507.48.521862 Summary 2014-05-07 18:03:00 3 Texas - - 0 0 0 75 0.2 Wichita - - - - - - - - - - - - 34.033 -98.602 34.033 -98.602 1 0 521862 Unmodified
20140508.48.520186 Summary 2014-05-08 14:15:00 3 Texas - - 0 0 0 120 0.46 Dallas - - - - - - - - - - - $0.08 32.757 -96.889 32.76 -96.882 1 0 520186 Unmodified
20140524.48.521869 Summary 2014-05-24 16:21:00 3 Texas - - 0 0 0 50 0.12 Crockett - - - - - - - - - - - - 30.9255 -101.836 30.9262 -101.834 1 0 521869 Unmodified
20140525.48.514385 Summary 2014-05-25 12:45:00 3 Texas - - 0 0 0 200 1.16 Pecos - - - - - - - - - - - - 30.3808 -102.874 30.3879 -102.857 1 0 514385 Unmodified
20140526.48.518331 Summary 2014-05-26 10:46:00 3 Texas - - 0 0 0 30 0.5 Bastrop - - - - - - - - - - - $0.01 30.0941 -97.4599 30.0954 -97.4518 1 0 518331 Unmodified
20140526.48.516993 Summary 2014-05-26 14:38:00 3 Texas - - 0 0 0 200 0.6 Martin - - - - - - - - - - - - 32.4985 -102.105 32.5054 -102.099 1 0 516993 Unmodified
20140526.48.519254 Summary 2014-05-26 15:20:00 3 Texas - - 0 0 0 50 0.12 San Patricio - - - - - - - - - - - - 28.0553 -97.6463 28.0553 -97.6444 1 0 519254 Unmodified
20140526.48.516963 Summary 2014-05-26 16:38:00 3 Texas - - 2 0 0 400 1.01 Howard - - - - - - - - - - - $0.045 32.2946 -101.286 32.3084 -101.28 1 0 516963 Unmodified
20140526.48.508961 Summary 2014-05-26 16:52:00 3 Texas - - 0 0 0 30 2.05 Hockley - - - - - - - - - - - $0.0005 33.5125 -102.198 33.4979 -102.167 1 0 508961 Unmodified
20140526.48.516964 Summary 2014-05-26 16:57:00 3 Texas - - 0 0 0 500 1.33 Glasscock - - - - - - - - - - - - 31.8935 -101.594 31.909 -101.58 1 0 516964 Unmodified
20140526.48.516966 Summary 2014-05-26 17:26:00 3 Texas - - 0 0 0 200 0.67 Glasscock - - - - - - - - - - - - 31.87 -101.381 31.8784 -101.375 1 0 516966 Unmodified
20140526.48.516967 Summary 2014-05-26 17:42:00 3 Texas - - 0 0 0 300 0.79 Glasscock - - - - - - - - - - - - 31.8462 -101.355 31.8552 -101.347 1 0 516967 Unmodified
20140526.48.521580 Summary 2014-05-26 17:47:00 3 Texas - - 0 0 0 40 0.22 Sterling - - - - - - - - - - - - 31.72 -101.21 31.7197 -101.206 1 0 521580 Unmodified
20140527.48.521134 Summary 2014-05-27 17:30:00 3 Texas - - 1 0 0 550 2.34 Jim Wells - - - - - - - - - - - $1.6 27.7519 -98.0538 27.719 -98.0631 1 0 521134 Unmodified
20140527.48.521135 Summary 2014-05-27 18:45:00 3 Texas - - 1 0 0 650 5.26 Jim Wells - - - - - - - - - - - $0.25 27.3649 -98.1278 27.2893 -98.1376 1 0 521135 Unmodified
20140606.48.527749 Summary 2014-06-06 18:15:00 3 Texas - - 0 0 0 25 2.46 Hartley - - - - - - - - - - - - 35.6958 -102.513 35.727 -102.492 1 0 527749 Unmodified
20140606.48.527750 Summary 2014-06-06 18:52:00 3 Texas - - 0 0 0 70 1.65 Ochiltree - - - - - - - - - - - - 36.0816 -100.927 36.1039 -100.916 1 0 527750 Unmodified
20140609.48.518934 Summary 2014-06-09 07:16:00 3 Texas - - 0 0 0 200 1.71 Red River - - - - - - - - - - - $0.01 33.5532 -94.8031 33.5523 -94.7735 1 0 518934 Unmodified
20140611.48.529126 Summary 2014-06-11 19:20:00 3 Texas - - 0 0 0 50 0.69 Tom Green - - - - - - - - - - - - 31.49 -100.39 31.48 -100.39 1 0 529126 Unmodified
20140611.48.529139 Summary 2014-06-11 19:24:00 3 Texas - - 0 0 0 75 0.59 Tom Green - - - - - - - - - - - - 31.4479 -100.378 31.4409 -100.372 1 0 529139 Unmodified
20140612.48.529454 Summary 2014-06-12 19:18:00 3 Texas - - 0 0 0 50 0.12 Burnet - - - - - - - - - - - - 30.9321 -98.0402 30.9303 -98.04 1 0 529454 Unmodified
20140612.48.529456 Summary 2014-06-12 19:25:00 3 Texas - - 2 0 0 100 1.68 Burnet - - - - - - - - - - - $0.2 30.8685 -98.0875 30.8507 -98.1068 1 0 529456 Unmodified
20140622.48.527700 Summary 2014-06-22 17:57:00 3 Texas - - 0 0 0 50 2 Lipscomb - - - - - - - - - - - - 36.4234 -100.416 36.3944 -100.415 1 0 527700 Unmodified
20140622.48.527701 Summary 2014-06-22 18:22:00 3 Texas - - 0 0 0 75 1 Lipscomb - - - - - - - - - - - - 36.3226 -100.335 36.3081 -100.335 1 0 527701 Unmodified
20140622.48.545589 Summary 2014-06-22 20:50:00 3 Texas - - 1 0 0 100 1.86 Roberts Hemphill - - - - - - - - - - - 35.9433 -100.558 35.9498 -100.526 1 0 545589 Unmodified
20140625.48.525393 Summary 2014-06-25 15:14:00 3 Texas - - 0 0 0 50 0.37 Refugio - - - - - - - - - - - $0.05 28.3177 -97.2761 28.3199 -97.2706 1 0 525393 Unmodified
20140626.48.528936 Summary 2014-06-26 13:22:00 3 Texas - - 0 0 1 75 0.04 Galveston - - - - - - - - - - - - 29.3369 -94.9646 29.3375 -94.9646 1 0 528936 Unmodified
20140627.48.528939 Summary 2014-06-27 10:07:00 3 Texas - - 0 0 0 20 0.01 Liberty - - - - - - - - - - - $0.015 30.1343 -94.9272 30.1343 -94.9272 1 0 528939 Unmodified
20140627.48.528940 Summary 2014-06-27 10:24:00 3 Texas - - 0 0 0 25 0.03 Liberty - - - - - - - - - - - - 30.35 -94.9994 30.35 -94.9994 1 0 528940 Unmodified
20140628.48.528941 Summary 2014-06-28 13:25:00 3 Texas - - 0 0 0 10 0.73 Harris - - - - - - - - - - - $0.045 29.8018 -95.4824 29.8124 -95.4804 1 0 528941 Unmodified
20140702.48.536891 Summary 2014-07-02 16:00:00 3 Texas - - 0 0 0 50 0.22 Haskell - - - - - - - - - - - - 33.1018 -99.613 33.1004 -99.6096 1 0 536891 Unmodified
20140716.48.528096 Summary 2014-07-16 18:08:00 3 Texas - - 0 0 0 50 0.01 Sherman - - - - - - - - - - - - 36.3478 -102.054 36.3478 -102.054 1 0 528096 Unmodified
20140716.48.528097 Summary 2014-07-16 18:26:00 3 Texas - - 0 0 0 100 1.34 Sherman - - - - - - - - - - - - 36.3128 -102.053 36.2998 -102.071 1 0 528097 Unmodified
20140716.48.528098 Summary 2014-07-16 19:23:00 3 Texas - - 0 0 0 100 3.07 Moore - - - - - - - - - - - - 36.0292 -102.084 35.9849 -102.08 1 0 528098 Unmodified
20140721.48.533032 Summary 2014-07-21 12:35:00 3 Texas - - 0 0 0 20 0.1 Galveston - - - - - - - - - - - $0.015 29.3788 -94.9056 29.3788 -94.9056 1 0 533032 Unmodified
20141009.48.540395 Summary 2014-10-09 20:10:00 3 Texas - - 1 0 0 125 7.03 Gray - - - - - - - - - - - - 35.4213 -101.045 35.4845 -100.947 1 0 540395 Unmodified
20141013.48.543118 Summary 2014-10-13 03:52:00 3 Texas - - 1 0 0 275 5.8 Upshur - - - - - - - - - - - <$50 32.7681 -95.0456 32.784 -94.9475 1 0 543118 Unmodified
20141227.48.548020 Summary 2014-12-27 13:12:00 3 Texas - - 0 0 0 75 0.23 Liberty - - - - - - - - - - - $0.01 30.3853 -94.7823 30.3855 -94.781 1 0 548020 Unmodified
20141227.48.547887 Summary 2014-12-27 14:00:00 3 Texas - - 1 0 0 50 4.25 Tyler - - - - - - - - - - - $0.015 30.6829 -94.2553 30.7163 -94.1952 1 0 547887 Unmodified
20141227.48.547888 Summary 2014-12-27 14:35:00 3 Texas - - 1 0 0 150 1.98 Jasper - - - - - - - - - - - $0.1 30.864 -93.979 30.884 -93.955 1 0 547888 Unmodified
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment