Skip to content

Instantly share code, notes, and snippets.

@mc-buckets
Last active December 23, 2016 21:40
Show Gist options
  • Save mc-buckets/c5cfffeee48c51343405b2e66f388d7c to your computer and use it in GitHub Desktop.
Save mc-buckets/c5cfffeee48c51343405b2e66f388d7c to your computer and use it in GitHub Desktop.
NBA shot charts
license: BSD-3-Clause
height: 680
border: no

d3-shotchart

This is a simple example of an NBA shot chart using the d3-shotchart plugin and Joel Embiid's publicly available shot data.

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.d3 = global.d3 || {})));
}(this, function (exports) { 'use strict';
// SCALES USED TO INVERT COURT Y COORDS AND MAP SHOOTING PERCENTAGES OF BINS TO A FILL COLOR
var yScale = d3.scaleLinear().domain([0, 47]).rangeRound([47, 0]);
function court() {
// NBA court dimensions are 50ft sideline to sideline and 94feet baseline to baseline (47ft half court)
// Forcing at least a 500x470 ratio for the court in order to paint shots appropriately
var width = 500,
height = .94 * width;
function court(selection){
selection.each(function(data){
// Responsive container for the shotchart
d3.select(this).style("max-width", width/16 + "em");
// Select the SVG if it exists
if (!d3.select(this).selectAll("svg").empty()){
var svg = d3.select(this).selectAll("svg");
}
else {
var svg = d3.select(this).append("svg")
.attr("viewBox", "0, 0, " + 50 + ", " + 47 + "")
.classed("court", true);
// Append the outer paint rectangle
svg.append("g")
.classed("court-paint", true)
.append("rect")
.attr("width", 16)
.attr("height", 19)
.attr("x", 25)
.attr("transform", "translate(" + -8 + "," + 0 + ")")
.attr("y", yScale(19));
// Append inner paint lines
svg.append("g")
.classed("inner-court-paint", true)
.append("line")
.attr("x1", 19)
.attr("x2", 19)
.attr("y1", yScale(19))
.attr("y2", yScale(0));
svg.append("g")
.classed("inner-court-paint", true)
.append("line")
.attr("x1", 31)
.attr("x2", 31)
.attr("y1", yScale(19))
.attr("y2", yScale(0));
// Append foul circle
// Add clipPaths w/ rectangles to make the 2 semi-circles with our desired styles
var dashedFoulCircle = svg.append("g").classed("foul-circle dashed", true);
dashedFoulCircle.append("defs").append("clipPath")
.attr("id", "cut-off-top")
.append("rect")
.attr("width", 12)
.attr("height", 6)
.attr("x", 25)
.attr("y", yScale(19)) // 47-19 (top of rectangle is pinned to foul line, which is at 19 ft)
.attr("transform", "translate(" + -6 + "," + 0 + ")");
dashedFoulCircle.append("circle")
.attr("cx", 25)
.attr("cy", yScale(19)) // 47-19
.attr("r", 6)
.attr("stroke-dasharray", 1 + "," + 1)
.attr("clip-path", "url(#cut-off-top)");
var solidFoulCircle = svg.append("g").classed("foul-circle solid", true);
solidFoulCircle.append("defs").append("clipPath")
.attr("id", "cut-off-bottom")
.append("rect")
.attr("width", 12)
.attr("height", 6)
.attr("x", 25)
.attr("y", yScale(19)) /*foul line is 19 feet, then transform by 6 feet (circle radius) to pin rectangle above foul line..clip paths only render the parts of the circle that are in the rectangle path */
.attr("transform", "translate(" + -6 + "," + -6 + ")");
solidFoulCircle.append("circle")
.attr("cx", 25)
.attr("cy", yScale(19))
.attr("r", 6)
.attr("clip-path", "url(#cut-off-bottom)");
// Add backboard and rim
svg.append("g").classed("backboard", true)
.append("line")
.attr("x1", 22)
.attr("x2", 28)
.attr("y1", yScale(4)) // 47-4
.attr("y2", yScale(4)); // 47-4
svg.append("g").classed("rim", true)
.append("circle")
.attr("cx", 25)
.attr("cy", yScale(4.75)) // 47-4.75 need to set center point of circle to be 'r' above backboard
.attr("r", .75); //regulation rim is 18 inches
// Add restricted area -- a 4ft radius circle from the center of the rim
var restrictedArea = svg.append("g").classed("restricted-area", true);
restrictedArea.append("defs").append("clipPath")
.attr("id", "restricted-cut-off")
.append("rect")
.attr("width", 8) // width is 2r of the circle it's cutting off
.attr("height", 4) // height is 1r of the circle it's cutting off
.attr("x", 25) // center rectangle
.attr("y", yScale(4.75))
.attr("transform", "translate(" + -4 + "," + -4 + ")");
restrictedArea.append("circle")
.attr("cx", 25)
.attr("cy", yScale(4.75))
.attr("r", 4)
.attr("clip-path", "url(#restricted-cut-off)");
restrictedArea.append("line")
.attr("x1", 21)
.attr("x2", 21)
.attr("y1", yScale(5.25))
.attr("y2", yScale(4));
restrictedArea.append("line")
.attr("x1", 29)
.attr("x2", 29)
.attr("y1", yScale(5.25))
.attr("y2", yScale(4));
// Add 3 point arc
var threePointArea = svg.append("g").classed("three-point-area", true);
threePointArea.append("defs").append("clipPath")
.attr("id", "three-point-cut-off")
.append("rect")
.attr("width", 44)
.attr("height", 23.75)
.attr("x", 25)
.attr("y", yScale(4.75)) // put recentagle at centerpoint of circle then translate by the inverse of the circle radius to cut off top half
.attr("transform", "translate(" + -22 + "," + -23.75 + ")");
threePointArea.append("circle")
.attr("cx", 25)
.attr("cy", yScale(4.75))
.attr("r", 23.75)
.attr("clip-path", "url(#three-point-cut-off)");
threePointArea.append("line")
.attr("x1", 3)
.attr("x2", 3)
.attr("y1", yScale(14))
.attr("y2", yScale(0));
threePointArea.append("line")
.attr("x1", 47)
.attr("x2", 47)
.attr("y1", yScale(14))
.attr("y2", yScale(0));
// Add key lines
var keyLines = svg.append("g").classed("key-lines", true);
keyLines.append("line")
.attr("x1", 16)
.attr("x2", 17)
.attr("y1", yScale(7))
.attr("y2", yScale(7));
keyLines.append("line")
.attr("x1", 16)
.attr("x2", 17)
.attr("y1", yScale(8))
.attr("y2", yScale(8));
keyLines.append("line")
.attr("x1", 16)
.attr("x2", 17)
.attr("y1", yScale(11))
.attr("y2", yScale(11));
keyLines.append("line")
.attr("x1", 16)
.attr("x2", 17)
.attr("y1", yScale(14))
.attr("y2", yScale(14));
keyLines.append("line")
.attr("x1", 33)
.attr("x2", 34)
.attr("y1", yScale(7))
.attr("y2", yScale(7));
keyLines.append("line")
.attr("x1", 33)
.attr("x2", 34)
.attr("y1", yScale(8))
.attr("y2", yScale(8));
keyLines.append("line")
.attr("x1", 33)
.attr("x2", 34)
.attr("y1", yScale(11))
.attr("y2", yScale(11));
keyLines.append("line")
.attr("x1", 33)
.attr("x2", 34)
.attr("y1", yScale(14))
.attr("y2", yScale(14));
// Append baseline
svg.append("g")
.classed("court-baseline", true)
.append("line")
.attr("x1", 0)
.attr("x2", 50)
.attr("y1", yScale(0))
.attr("y2", yScale(0));
svg.append("g").classed("shots", true);
};
});
};
court.width = function(_) {
if (!arguments.length) return width;
width = _;
height = .94 * _;
return court;
};
court.theme= function(_) {
if (!arguments.length) return theme;
shotchart.activeTheme = _;
return court;
};
return court;
};
var activeDisplay$1 = "scatter";
var activeTheme = "day";
// SCALES USED TO INVERT COURT Y COORDS AND MAP SHOOTING PERCENTAGES OF BINS TO A FILL COLOR
var yScale$1 = d3.scaleLinear().domain([0, 47]).rangeRound([47, 0]);
var percentFormatter = d3.format(".2%");
function shots() {
var hexRadiusValues = [.8, 1, 1.2],
hexMinShotThreshold = 1,
heatScale = d3.scaleQuantize().domain([0, 1]).range(['#5458A2', '#6689BB', '#FADC97', '#F08460', '#B02B48']),
hexRadiusScale = d3.scaleQuantize().domain([0, 2]).range(hexRadiusValues),
toolTips = false,
hexbin = d3_hexbin.hexbin()
.radius(1.2)
.x(function(d) { return d.key[0]; }) // accessing the x, y coords from the nested json key
.y(function(d) { return yScale$1(d.key[1]); });
var _nestShotsByLocation = function(data) {
var nestedData = d3.nest()
.key(function(d) {
return [d.x, d.y];
})
.rollup(function(v) { return {
"made": d3.sum(v, function(d) { return d.shot_made_flag }),
"attempts": v.length,
"shootingPercentage": d3.sum(v, function(d) { return d.shot_made_flag })/v.length
}})
.entries(data);
// change to use a string split and force cast to int
nestedData.forEach(function(a){
a.key = JSON.parse("[" + a.key + "]");
});
return nestedData;
};
var _getHexBinShootingStats = function(data, index) {
var attempts = d3.sum(data, function(d) { return d.value.attempts; })
var makes = d3.sum(data, function(d) { return d.value.made; })
var shootingPercentage = makes/attempts;
data.shootingPercentage = shootingPercentage;
data.attempts = attempts;
data.makes = makes;
return data;
};
function shots(selection){
selection.each(function(data){
var shotsGroup = d3.select(this).select("svg").select(".shots"),
legends = d3.select(this).select("#legends"),
nestedData = _nestShotsByLocation(data),
hexBinCoords = hexbin(nestedData).map(_getHexBinShootingStats);
if (activeDisplay$1 === "scatter"){
if (legends.empty() === false){
legends.remove();
}
var shots = shotsGroup.selectAll(".shot")
.data(data, function(d){ return [d.x, d.y]; });
shots.exit()
.transition().duration(1000)
.attr("r", 0)
.attr("d", hexbin.hexagon(0))
.remove();
if (toolTips) {
var tool_tip = d3.tip()
.attr("class", "d3-tip")
.offset([-8, 0])
.html(function(d) {
return d.shot_distance + "' " + d.action_type;
});
shotsGroup.call(tool_tip);
}
shots.enter()
.append("circle")
.classed("shot", true)
.classed("make", function(d){
return d.shot_made_flag === 1; // used to set fill color to green if it's a made shot
})
.classed("miss", function(d){
return d.shot_made_flag === 0; // used to set fill color to red if it's a miss
})
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return yScale$1(d.y); })
.attr("r", 0)
.on('mouseover', function(d) { if (toolTips) {tool_tip.show(d);} })
.on('mouseout', function(d) { if (toolTips) {tool_tip.hide(d);} })
.transition().duration(1000)
.attr("r", .5);
}
else if (activeDisplay$1 === "hexbin"){
var shots = shotsGroup.selectAll(".shot")
.data(hexBinCoords, function(d){ return [d.x, d.y]; });
shots.exit()
.transition().duration(1000)
.attr("r", 0)
.attr("d", hexbin.hexagon(0))
.remove();
if (toolTips) {
var tool_tip = d3.tip()
.attr("class", "d3-tip")
.offset([-8, 0])
.html(function(d) {
return d.makes + " / " + d.attempts + " (" + percentFormatter(d.shootingPercentage) + ")";
});
shotsGroup.call(tool_tip);
}
shots.enter()
.append("path")
.classed("shot", true)
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
.attr("d", hexbin.hexagon(0))
.on('mouseover', function(d) { if (toolTips) {tool_tip.show(d);} })
.on('mouseout', function(d) { if (toolTips) {tool_tip.hide(d);} })
.transition().duration(1000)
.attr("d", function(d) {
if (d.length >= hexMinShotThreshold) {
if (d.length <= 3){
return hexbin.hexagon(hexRadiusScale(0));
}
else if (3 < d.length && d.length <= 8){
return hexbin.hexagon(hexRadiusScale(1));
}
else {
return hexbin.hexagon(hexRadiusScale(2));
}
}
})
.style("fill", function(d) { return heatScale(d.shootingPercentage); });
// CHANGE TO USE SELECTION.EMPTY()
if (legends.empty() === true){
var legendSVG = d3.select(this).append('svg').attr("viewBox", "0, 0, " + 50 + ", " + 10 + "").attr('id', 'legends'),
efficiencyLegend = legendSVG.append('g').classed('legend', true),
frequencyLegend = legendSVG.append('g').classed('legend', true)
.classed('frequency', true),
frequencyLegendXStart = 7;
efficiencyLegend.append("text")
.classed('legend-text', true)
.attr("x", 40)
.attr("y", 5)
.attr("text-anchor", "middle")
.text("Efficiency");
efficiencyLegend.append("text")
.classed("legend-text", true)
.attr("x", 34.25)
.attr("y", 2.5)
.attr("text-anchor", "end")
.text("cold");
efficiencyLegend.append("text")
.classed("legend-text", true)
.attr("x", 45.75)
.attr("y", 2.5)
.attr("text-anchor", "start")
.text("hot");
efficiencyLegend.selectAll('path').data(heatScale.range())
.enter()
.append('path')
.attr("transform", function (d, i) {
return "translate(" +
(35 + ((1 + i*2) * 1)) + ", " + 2 + ")";
})
.attr('d', hexbin.hexagon(0))
.transition().duration(1000)
.attr('d', hexbin.hexagon(1))
.style('fill', function (d) { return d; });
efficiencyLegend.selectAll("text").style("fill", function(){
if (activeTheme === "night"){ return "white"; }
else if (activeTheme === "day"){ return "black"; };
});
frequencyLegend.append("text")
.classed('legend-text', true)
.attr("x", 10.25)
.attr("y", 5)
.attr("text-anchor", "middle")
.text("Frequency");
frequencyLegend.append("text")
.classed("legend-text", true)
.attr("x", 6.25)
.attr("y", 2.5)
.attr("text-anchor", "end")
.text("low");
frequencyLegend.selectAll('path').data(hexRadiusValues)
.enter()
.append('path')
.attr("transform", function (d, i) {
frequencyLegendXStart += d * 2;
return "translate(" + (frequencyLegendXStart - d) + ", " + 2 + ")";
})
.attr('d', hexbin.hexagon(0))
.transition().duration(1000)
.attr('d', function (d) { return hexbin.hexagon(d); })
frequencyLegend.append("text")
.classed("legend-text", true)
.attr("x", 13.75)
.attr("y", 2.5)
.attr("text-anchor", "start")
.text("high");
frequencyLegend.selectAll("text").style("fill", function(){
if (activeTheme === "night"){ return "white"; }
else if (activeTheme === "day"){ return "black"; };
})
frequencyLegend.selectAll("path").style("fill", function(){
if (activeTheme === "night"){ return "none"; }
else if (activeTheme === "day"){ return "grey"; };
});
};
};
});
};
shots.displayType = function(_) {
if (!arguments.length) return activeDisplay$1;
activeDisplay$1 = _;
return shots;
};
shots.shotRenderThreshold = function(_) {
if (!arguments.length) return hexMinShotThreshold;
hexMinShotThreshold = _;
return shots;
};
shots.displayToolTips = function(_) {
if (!arguments.length) return toolTips;
toolTips = _;
return shots;
};
return shots;
};
exports.court = court;
exports.shots = shots;
Object.defineProperty(exports, '__esModule', { value: true });
}));
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<style>
body {
margin: 0;
top: 0;
right: 0;
bottom: 0;
left: 0;
font-size: 100%;
}
.shot-chart{
margin-left: auto;
margin-right: auto;
}
svg {
stroke-width: .2;
}
svg text {
font-size: .2em;
}
svg text.legend-text {
font-size: .075em;
}
svg rect {
stroke: black;
width: 1;
fill: none;
}
svg line {
stroke: black;
fill: none;
width: 1;
}
svg circle {
stroke: black;
fill: none;
}
circle.shot.make {
fill: green;
stroke: white;
stroke-width: .05;
}
circle.shot.miss {
fill: red;
stroke: white;
stroke-width: .05;
}
path.shot {
stroke: white;
fill: none;
stroke-width: .05;
}
path {
stroke: white;
stroke-width: .05;
}
</style>
<body>
<div class="shot-chart"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.4.0/d3.min.js"></script>
<script src="https://d3js.org/d3-hexbin.v0.2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.7.1/d3-tip.min.js"></script>
<script src="d3-shotchart.js" ></script>
<script src="shots.js" ></script>
<script>
var courtSelection = d3.select(".shot-chart");
var court = d3.court().width(600);
var shots = d3.shots().shotRenderThreshold(1).displayToolTips(true).displayType("hexbin");
// DRAW COURT AND SHOTS ONTO THE PAGE
courtSelection.call(court);
courtSelection.datum(data).call(shots);
// shots.displayType("scatter");
// courtSelection.call(shots);
</script>
</body>
</html>
var data = [
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 5,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 55,
"loc_y": 237,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 33,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 19.5,
"y": 28.45
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Made Shot",
"game_date": 1477440000000,
"game_event_id": 38,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 53,
"loc_y": 149,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 17,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 19.7,
"y": 19.65
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 195,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -117,
"loc_y": -41,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 12,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 36.7,
"y": 0.65
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477440000000,
"game_event_id": 200,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 43,
"loc_y": 252,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 12,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 20.7,
"y": 29.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 202,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 73,
"loc_y": 31,
"minutes_remaining": 6,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 45,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 17.7,
"y": 7.85
},
{
"action_type": "Turnaround Hook Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 205,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -66,
"loc_y": 28,
"minutes_remaining": 6,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 5,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 31.6,
"y": 7.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 228,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 114,
"loc_y": 144,
"minutes_remaining": 3,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 53,
"shot_attempted_flag": 1,
"shot_distance": 18,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 13.6,
"y": 19.15
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 269,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 9,
"loc_y": 0,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 24.1,
"y": 4.75
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Made Shot",
"game_date": 1477440000000,
"game_event_id": 275,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -58,
"loc_y": -11,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 17,
"shot_attempted_flag": 1,
"shot_distance": 5,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 30.8,
"y": 3.65
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477440000000,
"game_event_id": 397,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -76,
"loc_y": 120,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 36,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 32.6,
"y": 16.75
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 401,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -4,
"loc_y": 249,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 25.4,
"y": 29.65
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 414,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -79,
"loc_y": 16,
"minutes_remaining": 11,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 30,
"shot_attempted_flag": 1,
"shot_distance": 8,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 32.9,
"y": 6.35
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477440000000,
"game_event_id": 512,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -135,
"loc_y": 46,
"minutes_remaining": 3,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 26,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 38.5,
"y": 9.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 524,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -35,
"loc_y": -1,
"minutes_remaining": 2,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 23,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 28.5,
"y": 4.65
},
{
"action_type": "Fadeaway Jump Shot",
"event_type": "Made Shot",
"game_date": 1477440000000,
"game_event_id": 543,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 128,
"loc_y": 11,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 50,
"shot_attempted_flag": 1,
"shot_distance": 12,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 12.2,
"y": 5.85
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1477440000000,
"game_event_id": 552,
"game_id": "0021600011",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -24,
"loc_y": 11,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 22,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "OKC",
"x": 27.4,
"y": 5.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477699200000,
"game_event_id": 2,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -34,
"loc_y": 257,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 48,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 28.4,
"y": 30.45
},
{
"action_type": "Running Finger Roll Layup Shot",
"event_type": "Made Shot",
"game_date": 1477699200000,
"game_event_id": 6,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 9,
"loc_y": -6,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 13,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 24.1,
"y": 4.15
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477699200000,
"game_event_id": 31,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -97,
"loc_y": 111,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 56,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 34.7,
"y": 15.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477699200000,
"game_event_id": 278,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 109,
"loc_y": 52,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 22,
"shot_attempted_flag": 1,
"shot_distance": 12,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 14.1,
"y": 9.95
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477699200000,
"game_event_id": 284,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -148,
"loc_y": 124,
"minutes_remaining": 10,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 17,
"shot_attempted_flag": 1,
"shot_distance": 19,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 39.8,
"y": 17.15
},
{
"action_type": "Driving Layup Shot",
"event_type": "Made Shot",
"game_date": 1477699200000,
"game_event_id": 307,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -7,
"loc_y": 2,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 30,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 25.7,
"y": 4.95
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1477699200000,
"game_event_id": 314,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -9,
"loc_y": 8,
"minutes_remaining": 6,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 29,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 25.9,
"y": 5.55
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477699200000,
"game_event_id": 412,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -117,
"loc_y": 134,
"minutes_remaining": 11,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 43,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 36.7,
"y": 18.15
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477699200000,
"game_event_id": 427,
"game_id": "0021600026",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 9,
"loc_y": 31,
"minutes_remaining": 9,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 19,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ATL",
"x": 24.1,
"y": 7.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477958400000,
"game_event_id": 10,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 33,
"loc_y": 3,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 10,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 21.7,
"y": 5.05
},
{
"action_type": "Alley Oop Dunk Shot",
"event_type": "Missed Shot",
"game_date": 1477958400000,
"game_event_id": 21,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 51,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Step Back Jump shot",
"event_type": "Made Shot",
"game_date": 1477958400000,
"game_event_id": 112,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -97,
"loc_y": 2,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 51,
"shot_attempted_flag": 1,
"shot_distance": 9,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 34.7,
"y": 4.95
},
{
"action_type": "Pullup Jump shot",
"event_type": "Missed Shot",
"game_date": 1477958400000,
"game_event_id": 116,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -11,
"loc_y": 183,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 25,
"shot_attempted_flag": 1,
"shot_distance": 18,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 26.1,
"y": 23.05
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477958400000,
"game_event_id": 182,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -43,
"loc_y": 7,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 51,
"shot_attempted_flag": 1,
"shot_distance": 4,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 29.3,
"y": 5.45
},
{
"action_type": "Alley Oop Dunk Shot",
"event_type": "Made Shot",
"game_date": 1477958400000,
"game_event_id": 187,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 1,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Putback Layup Shot",
"event_type": "Made Shot",
"game_date": 1477958400000,
"game_event_id": 202,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 1,
"loc_y": 1,
"minutes_remaining": 5,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 28,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 24.9,
"y": 4.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477958400000,
"game_event_id": 264,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -11,
"loc_y": 56,
"minutes_remaining": 0,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 5,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 26.1,
"y": 10.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477958400000,
"game_event_id": 372,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 30,
"loc_y": 242,
"minutes_remaining": 1,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 2,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 22.0,
"y": 28.95
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1477958400000,
"game_event_id": 391,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 114,
"loc_y": 129,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 4,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 13.6,
"y": 17.65
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1477958400000,
"game_event_id": 475,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 9,
"loc_y": 3,
"minutes_remaining": 4,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 56,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 24.1,
"y": 5.05
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Missed Shot",
"game_date": 1477958400000,
"game_event_id": 503,
"game_id": "0021600046",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -7,
"loc_y": 124,
"minutes_remaining": 2,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 31,
"shot_attempted_flag": 1,
"shot_distance": 12,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 25.7,
"y": 17.15
},
{
"action_type": "Turnaround Hook Shot",
"event_type": "Made Shot",
"game_date": 1478304000000,
"game_event_id": 7,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 43,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 1,
"shot_attempted_flag": 1,
"shot_distance": 4,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 25.0,
"y": 9.05
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478304000000,
"game_event_id": 37,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -52,
"loc_y": -6,
"minutes_remaining": 7,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 59,
"shot_attempted_flag": 1,
"shot_distance": 5,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 30.2,
"y": 4.15
},
{
"action_type": "Step Back Jump shot",
"event_type": "Missed Shot",
"game_date": 1478304000000,
"game_event_id": 115,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 119,
"loc_y": 28,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 17,
"shot_attempted_flag": 1,
"shot_distance": 12,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 13.1,
"y": 7.55
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1478304000000,
"game_event_id": 214,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -20,
"loc_y": 3,
"minutes_remaining": 6,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 38,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 27.0,
"y": 5.05
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478304000000,
"game_event_id": 223,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -27,
"loc_y": 252,
"minutes_remaining": 6,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 15,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 27.7,
"y": 29.95
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1478304000000,
"game_event_id": 237,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -29,
"loc_y": 2,
"minutes_remaining": 4,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 2,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 27.9,
"y": 4.95
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478304000000,
"game_event_id": 297,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 24,
"loc_y": 252,
"minutes_remaining": 10,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 39,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 22.6,
"y": 29.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478304000000,
"game_event_id": 307,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 176,
"loc_y": 51,
"minutes_remaining": 9,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 33,
"shot_attempted_flag": 1,
"shot_distance": 18,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 7.4,
"y": 9.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478304000000,
"game_event_id": 325,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 128,
"loc_y": 232,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 14,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 12.2,
"y": 27.95
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1478304000000,
"game_event_id": 329,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -7,
"loc_y": 3,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 49,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 25.7,
"y": 5.05
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478304000000,
"game_event_id": 398,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -158,
"loc_y": 13,
"minutes_remaining": 1,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 45,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 40.8,
"y": 6.05
},
{
"action_type": "Jump Bank Shot",
"event_type": "Made Shot",
"game_date": 1478304000000,
"game_event_id": 406,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 17,
"loc_y": 262,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 4,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 23.3,
"y": 30.95
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478304000000,
"game_event_id": 488,
"game_id": "0021600080",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -74,
"loc_y": -5,
"minutes_remaining": 3,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 54,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 32.4,
"y": 4.25
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1478476800000,
"game_event_id": 5,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -9,
"loc_y": -6,
"minutes_remaining": 10,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 25.9,
"y": 4.15
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478476800000,
"game_event_id": 28,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -6,
"loc_y": 41,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 8,
"shot_attempted_flag": 1,
"shot_distance": 4,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 25.6,
"y": 8.85
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1478476800000,
"game_event_id": 230,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 2,
"loc_y": 7,
"minutes_remaining": 5,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 9,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 24.8,
"y": 5.45
},
{
"action_type": "Hook Shot",
"event_type": "Missed Shot",
"game_date": 1478476800000,
"game_event_id": 235,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 4,
"loc_y": 28,
"minutes_remaining": 4,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 34,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 24.6,
"y": 7.55
},
{
"action_type": "Putback Layup Shot",
"event_type": "Made Shot",
"game_date": 1478476800000,
"game_event_id": 237,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 2,
"loc_y": 16,
"minutes_remaining": 4,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 31,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 24.8,
"y": 6.35
},
{
"action_type": "Turnaround Hook Shot",
"event_type": "Made Shot",
"game_date": 1478476800000,
"game_event_id": 421,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -40,
"loc_y": 47,
"minutes_remaining": 1,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 6,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 29.0,
"y": 9.45
},
{
"action_type": "Turnaround Bank Hook Shot",
"event_type": "Made Shot",
"game_date": 1478476800000,
"game_event_id": 435,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -2,
"loc_y": 75,
"minutes_remaining": 11,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 19,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 25.2,
"y": 12.25
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478476800000,
"game_event_id": 437,
"game_id": "0021600093",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -166,
"loc_y": -11,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 36,
"shot_attempted_flag": 1,
"shot_distance": 16,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "UTA",
"x": 41.6,
"y": 3.65
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478822400000,
"game_event_id": 149,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 94,
"loc_y": 149,
"minutes_remaining": 9,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 46,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 15.6,
"y": 19.65
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 160,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -30,
"loc_y": 144,
"minutes_remaining": 8,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 4,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 28.0,
"y": 19.15
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 166,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 151,
"loc_y": 3,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 9,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 9.9,
"y": 5.05
},
{
"action_type": "Driving Layup Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 234,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -29,
"loc_y": 7,
"minutes_remaining": 2,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 17,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 27.9,
"y": 5.45
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478822400000,
"game_event_id": 243,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 1,
"loc_y": 203,
"minutes_remaining": 1,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 45,
"shot_attempted_flag": 1,
"shot_distance": 20,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 24.9,
"y": 25.05
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 267,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -29,
"loc_y": -1,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 3,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 27.9,
"y": 4.65
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 297,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 30,
"loc_y": 257,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 15,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 22.0,
"y": 30.45
},
{
"action_type": "Fadeaway Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 410,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 28,
"loc_y": 90,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 48,
"shot_attempted_flag": 1,
"shot_distance": 9,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 22.2,
"y": 13.75
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 418,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -2,
"loc_y": 156,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 4,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 25.2,
"y": 20.35
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1478822400000,
"game_event_id": 491,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 64,
"loc_y": 252,
"minutes_remaining": 4,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 5,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 18.6,
"y": 29.95
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1478822400000,
"game_event_id": 511,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -27,
"loc_y": 8,
"minutes_remaining": 1,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 54,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 27.7,
"y": 5.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 515,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -42,
"loc_y": 31,
"minutes_remaining": 1,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 15,
"shot_attempted_flag": 1,
"shot_distance": 5,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 29.2,
"y": 7.85
},
{
"action_type": "Putback Dunk Shot",
"event_type": "Made Shot",
"game_date": 1478822400000,
"game_event_id": 516,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 1,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 14,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Step Back Jump shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 525,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -47,
"loc_y": 175,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 34,
"shot_attempted_flag": 1,
"shot_distance": 18,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 29.7,
"y": 22.25
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 556,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 64,
"loc_y": 242,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 18.6,
"y": 28.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 589,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -148,
"loc_y": 16,
"minutes_remaining": 1,
"period": 5,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 32,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 39.8,
"y": 6.35
},
{
"action_type": "Driving Bank shot",
"event_type": "Made Shot",
"game_date": 1478822400000,
"game_event_id": 597,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -38,
"loc_y": -1,
"minutes_remaining": 0,
"period": 5,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 55,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 28.8,
"y": 4.65
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1478822400000,
"game_event_id": 606,
"game_id": "0021600121",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -165,
"loc_y": -5,
"minutes_remaining": 0,
"period": 5,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 14,
"shot_attempted_flag": 1,
"shot_distance": 16,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "IND",
"x": 41.5,
"y": 4.25
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479081600000,
"game_event_id": 2,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": -142,
"loc_y": 131,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 39,
"shot_attempted_flag": 1,
"shot_distance": 19,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 39.2,
"y": 17.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479081600000,
"game_event_id": 4,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": 4,
"loc_y": 257,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 14,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 24.6,
"y": 30.45
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1479081600000,
"game_event_id": 11,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": 19,
"loc_y": 3,
"minutes_remaining": 10,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 24,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 23.1,
"y": 5.05
},
{
"action_type": "Running Dunk Shot",
"event_type": "Made Shot",
"game_date": 1479081600000,
"game_event_id": 21,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 25,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Putback Dunk Shot",
"event_type": "Made Shot",
"game_date": 1479081600000,
"game_event_id": 85,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 3,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 40,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479081600000,
"game_event_id": 124,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": -30,
"loc_y": 61,
"minutes_remaining": 0,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 47,
"shot_attempted_flag": 1,
"shot_distance": 6,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 28.0,
"y": 10.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479081600000,
"game_event_id": 215,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": 15,
"loc_y": 61,
"minutes_remaining": 6,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 52,
"shot_attempted_flag": 1,
"shot_distance": 6,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 23.5,
"y": 10.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479081600000,
"game_event_id": 330,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": 6,
"loc_y": 75,
"minutes_remaining": 9,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 9,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 24.4,
"y": 12.25
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479081600000,
"game_event_id": 335,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": 91,
"loc_y": 237,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 18,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 15.9,
"y": 28.45
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1479081600000,
"game_event_id": 426,
"game_id": "0021600149",
"grid_type": "Shot Chart Detail",
"htm": "HOU",
"loc_x": -6,
"loc_y": 21,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 27,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.6,
"y": 6.85
},
{
"action_type": "Dunk Shot",
"event_type": "Made Shot",
"game_date": 1479340800000,
"game_event_id": 17,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 29,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479340800000,
"game_event_id": 20,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": -7,
"loc_y": 198,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 1,
"shot_attempted_flag": 1,
"shot_distance": 19,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.7,
"y": 24.55
},
{
"action_type": "Putback Layup Shot",
"event_type": "Made Shot",
"game_date": 1479340800000,
"game_event_id": 31,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": -27,
"loc_y": 10,
"minutes_remaining": 7,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 46,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 27.7,
"y": 5.75
},
{
"action_type": "Driving Layup Shot",
"event_type": "Missed Shot",
"game_date": 1479340800000,
"game_event_id": 264,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": -4,
"loc_y": 11,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 19,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.4,
"y": 5.85
},
{
"action_type": "Tip Layup Shot",
"event_type": "Missed Shot",
"game_date": 1479340800000,
"game_event_id": 274,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": -9,
"loc_y": 10,
"minutes_remaining": 10,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 16,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.9,
"y": 5.75
},
{
"action_type": "Putback Layup Shot",
"event_type": "Made Shot",
"game_date": 1479340800000,
"game_event_id": 276,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": 4,
"loc_y": 2,
"minutes_remaining": 10,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 11,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 24.6,
"y": 4.95
},
{
"action_type": "Floating Jump shot",
"event_type": "Missed Shot",
"game_date": 1479340800000,
"game_event_id": 289,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": 4,
"loc_y": 49,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 29,
"shot_attempted_flag": 1,
"shot_distance": 4,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 24.6,
"y": 9.65
},
{
"action_type": "Alley Oop Layup shot",
"event_type": "Made Shot",
"game_date": 1479340800000,
"game_event_id": 299,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": 7,
"loc_y": 15,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 5,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 24.3,
"y": 6.25
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479340800000,
"game_event_id": 398,
"game_id": "0021600172",
"grid_type": "Shot Chart Detail",
"htm": "MIN",
"loc_x": 140,
"loc_y": 206,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 28,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 11.0,
"y": 25.35
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 7,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -27,
"loc_y": -6,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 19,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 27.7,
"y": 4.15
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 11,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 38,
"loc_y": 242,
"minutes_remaining": 10,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 39,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 21.2,
"y": 28.95
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 18,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -171,
"loc_y": 190,
"minutes_remaining": 10,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 9,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 42.1,
"y": 23.75
},
{
"action_type": "Alley Oop Dunk Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 27,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 3,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479513600000,
"game_event_id": 97,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -99,
"loc_y": 18,
"minutes_remaining": 3,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 47,
"shot_attempted_flag": 1,
"shot_distance": 10,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 34.9,
"y": 6.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479513600000,
"game_event_id": 104,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 2,
"loc_y": 247,
"minutes_remaining": 3,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 27,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 24.8,
"y": 29.45
},
{
"action_type": "Hook Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 128,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 2,
"loc_y": 11,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 42,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 24.8,
"y": 5.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 136,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -12,
"loc_y": 244,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 6,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 26.2,
"y": 29.15
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479513600000,
"game_event_id": 228,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 242,
"minutes_remaining": 3,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 59,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 25.0,
"y": 28.95
},
{
"action_type": "Reverse Layup Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 281,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 15,
"loc_y": -6,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 23.5,
"y": 4.15
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 338,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -179,
"loc_y": 3,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 34,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 42.9,
"y": 5.05
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479513600000,
"game_event_id": 436,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -89,
"loc_y": 80,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 11,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 33.9,
"y": 12.75
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479513600000,
"game_event_id": 438,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 132,
"loc_y": 193,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 36,
"shot_attempted_flag": 1,
"shot_distance": 23,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 11.8,
"y": 24.05
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479513600000,
"game_event_id": 471,
"game_id": "0021600189",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 74,
"loc_y": 156,
"minutes_remaining": 8,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 32,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHX",
"x": 17.6,
"y": 20.35
},
{
"action_type": "Step Back Jump shot",
"event_type": "Made Shot",
"game_date": 1479686400000,
"game_event_id": 8,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 125,
"loc_y": 38,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 5,
"shot_attempted_flag": 1,
"shot_distance": 13,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 12.5,
"y": 8.55
},
{
"action_type": "Hook Shot",
"event_type": "Made Shot",
"game_date": 1479686400000,
"game_event_id": 96,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -6,
"loc_y": 70,
"minutes_remaining": 2,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 40,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 25.6,
"y": 11.75
},
{
"action_type": "Turnaround Hook Shot",
"event_type": "Made Shot",
"game_date": 1479686400000,
"game_event_id": 104,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -56,
"loc_y": 31,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 48,
"shot_attempted_flag": 1,
"shot_distance": 6,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 30.6,
"y": 7.85
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479686400000,
"game_event_id": 180,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 20,
"loc_y": 26,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 15,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 23.0,
"y": 7.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479686400000,
"game_event_id": 203,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -106,
"loc_y": 21,
"minutes_remaining": 5,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 39,
"shot_attempted_flag": 1,
"shot_distance": 10,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 35.6,
"y": 6.85
},
{
"action_type": "Driving Finger Roll Layup Shot",
"event_type": "Made Shot",
"game_date": 1479686400000,
"game_event_id": 216,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -16,
"loc_y": 21,
"minutes_remaining": 4,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 26.6,
"y": 6.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479686400000,
"game_event_id": 299,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -14,
"loc_y": 254,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 47,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 26.4,
"y": 30.15
},
{
"action_type": "Hook Shot",
"event_type": "Missed Shot",
"game_date": 1479686400000,
"game_event_id": 314,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -71,
"loc_y": 80,
"minutes_remaining": 10,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 7,
"shot_attempted_flag": 1,
"shot_distance": 10,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 32.1,
"y": 12.75
},
{
"action_type": "Running Reverse Layup Shot",
"event_type": "Made Shot",
"game_date": 1479686400000,
"game_event_id": 318,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -1,
"loc_y": 11,
"minutes_remaining": 9,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 50,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 25.1,
"y": 5.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479686400000,
"game_event_id": 333,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 4,
"loc_y": 257,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 50,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 24.6,
"y": 30.45
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479686400000,
"game_event_id": 420,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -9,
"loc_y": 38,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 37,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 25.9,
"y": 8.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479686400000,
"game_event_id": 424,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -96,
"loc_y": 156,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 18,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 34.6,
"y": 20.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479686400000,
"game_event_id": 448,
"game_id": "0021600199",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -7,
"loc_y": 51,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 3,
"shot_attempted_flag": 1,
"shot_distance": 5,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MIA",
"x": 25.7,
"y": 9.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479859200000,
"game_event_id": 98,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -1,
"loc_y": 252,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 58,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 25.1,
"y": 29.95
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1479859200000,
"game_event_id": 110,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 12,
"loc_y": 8,
"minutes_remaining": 0,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 48,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 23.8,
"y": 5.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479859200000,
"game_event_id": 118,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 6,
"loc_y": 252,
"minutes_remaining": 0,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 32,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 24.4,
"y": 29.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479859200000,
"game_event_id": 187,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -142,
"loc_y": 11,
"minutes_remaining": 6,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 22,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 39.2,
"y": 5.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1479859200000,
"game_event_id": 277,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 150,
"loc_y": 46,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 20,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 10.0,
"y": 9.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479859200000,
"game_event_id": 296,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -68,
"loc_y": 247,
"minutes_remaining": 9,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 31,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 31.8,
"y": 29.45
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479859200000,
"game_event_id": 407,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 27,
"loc_y": 252,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 22.3,
"y": 29.95
},
{
"action_type": "Driving Reverse Layup Shot",
"event_type": "Made Shot",
"game_date": 1479859200000,
"game_event_id": 497,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -7,
"loc_y": 2,
"minutes_remaining": 2,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 8,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 25.7,
"y": 4.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479859200000,
"game_event_id": 534,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -2,
"loc_y": 46,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 4,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 25.2,
"y": 9.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1479859200000,
"game_event_id": 584,
"game_id": "0021600212",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -153,
"loc_y": 2,
"minutes_remaining": 0,
"period": 5,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "MEM",
"x": 40.3,
"y": 4.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 2,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -125,
"loc_y": 11,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 44,
"shot_attempted_flag": 1,
"shot_distance": 12,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 37.5,
"y": 5.85
},
{
"action_type": "Putback Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 24,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -20,
"loc_y": 16,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 52,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 27.0,
"y": 6.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 37,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -37,
"loc_y": 0,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 24,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 28.7,
"y": 4.75
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 43,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -12,
"loc_y": 262,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 53,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 26.2,
"y": 30.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 46,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -4,
"loc_y": 267,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 33,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 25.4,
"y": 31.45
},
{
"action_type": "Driving Layup Shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 127,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -14,
"loc_y": 8,
"minutes_remaining": 0,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 28,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 26.4,
"y": 5.55
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 196,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -6,
"loc_y": 105,
"minutes_remaining": 6,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 6,
"shot_attempted_flag": 1,
"shot_distance": 10,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 25.6,
"y": 15.25
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 285,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -4,
"loc_y": 13,
"minutes_remaining": 10,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 30,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 25.4,
"y": 6.05
},
{
"action_type": "Alley Oop Layup shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 287,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -14,
"loc_y": 13,
"minutes_remaining": 9,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 53,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 26.4,
"y": 6.05
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 306,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 159,
"loc_y": 3,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 21,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 9.1,
"y": 5.05
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 394,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 137,
"loc_y": -21,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 44,
"shot_attempted_flag": 1,
"shot_distance": 13,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 11.3,
"y": 2.65
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 401,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -169,
"loc_y": 205,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 8,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 41.9,
"y": 25.25
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 475,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -4,
"loc_y": 31,
"minutes_remaining": 2,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 58,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 25.4,
"y": 7.85
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 483,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -12,
"loc_y": 3,
"minutes_remaining": 2,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 21,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 26.2,
"y": 5.05
},
{
"action_type": "Running Finger Roll Layup Shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 497,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -7,
"loc_y": 8,
"minutes_remaining": 1,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 13,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 25.7,
"y": 5.55
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480204800000,
"game_event_id": 512,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -16,
"loc_y": 13,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 21,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 26.6,
"y": 6.05
},
{
"action_type": "Turnaround Jump Shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 517,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 78,
"loc_y": 65,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 12,
"shot_attempted_flag": 1,
"shot_distance": 10,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 17.2,
"y": 11.25
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480204800000,
"game_event_id": 523,
"game_id": "0021600245",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 15,
"loc_y": 257,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 4,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "CLE",
"x": 23.5,
"y": 30.45
},
{
"action_type": "Tip Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 4,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -11,
"loc_y": 2,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 37,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 26.1,
"y": 4.95
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 5,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 12,
"loc_y": -11,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 35,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 23.8,
"y": 3.65
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 8,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -83,
"loc_y": 43,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 32,
"shot_attempted_flag": 1,
"shot_distance": 9,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 33.3,
"y": 9.05
},
{
"action_type": "Hook Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 23,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -60,
"loc_y": 47,
"minutes_remaining": 9,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 31,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 31.0,
"y": 9.45
},
{
"action_type": "Driving Dunk Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 26,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 57,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Alley Oop Layup shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 100,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -22,
"loc_y": 2,
"minutes_remaining": 2,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 40,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 27.2,
"y": 4.95
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 117,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -60,
"loc_y": 257,
"minutes_remaining": 1,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 26,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 31.0,
"y": 30.45
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 125,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -16,
"loc_y": 244,
"minutes_remaining": 0,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 43,
"shot_attempted_flag": 1,
"shot_distance": 24,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 26.6,
"y": 29.15
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 140,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -127,
"loc_y": 232,
"minutes_remaining": 11,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 20,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 37.7,
"y": 27.95
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 149,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 105,
"loc_y": -1,
"minutes_remaining": 10,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 25,
"shot_attempted_flag": 1,
"shot_distance": 10,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 14.5,
"y": 4.65
},
{
"action_type": "Hook Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 177,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 1,
"loc_y": 95,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 53,
"shot_attempted_flag": 1,
"shot_distance": 9,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 24.9,
"y": 14.25
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 183,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 1,
"loc_y": 252,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 10,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 24.9,
"y": 29.95
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 262,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -153,
"loc_y": -1,
"minutes_remaining": 11,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 30,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 40.3,
"y": 4.65
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 268,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 14,
"loc_y": 257,
"minutes_remaining": 10,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 27,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 23.6,
"y": 30.45
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 289,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 17,
"loc_y": 154,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 46,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 23.3,
"y": 20.15
},
{
"action_type": "Jump Bank Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 302,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 38,
"loc_y": 28,
"minutes_remaining": 7,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 59,
"shot_attempted_flag": 1,
"shot_distance": 4,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 21.2,
"y": 7.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 313,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 4,
"loc_y": 159,
"minutes_remaining": 6,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 47,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 24.6,
"y": 20.65
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480636800000,
"game_event_id": 317,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 12,
"loc_y": 116,
"minutes_remaining": 6,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 22,
"shot_attempted_flag": 1,
"shot_distance": 11,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 23.8,
"y": 16.35
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 418,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 12,
"loc_y": 2,
"minutes_remaining": 6,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 51,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 23.8,
"y": 4.95
},
{
"action_type": "Driving Layup Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 434,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -12,
"loc_y": 11,
"minutes_remaining": 5,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 38,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 26.2,
"y": 5.85
},
{
"action_type": "Dunk Shot",
"event_type": "Made Shot",
"game_date": 1480636800000,
"game_event_id": 443,
"game_id": "0021600282",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 4,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 18,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "ORL",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480896000000,
"game_event_id": 11,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -119,
"loc_y": 18,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 16,
"shot_attempted_flag": 1,
"shot_distance": 12,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 36.9,
"y": 6.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 36,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -88,
"loc_y": 156,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 36,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 33.8,
"y": 20.35
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480896000000,
"game_event_id": 172,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 86,
"loc_y": 154,
"minutes_remaining": 11,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 24,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 16.4,
"y": 20.15
},
{
"action_type": "Turnaround Fadeaway shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 175,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -143,
"loc_y": 43,
"minutes_remaining": 10,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 43,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 39.3,
"y": 9.05
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 194,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 27,
"loc_y": 0,
"minutes_remaining": 9,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 34,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 22.3,
"y": 4.75
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 324,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 30,
"loc_y": 75,
"minutes_remaining": 9,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 59,
"shot_attempted_flag": 1,
"shot_distance": 8,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 22.0,
"y": 12.25
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 346,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 9,
"loc_y": -15,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 10,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 24.1,
"y": 3.25
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 347,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 101,
"loc_y": -16,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 6,
"shot_attempted_flag": 1,
"shot_distance": 10,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 14.9,
"y": 3.15
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 418,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -133,
"loc_y": 223,
"minutes_remaining": 2,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 55,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 38.3,
"y": 27.05
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 454,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -2,
"loc_y": 77,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 10,
"shot_attempted_flag": 1,
"shot_distance": 7,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 25.2,
"y": 12.45
},
{
"action_type": "Layup Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 457,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 9,
"loc_y": 2,
"minutes_remaining": 0,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 1,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 24.1,
"y": 4.95
},
{
"action_type": "Turnaround Hook Shot",
"event_type": "Made Shot",
"game_date": 1480896000000,
"game_event_id": 479,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -6,
"loc_y": 67,
"minutes_remaining": 9,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 3,
"shot_attempted_flag": 1,
"shot_distance": 6,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 25.6,
"y": 11.45
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1480896000000,
"game_event_id": 483,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": 1,
"loc_y": 257,
"minutes_remaining": 8,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 12,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 24.9,
"y": 30.45
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480896000000,
"game_event_id": 558,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -7,
"loc_y": 267,
"minutes_remaining": 1,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 15,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 1,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 25.7,
"y": 31.45
},
{
"action_type": "Jump Shot",
"event_type": "Made Shot",
"game_date": 1480896000000,
"game_event_id": 565,
"game_id": "0021600304",
"grid_type": "Shot Chart Detail",
"htm": "PHI",
"loc_x": -214,
"loc_y": 38,
"minutes_remaining": 0,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 21,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "DEN",
"x": 46.4,
"y": 8.55
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 5,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": -37,
"loc_y": 36,
"minutes_remaining": 11,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 17,
"shot_attempted_flag": 1,
"shot_distance": 5,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 28.7,
"y": 8.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 8,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": -104,
"loc_y": 234,
"minutes_remaining": 10,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 56,
"shot_attempted_flag": 1,
"shot_distance": 25,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 35.4,
"y": 28.15
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 33,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 166,
"loc_y": 41,
"minutes_remaining": 8,
"period": 1,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 28,
"shot_attempted_flag": 1,
"shot_distance": 17,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "16-24 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 8.4,
"y": 8.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 182,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 30,
"loc_y": 259,
"minutes_remaining": 9,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 42,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 22.0,
"y": 30.65
},
{
"action_type": "Step Back Jump shot",
"event_type": "Made Shot",
"game_date": 1481155200000,
"game_event_id": 193,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 146,
"loc_y": 41,
"minutes_remaining": 8,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 52,
"shot_attempted_flag": 1,
"shot_distance": 15,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Right Side(R)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 10.4,
"y": 8.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 196,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": -238,
"loc_y": 16,
"minutes_remaining": 8,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 20,
"shot_attempted_flag": 1,
"shot_distance": 23,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Left Side(L)",
"shot_zone_basic": "Left Corner 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 48.8,
"y": 6.35
},
{
"action_type": "Dunk Shot",
"event_type": "Made Shot",
"game_date": 1481155200000,
"game_event_id": 199,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 0,
"loc_y": 1,
"minutes_remaining": 7,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 57,
"shot_attempted_flag": 1,
"shot_distance": 0,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 25.0,
"y": 4.85
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1481155200000,
"game_event_id": 260,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 9,
"loc_y": 16,
"minutes_remaining": 2,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 15,
"shot_attempted_flag": 1,
"shot_distance": 1,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 24.1,
"y": 6.35
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 274,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 179,
"loc_y": 336,
"minutes_remaining": 0,
"period": 2,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 0,
"shot_attempted_flag": 1,
"shot_distance": 38,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Right Side Center(RC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 7.1,
"y": 38.35
},
{
"action_type": "Hook Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 296,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": -17,
"loc_y": 65,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 46,
"shot_attempted_flag": 1,
"shot_distance": 6,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "In The Paint (Non-RA)",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 26.7,
"y": 11.25
},
{
"action_type": "Driving Layup Shot",
"event_type": "Made Shot",
"game_date": 1481155200000,
"game_event_id": 301,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 19,
"loc_y": 13,
"minutes_remaining": 8,
"period": 3,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 13,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 23.1,
"y": 6.05
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 405,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": -96,
"loc_y": 252,
"minutes_remaining": 10,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 51,
"shot_attempted_flag": 1,
"shot_distance": 26,
"shot_made_flag": 0,
"shot_type": "3PT Field Goal",
"shot_zone_area": "Left Side Center(LC)",
"shot_zone_basic": "Above the Break 3",
"shot_zone_range": "24+ ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 34.6,
"y": 29.95
},
{
"action_type": "Layup Shot",
"event_type": "Made Shot",
"game_date": 1481155200000,
"game_event_id": 419,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 14,
"loc_y": 21,
"minutes_remaining": 8,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 31,
"shot_attempted_flag": 1,
"shot_distance": 2,
"shot_made_flag": 1,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 23.6,
"y": 6.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 473,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 42,
"loc_y": 141,
"minutes_remaining": 4,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 41,
"shot_attempted_flag": 1,
"shot_distance": 14,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Mid-Range",
"shot_zone_range": "8-16 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 20.8,
"y": 18.85
},
{
"action_type": "Jump Shot",
"event_type": "Missed Shot",
"game_date": 1481155200000,
"game_event_id": 495,
"game_id": "0021600334",
"grid_type": "Shot Chart Detail",
"htm": "NOP",
"loc_x": 30,
"loc_y": 7,
"minutes_remaining": 2,
"period": 4,
"player_id": 203954,
"player_name": "Joel Embiid",
"seconds_remaining": 59,
"shot_attempted_flag": 1,
"shot_distance": 3,
"shot_made_flag": 0,
"shot_type": "2PT Field Goal",
"shot_zone_area": "Center(C)",
"shot_zone_basic": "Restricted Area",
"shot_zone_range": "Less Than 8 ft.",
"team_id": 1610612755,
"team_name": "Philadelphia 76ers",
"vtm": "PHI",
"x": 22.0,
"y": 5.45
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment