Skip to content

Instantly share code, notes, and snippets.

@erikhazzard
Created November 16, 2013 04:53
Show Gist options
  • Save erikhazzard/7496111 to your computer and use it in GitHub Desktop.
Save erikhazzard/7496111 to your computer and use it in GitHub Desktop.
typhoon test
{"description":"typhoon test","endpoint":"","display":"svg","public":true,"require":[{"name":"topojson","url":"http://d3js.org/topojson.v0.min.js"}],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"world110.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"style.css":{"default":true,"vim":false,"emacs":false,"fontSize":12},"points.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"fullscreen":false,"thumbnail":"http://i.imgur.com/OtZ3o1y.png"}
var svg = d3.select("svg");
var chart = svg.append('svg:g')
.attr({ transform: 'translate(0, 0)' })
var width = tributary.sw;
var height = tributary.sh;
var center = {
x: width/2,
y: height/2
}
var world = tributary.world110;
var countries = topojson.object(world, world.objects.land);
var lonlat = [124, 5];
//var projection = d3.geo.orthographic()
//var projection = d3.geo.albers()
var projection = d3.geo.equirectangular()
.scale(379)
.center(lonlat)
.translate([width/2, height/2])
var xy = projection(lonlat);
var graticule = d3.geo.graticule()
var path = d3.geo.path()
.projection(projection);
chart.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", path);
chart.append("path")
.attr("transform", "translate(" + [xy[0] - center.x, xy[1] - center.y ] + ")")
.attr("d", path(countries))
.classed("land", true);
chart.selectAll('.typhoon')
.data(tributary.points)
.enter().append("circle")
.attr({
'class': 'typhoon',
transform: function(d){
return 'translate(' + projection([
d.attributes.LON, d.attributes.LAT
]) + ')';
},
r: 6
}).on('click', function(d){ console.log(d); });
[
{
"attributes": {
"OBJECTID": 2016,
"STORMNAME": "HAIYAN",
"DTG": 1383285600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 1,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 5.5999999999999996,
"LON": 164.19999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 18278660.388300002,
"y": 624384.04430000111
}
},
{
"attributes": {
"OBJECTID": 2017,
"STORMNAME": "HAIYAN",
"DTG": 1383307200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 1,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 5.4000000000000004,
"LON": 163.40000000000001,
"STORMID": "wp312013"
},
"geometry": {
"x": 18189604.795599997,
"y": 602017.16189999878
}
},
{
"attributes": {
"OBJECTID": 2018,
"STORMNAME": "HAIYAN",
"DTG": 1383328800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 1,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 5.5,
"LON": 162.59999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 18100549.203000002,
"y": 613199.66330000013
}
},
{
"attributes": {
"OBJECTID": 2019,
"STORMNAME": "HAIYAN",
"DTG": 1383350400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 2,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 5.4000000000000004,
"LON": 161.69999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 18000361.661300004,
"y": 602017.16189999878
}
},
{
"attributes": {
"OBJECTID": 2020,
"STORMNAME": "HAIYAN",
"DTG": 1383372000000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 2,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 5.4000000000000004,
"LON": 161,
"STORMID": "wp312013"
},
"geometry": {
"x": 17922438.017700002,
"y": 602017.16189999878
}
},
{
"attributes": {
"OBJECTID": 2021,
"STORMNAME": "HAIYAN",
"DTG": 1383393600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 2,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 5.4000000000000004,
"LON": 160.19999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 17833382.425099999,
"y": 602017.16189999878
}
},
{
"attributes": {
"OBJECTID": 2022,
"STORMNAME": "HAIYAN",
"DTG": 1383415200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 2,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 6.0999999999999996,
"LON": 159,
"STORMID": "wp312013"
},
"geometry": {
"x": 17699799.0361,
"y": 680335.35649999976
}
},
{
"attributes": {
"OBJECTID": 2023,
"STORMNAME": "HAIYAN",
"DTG": 1383436800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 3,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Low",
"INTENSITY": 15,
"SS": 0,
"LAT": 6.2000000000000002,
"LON": 157.69999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 17555083.698100001,
"y": 691531.74410000071
}
},
{
"attributes": {
"OBJECTID": 2024,
"STORMNAME": "HAIYAN",
"DTG": 1383458400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 3,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Tropical Depression",
"INTENSITY": 25,
"SS": 0,
"LAT": 6.4000000000000004,
"LON": 156,
"STORMID": "wp312013"
},
"geometry": {
"x": 17365840.5638,
"y": 713930.92350000143
}
},
{
"attributes": {
"OBJECTID": 2025,
"STORMNAME": "HAIYAN",
"DTG": 1383480000000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 3,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Tropical Depression",
"INTENSITY": 30,
"SS": 0,
"LAT": 6.4000000000000004,
"LON": 154.30000000000001,
"STORMID": "wp312013"
},
"geometry": {
"x": 17176597.429399997,
"y": 713930.92350000143
}
},
{
"attributes": {
"OBJECTID": 2026,
"STORMNAME": "HAIYAN",
"DTG": 1383501600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 3,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Tropical Depression",
"INTENSITY": 30,
"SS": 0,
"LAT": 6.2000000000000002,
"LON": 152.69999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 16998486.244099997,
"y": 691531.74410000071
}
},
{
"attributes": {
"OBJECTID": 2027,
"STORMNAME": "HAIYAN",
"DTG": 1383523200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 4,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Tropical Storm",
"INTENSITY": 35,
"SS": 0,
"LAT": 6,
"LON": 151.59999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 16876034.804300003,
"y": 669141.05700000003
}
},
{
"attributes": {
"OBJECTID": 2028,
"STORMNAME": "HAIYAN",
"DTG": 1383544800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 4,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Tropical Storm",
"INTENSITY": 40,
"SS": 0,
"LAT": 6.0999999999999996,
"LON": 150.09999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 16709055.568099998,
"y": 680335.35649999976
}
},
{
"attributes": {
"OBJECTID": 2029,
"STORMNAME": "HAIYAN",
"DTG": 1383566400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 4,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Tropical Storm",
"INTENSITY": 45,
"SS": 0,
"LAT": 6.2999999999999998,
"LON": 148.69999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 16553208.281000003,
"y": 702730.2547999993
}
},
{
"attributes": {
"OBJECTID": 2030,
"STORMNAME": "HAIYAN",
"DTG": 1383588000000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 4,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Tropical Storm",
"INTENSITY": 55,
"SS": 0,
"LAT": 6.4000000000000004,
"LON": 147.30000000000001,
"STORMID": "wp312013"
},
"geometry": {
"x": 16397360.993799999,
"y": 713930.92350000143
}
},
{
"attributes": {
"OBJECTID": 2031,
"STORMNAME": "HAIYAN",
"DTG": 1383609600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 5,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane1",
"INTENSITY": 65,
"SS": 1,
"LAT": 6.4000000000000004,
"LON": 145.90000000000001,
"STORMID": "wp312013"
},
"geometry": {
"x": 16241513.706699997,
"y": 713930.92350000143
}
},
{
"attributes": {
"OBJECTID": 2032,
"STORMNAME": "HAIYAN",
"DTG": 1383631200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 5,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane1",
"INTENSITY": 75,
"SS": 1,
"LAT": 6.4000000000000004,
"LON": 144.5,
"STORMID": "wp312013"
},
"geometry": {
"x": 16085666.419600002,
"y": 713930.92350000143
}
},
{
"attributes": {
"OBJECTID": 2033,
"STORMNAME": "HAIYAN",
"DTG": 1383652800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 5,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane2",
"INTENSITY": 90,
"SS": 2,
"LAT": 6.7999999999999998,
"LON": 143,
"STORMID": "wp312013"
},
"geometry": {
"x": 15918687.183399998,
"y": 758755.87810000032
}
},
{
"attributes": {
"OBJECTID": 2034,
"STORMNAME": "HAIYAN",
"DTG": 1383674400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 5,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane3",
"INTENSITY": 110,
"SS": 3,
"LAT": 7.0999999999999996,
"LON": 141.19999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 15718312.100000001,
"y": 792398.96990000084
}
},
{
"attributes": {
"OBJECTID": 2035,
"STORMNAME": "HAIYAN",
"DTG": 1383696000000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 6,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane4",
"INTENSITY": 130,
"SS": 4,
"LAT": 7.4000000000000004,
"LON": 139.59999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 15540200.914700001,
"y": 826064.0102000013
}
},
{
"attributes": {
"OBJECTID": 2036,
"STORMNAME": "HAIYAN",
"DTG": 1383717600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 6,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane4",
"INTENSITY": 135,
"SS": 4,
"LAT": 7.5999999999999996,
"LON": 138,
"STORMID": "wp312013"
},
"geometry": {
"x": 15362089.729500003,
"y": 848520.03440000117
}
},
{
"attributes": {
"OBJECTID": 2037,
"STORMNAME": "HAIYAN",
"DTG": 1383739200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 6,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 140,
"SS": 5,
"LAT": 7.9000000000000004,
"LON": 136.19999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 15161714.645999998,
"y": 882223.77470000088
}
},
{
"attributes": {
"OBJECTID": 2038,
"STORMNAME": "HAIYAN",
"DTG": 1383760800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 6,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 150,
"SS": 5,
"LAT": 8.1999999999999993,
"LON": 134.40000000000001,
"STORMID": "wp312013"
},
"geometry": {
"x": 14961339.562600002,
"y": 915952.01150000095
}
},
{
"attributes": {
"OBJECTID": 2039,
"STORMNAME": "HAIYAN",
"DTG": 1383782400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 7,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 150,
"SS": 5,
"LAT": 8.5999999999999996,
"LON": 132.80000000000001,
"STORMID": "wp312013"
},
"geometry": {
"x": 14783228.377300002,
"y": 960962.76260000095
}
},
{
"attributes": {
"OBJECTID": 2040,
"STORMNAME": "HAIYAN",
"DTG": 1383804000000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 7,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 150,
"SS": 5,
"LAT": 9.3000000000000007,
"LON": 131.09999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 14593985.243000001,
"y": 1039847.3759999983
}
},
{
"attributes": {
"OBJECTID": 2041,
"STORMNAME": "HAIYAN",
"DTG": 1383825600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 7,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 165,
"SS": 5,
"LAT": 10.199999999999999,
"LON": 129.09999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 14371346.261399999,
"y": 1141504.3357000016
}
},
{
"attributes": {
"OBJECTID": 2042,
"STORMNAME": "HAIYAN",
"DTG": 1383847200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 7,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 170,
"SS": 5,
"LAT": 10.6,
"LON": 127,
"STORMID": "wp312013"
},
"geometry": {
"x": 14137575.330700003,
"y": 1186775.9750000015
}
},
{
"attributes": {
"OBJECTID": 2043,
"STORMNAME": "HAIYAN",
"DTG": 1383868800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 8,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 160,
"SS": 5,
"LAT": 11,
"LON": 124.8,
"STORMID": "wp312013"
},
"geometry": {
"x": 13892672.450999998,
"y": 1232106.8018999994
}
},
{
"attributes": {
"OBJECTID": 2044,
"STORMNAME": "HAIYAN",
"DTG": 1383890400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 8,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane5",
"INTENSITY": 145,
"SS": 5,
"LAT": 11.4,
"LON": 122.59999999999999,
"STORMID": "wp312013"
},
"geometry": {
"x": 13647769.5713,
"y": 1277499.1865999997
}
},
{
"attributes": {
"OBJECTID": 2045,
"STORMNAME": "HAIYAN",
"DTG": 1383912000000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 8,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane4",
"INTENSITY": 135,
"SS": 4,
"LAT": 11.9,
"LON": 120.40000000000001,
"STORMID": "wp312013"
},
"geometry": {
"x": 13402866.691500001,
"y": 1334329.8696999997
}
},
{
"attributes": {
"OBJECTID": 2046,
"STORMNAME": "HAIYAN",
"DTG": 1383933600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 8,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane4",
"INTENSITY": 125,
"SS": 4,
"LAT": 12.199999999999999,
"LON": 118.2,
"STORMID": "wp312013"
},
"geometry": {
"x": 13157963.811799999,
"y": 1368478.1898000017
}
},
{
"attributes": {
"OBJECTID": 2047,
"STORMNAME": "HAIYAN",
"DTG": 1383955200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 9,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane4",
"INTENSITY": 115,
"SS": 4,
"LAT": 12.5,
"LON": 116.3,
"STORMID": "wp312013"
},
"geometry": {
"x": 12946456.779300001,
"y": 1402665.1900000013
}
},
{
"attributes": {
"OBJECTID": 2048,
"STORMNAME": "HAIYAN",
"DTG": 1383976800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 9,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane3",
"INTENSITY": 105,
"SS": 3,
"LAT": 13.5,
"LON": 114.8,
"STORMID": "wp312013"
},
"geometry": {
"x": 12779477.543099999,
"y": 1516914.4453000017
}
},
{
"attributes": {
"OBJECTID": 2049,
"STORMNAME": "HAIYAN",
"DTG": 1383998400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 9,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane3",
"INTENSITY": 100,
"SS": 3,
"LAT": 14.5,
"LON": 113.2,
"STORMID": "wp312013"
},
"geometry": {
"x": 12601366.357799999,
"y": 1631643.4670000002
}
},
{
"attributes": {
"OBJECTID": 2050,
"STORMNAME": "HAIYAN",
"DTG": 1384020000000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 9,
"HHMM": "1800",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane2",
"INTENSITY": 90,
"SS": 2,
"LAT": 15.4,
"LON": 111.7,
"STORMID": "wp312013"
},
"geometry": {
"x": 12434387.121599998,
"y": 1735342.2525999993
}
},
{
"attributes": {
"OBJECTID": 2051,
"STORMNAME": "HAIYAN",
"DTG": 1384041600000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 10,
"HHMM": "0000",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane2",
"INTENSITY": 85,
"SS": 2,
"LAT": 16.399999999999999,
"LON": 110.2,
"STORMID": "wp312013"
},
"geometry": {
"x": 12267407.885400001,
"y": 1851091.8121999986
}
},
{
"attributes": {
"OBJECTID": 2052,
"STORMNAME": "HAIYAN",
"DTG": 1384063200000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 10,
"HHMM": "0600",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane1",
"INTENSITY": 80,
"SS": 1,
"LAT": 17.800000000000001,
"LON": 109,
"STORMID": "wp312013"
},
"geometry": {
"x": 12133824.4965,
"y": 2014152.1147999987
}
},
{
"attributes": {
"OBJECTID": 2053,
"STORMNAME": "HAIYAN",
"DTG": 1384084800000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 10,
"HHMM": "1200",
"TAU": 0,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane1",
"INTENSITY": 75,
"SS": 1,
"LAT": 19.100000000000001,
"LON": 108,
"STORMID": "wp312013"
},
"geometry": {
"x": 12022505.0057,
"y": 2166712.8396999985
}
},
{
"attributes": {
"OBJECTID": 2054,
"STORMNAME": "HAIYAN",
"DTG": 1384106400000,
"YEAR": 2013,
"MONTH": "NOV",
"DAY": 10,
"HHMM": "1800",
"TAU": -1,
"MSLP": 0,
"BASIN": "WP",
"STORMNUM": 31,
"STORMTYPE": "Hurricane1",
"INTENSITY": 65,
"SS": 1,
"LAT": 20.5,
"LON": 107.3,
"STORMID": "wp312013"
},
"geometry": {
"x": 11944581.362100001,
"y": 2332357.8126000017
}
}
]
.land {
fill: #6FC480;
stroke: #000000;
}
.typhoon {
fill: #BDBDBD;
stroke: #727272;
fill-opacity: 0.8;
stroke-width: 2px;
}
.graticule {
fill: none;
stroke: #777;
stroke-opacity: .5;
stroke-width: .5px;
}
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment