Skip to content

Instantly share code, notes, and snippets.

@alansmithy
Last active May 12, 2017 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alansmithy/68691953b85092c484746d6cae1ff275 to your computer and use it in GitHub Desktop.
Save alansmithy/68691953b85092c484746d6cae1ff275 to your computer and use it in GitHub Desktop.
Table
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
text{font-family:Avenir;font-size:10px}
rect{fill:#cdcdcd;stroke:#fff;stroke-width:0.5px}
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
</style>
</head>
<body>
<script>
var w=580;
var h=1500;
var svg = d3.select("body").append("svg")
.attr("width", w)
.attr("height", h);
var margin = {left:10,top:20}
var rowHeight=30;
var colPos=[15,70,190]
d3.csv("streamers.csv", function(data){
var rows = d3.select("svg")
.selectAll("g")
.data(data)
.enter()
.append("g")
.attr("id",function(d){
return d.Brand
})
.attr("transform",function(d,i){
return "translate("+margin.left+","+(margin.top+(i*rowHeight))+")"
})
//row shading
rows.append("rect")
.attr("width",w)
.attr("y",-(rowHeight/1.5))
.attr("height",rowHeight)
//1st column - region
rows.append("text")
.attr("x",colPos[0])
.attr("y",0)
.text(function(d){
return d.Region;
})
//2nd column - brand
rows.append("text")
.attr("x",colPos[1])
.attr("y",0)
.text(function(d){
return d.Brand;
})
//3nd column - brand
rows.append("text")
.attr("x",colPos[2])
.attr("y",0)
.text(function(d){
return d.Owners;
})
});
</script>
</body>
Region Brand Operator Owners
China Youku.com Youku Tudou Alibaba Group Holding
China iQiyi iQiyi Baidu
China Le TV Leshi Internet Information & Technology Listed in Shenzhen, controlled by LeEco, controlled by founder Jia Yueting
China Fun.tv Funshion Online Technologies Private
China Mango TV Mango Media Hunan Broadcasting System, China Mobile
China PPTV PPLive Suning Commerce Group (Owner of Inter Milan)
China Tudou.com Youku Tudou Alibaba Group Holding
China Tencent Video Tencent Holdings Tencent Holdings
Japan Hulu HJ Holdings Nippon Television Network
Japan dTV NTT DoCoMo Listed on Tokyo Stock Exchange
Japan U-Next U-Next Listed on Tokyo Stock Exchange
South Korea oksusu SK Broadband SK Telecom
South Korea Pooq Contents Alliance Platform KBS, SBS, MBC
South Korea Tving CJ E&M Listed on KOSDAQ
South Korea WATCHA PLAY Frograms Venture Capitals
South Korea Olleh TV KT Corporation National Pension Service; Listed on Korea Exchange
South Korea Uflix Movie/U+HDTV LG Uplus Listed on Korea Exchange
Taiwan Chunghwa�Telecom�MOD�(Multimedia on Demand) Chunghwa�Telecom Listed on Taiwan Stock Exchange
Taiwan LiTV LiTV Tivo (US), John Hsuan (UMC honorary vice chairman), other investors
Taiwan KK TV KK Box KDDI (Japan), Chunghwa Telecom, HTC, other investors
Taiwan Catchplay Catchplay Media Holding Cher Wang (HTC chairperson), other investors
Taiwan iQiyi iQiyi Baidu
Hong Kong Viu Vuclip PCCW
Hong Kong myTV Super, GOTV Television Broadcasts (TVB) Listed on Hong Kong Stock Exchange
Indonesia HOOQ HOOQ Singtel, Sony Pictures Entertainment, Warner Brothers
Indonesia iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
Indonesia Genflix PT Mega Media Indonesia Sinar Mas Group
Indonesia Viu Vuclip PCCW
Indonesia Tribe Tribe Astro Malaysia
Indonesia Catchplay Catchplay Media Holding Cher Wang (HTC Chairperson), other investors
Philippines iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
Philippines Blink Now SM Lifestyle Entertainement SM Prime Holdings
Philippines HOOQ HOOQ Singtel, Sony Pictures Entertainment, Warner Brothers
Philippines Fox+ Fox Asia 21st Century Fox
Vietnam Clip.vn Vega Vega
Vietnam FPT Play FPT Telecom FPT Telecom
Vietnam My TV VNPT VNPT (State-owned telecom)
Vietnam Danet BHD BHD (local film producer)
Vietnam Fim+ Fim Plus Galaxy Media Entertainment Group (local film producer)
Vietnam iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
Thailand Doonee Doonee SGX Mediaplex
Thailand HOOQ HOOQ Singtel, Sony Pictures Entertainment, Warner Brothers
Thailand Hollywood HDTV Hollywood HDTV Private investors
Thailand PrimeTime PrimeTime Entertainment Private investors
Thailand iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
Thailand Muvi Muvi Advanced Info Service (AIS)
Myanmar iflix iflix Sky, Catcha Group, Evolution Media Capital, Liberty Global, Zain
Myanmar
Malaysia iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
Malaysia tonton tonton Media Prima Berhad
Malaysia Viu Vuclip PCCW
Singapore Catchplay Catchplay Media Holding Cher Wang (HTC chairperson), other investors
Singapore Viu Vuclip PCCW
Singapore HOOQ HOOQ Singtel, Sony Pictures Entertainment, Warner Brothers
Singapore
Brunei iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
India Hotstar Novi Digital Entertainment Star India (21st Century Fox)
India Jio TV/Cinema Reliance Jio Infocomm Reliance Industries
India Sony LIV Sony Pictures Networks India Sony Pictures Entertainment
India HOOQ HOOQ Singtel, Sony Pictures Entertainment, Warner Brothers
India Viu Vuclip PCCW
Pakistan iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
Sri Lanka iflix iflix Sky (UK), Catcha Group (Malaysia), Evolution Media Capital (US), PLDT (Philippines), Liberty Global (US), Zain (Kuwait), Emtek Group (Indonesia)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment