Skip to content

Instantly share code, notes, and snippets.

@whatnick
Created July 20, 2020 03:11
Show Gist options
  • Save whatnick/ad0cb63eda2fe67e51f4ec43450179b1 to your computer and use it in GitHub Desktop.
Save whatnick/ad0cb63eda2fe67e51f4ec43450179b1 to your computer and use it in GitHub Desktop.
OWS Profile with Py-Spy
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="1958" onload="init(evt)" viewBox="0 0 1200 1958" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = true;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = format_percent((parseFloat(e.attributes.x.value) - x) * ratio);
if (e.tagName == "text") {
e.attributes.x.value = format_percent(parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value) + (100 * 3 / frames.attributes.width.value));
}
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = format_percent(parseFloat(e.attributes.width.value) * ratio);
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
var ratio = 100 / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.001;
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="1958" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy</text><text id="details" x="10" y="1941.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="1941.00"> </text><svg id="frames" x="10" width="1180"><g><title>&lt;module&gt; (flask:5) (9 samples, 1.01%)</title><rect x="0.0000%" y="52" width="1.0067%" height="15" fill="rgb(227,0,7)"/><text x="0.2500%" y="62.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (9 samples, 1.01%)</title><rect x="0.0000%" y="68" width="1.0067%" height="15" fill="rgb(217,0,24)"/><text x="0.2500%" y="78.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:941) (9 samples, 1.01%)</title><rect x="0.0000%" y="84" width="1.0067%" height="15" fill="rgb(221,193,54)"/><text x="0.2500%" y="94.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (9 samples, 1.01%)</title><rect x="0.0000%" y="100" width="1.0067%" height="15" fill="rgb(248,212,6)"/><text x="0.2500%" y="110.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (9 samples, 1.01%)</title><rect x="0.0000%" y="116" width="1.0067%" height="15" fill="rgb(208,68,35)"/><text x="0.2500%" y="126.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (9 samples, 1.01%)</title><rect x="0.0000%" y="132" width="1.0067%" height="15" fill="rgb(232,128,0)"/><text x="0.2500%" y="142.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (9 samples, 1.01%)</title><rect x="0.0000%" y="148" width="1.0067%" height="15" fill="rgb(207,160,47)"/><text x="0.2500%" y="158.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (9 samples, 1.01%)</title><rect x="0.0000%" y="164" width="1.0067%" height="15" fill="rgb(228,23,34)"/><text x="0.2500%" y="174.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (9 samples, 1.01%)</title><rect x="0.0000%" y="180" width="1.0067%" height="15" fill="rgb(218,30,26)"/><text x="0.2500%" y="190.50"></text></g><g><title>invoke (click/core.py:1254) (13 samples, 1.45%)</title><rect x="1.0067%" y="116" width="1.4541%" height="15" fill="rgb(220,122,19)"/><text x="1.2567%" y="126.50"></text></g><g><title>resolve_command (click/core.py:1297) (13 samples, 1.45%)</title><rect x="1.0067%" y="132" width="1.4541%" height="15" fill="rgb(250,228,42)"/><text x="1.2567%" y="142.50"></text></g><g><title>get_command (flask/cli.py:527) (13 samples, 1.45%)</title><rect x="1.0067%" y="148" width="1.4541%" height="15" fill="rgb(240,193,28)"/><text x="1.2567%" y="158.50"></text></g><g><title>_load_plugin_commands (flask/cli.py:517) (13 samples, 1.45%)</title><rect x="1.0067%" y="164" width="1.4541%" height="15" fill="rgb(216,20,37)"/><text x="1.2567%" y="174.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (13 samples, 1.45%)</title><rect x="1.0067%" y="180" width="1.4541%" height="15" fill="rgb(206,188,39)"/><text x="1.2567%" y="190.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (13 samples, 1.45%)</title><rect x="1.0067%" y="196" width="1.4541%" height="15" fill="rgb(217,207,13)"/><text x="1.2567%" y="206.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (13 samples, 1.45%)</title><rect x="1.0067%" y="212" width="1.4541%" height="15" fill="rgb(231,73,38)"/><text x="1.2567%" y="222.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (13 samples, 1.45%)</title><rect x="1.0067%" y="228" width="1.4541%" height="15" fill="rgb(225,20,46)"/><text x="1.2567%" y="238.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (13 samples, 1.45%)</title><rect x="1.0067%" y="244" width="1.4541%" height="15" fill="rgb(210,31,41)"/><text x="1.2567%" y="254.50"></text></g><g><title>&lt;module&gt; (datacube/api/core.py:21) (9 samples, 1.01%)</title><rect x="2.9083%" y="980" width="1.0067%" height="15" fill="rgb(221,200,47)"/><text x="3.1583%" y="990.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (9 samples, 1.01%)</title><rect x="2.9083%" y="996" width="1.0067%" height="15" fill="rgb(226,26,5)"/><text x="3.1583%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (9 samples, 1.01%)</title><rect x="2.9083%" y="1012" width="1.0067%" height="15" fill="rgb(249,33,26)"/><text x="3.1583%" y="1022.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (9 samples, 1.01%)</title><rect x="2.9083%" y="1028" width="1.0067%" height="15" fill="rgb(235,183,28)"/><text x="3.1583%" y="1038.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (9 samples, 1.01%)</title><rect x="2.9083%" y="1044" width="1.0067%" height="15" fill="rgb(221,5,38)"/><text x="3.1583%" y="1054.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (9 samples, 1.01%)</title><rect x="2.9083%" y="1060" width="1.0067%" height="15" fill="rgb(247,18,42)"/><text x="3.1583%" y="1070.50"></text></g><g><title>&lt;module&gt; (datacube/index/__init__.py:6) (9 samples, 1.01%)</title><rect x="2.9083%" y="1076" width="1.0067%" height="15" fill="rgb(241,131,45)"/><text x="3.1583%" y="1086.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (9 samples, 1.01%)</title><rect x="2.9083%" y="1092" width="1.0067%" height="15" fill="rgb(249,31,29)"/><text x="3.1583%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (9 samples, 1.01%)</title><rect x="2.9083%" y="1108" width="1.0067%" height="15" fill="rgb(225,111,53)"/><text x="3.1583%" y="1118.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (9 samples, 1.01%)</title><rect x="2.9083%" y="1124" width="1.0067%" height="15" fill="rgb(238,160,17)"/><text x="3.1583%" y="1134.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (9 samples, 1.01%)</title><rect x="2.9083%" y="1140" width="1.0067%" height="15" fill="rgb(214,148,48)"/><text x="3.1583%" y="1150.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (9 samples, 1.01%)</title><rect x="2.9083%" y="1156" width="1.0067%" height="15" fill="rgb(232,36,49)"/><text x="3.1583%" y="1166.50"></text></g><g><title>&lt;module&gt; (datacube/index/_api.py:10) (9 samples, 1.01%)</title><rect x="2.9083%" y="1172" width="1.0067%" height="15" fill="rgb(209,103,24)"/><text x="3.1583%" y="1182.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (9 samples, 1.01%)</title><rect x="2.9083%" y="1188" width="1.0067%" height="15" fill="rgb(229,88,8)"/><text x="3.1583%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (9 samples, 1.01%)</title><rect x="2.9083%" y="1204" width="1.0067%" height="15" fill="rgb(213,181,19)"/><text x="3.1583%" y="1214.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (9 samples, 1.01%)</title><rect x="2.9083%" y="1220" width="1.0067%" height="15" fill="rgb(254,191,54)"/><text x="3.1583%" y="1230.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (9 samples, 1.01%)</title><rect x="2.9083%" y="1236" width="1.0067%" height="15" fill="rgb(241,83,37)"/><text x="3.1583%" y="1246.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (9 samples, 1.01%)</title><rect x="2.9083%" y="1252" width="1.0067%" height="15" fill="rgb(233,36,39)"/><text x="3.1583%" y="1262.50"></text></g><g><title>&lt;module&gt; (datacube/index/index.py:3) (9 samples, 1.01%)</title><rect x="2.9083%" y="1268" width="1.0067%" height="15" fill="rgb(226,3,54)"/><text x="3.1583%" y="1278.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (9 samples, 1.01%)</title><rect x="2.9083%" y="1284" width="1.0067%" height="15" fill="rgb(245,192,40)"/><text x="3.1583%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (9 samples, 1.01%)</title><rect x="2.9083%" y="1300" width="1.0067%" height="15" fill="rgb(238,167,29)"/><text x="3.1583%" y="1310.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (9 samples, 1.01%)</title><rect x="2.9083%" y="1316" width="1.0067%" height="15" fill="rgb(232,182,51)"/><text x="3.1583%" y="1326.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (9 samples, 1.01%)</title><rect x="2.9083%" y="1332" width="1.0067%" height="15" fill="rgb(231,60,39)"/><text x="3.1583%" y="1342.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (9 samples, 1.01%)</title><rect x="2.9083%" y="1348" width="1.0067%" height="15" fill="rgb(208,69,12)"/><text x="3.1583%" y="1358.50"></text></g><g><title>&lt;module&gt; (datacube/drivers/postgres/__init__.py:8) (9 samples, 1.01%)</title><rect x="2.9083%" y="1364" width="1.0067%" height="15" fill="rgb(235,93,37)"/><text x="3.1583%" y="1374.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (9 samples, 1.01%)</title><rect x="2.9083%" y="1380" width="1.0067%" height="15" fill="rgb(213,116,39)"/><text x="3.1583%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (9 samples, 1.01%)</title><rect x="2.9083%" y="1396" width="1.0067%" height="15" fill="rgb(222,207,29)"/><text x="3.1583%" y="1406.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (9 samples, 1.01%)</title><rect x="2.9083%" y="1412" width="1.0067%" height="15" fill="rgb(206,96,30)"/><text x="3.1583%" y="1422.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (9 samples, 1.01%)</title><rect x="2.9083%" y="1428" width="1.0067%" height="15" fill="rgb(218,138,4)"/><text x="3.1583%" y="1438.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (9 samples, 1.01%)</title><rect x="2.9083%" y="1444" width="1.0067%" height="15" fill="rgb(250,191,14)"/><text x="3.1583%" y="1454.50"></text></g><g><title>&lt;module&gt; (xarray/testing.py:5) (19 samples, 2.13%)</title><rect x="4.8098%" y="1204" width="2.1253%" height="15" fill="rgb(239,60,40)"/><text x="5.0598%" y="1214.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (19 samples, 2.13%)</title><rect x="4.8098%" y="1220" width="2.1253%" height="15" fill="rgb(206,27,48)"/><text x="5.0598%" y="1230.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (19 samples, 2.13%)</title><rect x="4.8098%" y="1236" width="2.1253%" height="15" fill="rgb(225,35,8)"/><text x="5.0598%" y="1246.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (19 samples, 2.13%)</title><rect x="4.8098%" y="1252" width="2.1253%" height="15" fill="rgb(250,213,24)"/><text x="5.0598%" y="1262.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (19 samples, 2.13%)</title><rect x="4.8098%" y="1268" width="2.1253%" height="15" fill="rgb(247,123,22)"/><text x="5.0598%" y="1278.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (19 samples, 2.13%)</title><rect x="4.8098%" y="1284" width="2.1253%" height="15" fill="rgb(231,138,38)"/><text x="5.0598%" y="1294.50">_..</text></g><g><title>&lt;module&gt; (pandas/__init__.py:55) (14 samples, 1.57%)</title><rect x="5.3691%" y="1300" width="1.5660%" height="15" fill="rgb(231,145,46)"/><text x="5.6191%" y="1310.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (14 samples, 1.57%)</title><rect x="5.3691%" y="1316" width="1.5660%" height="15" fill="rgb(251,118,11)"/><text x="5.6191%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (14 samples, 1.57%)</title><rect x="5.3691%" y="1332" width="1.5660%" height="15" fill="rgb(217,147,25)"/><text x="5.6191%" y="1342.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (14 samples, 1.57%)</title><rect x="5.3691%" y="1348" width="1.5660%" height="15" fill="rgb(247,81,37)"/><text x="5.6191%" y="1358.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (14 samples, 1.57%)</title><rect x="5.3691%" y="1364" width="1.5660%" height="15" fill="rgb(209,12,38)"/><text x="5.6191%" y="1374.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (14 samples, 1.57%)</title><rect x="5.3691%" y="1380" width="1.5660%" height="15" fill="rgb(227,1,9)"/><text x="5.6191%" y="1390.50"></text></g><g><title>&lt;module&gt; (xarray/testing.py:7) (13 samples, 1.45%)</title><rect x="6.9351%" y="1204" width="1.4541%" height="15" fill="rgb(248,47,43)"/><text x="7.1851%" y="1214.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1023) (13 samples, 1.45%)</title><rect x="6.9351%" y="1220" width="1.4541%" height="15" fill="rgb(221,10,30)"/><text x="7.1851%" y="1230.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (13 samples, 1.45%)</title><rect x="6.9351%" y="1236" width="1.4541%" height="15" fill="rgb(210,229,1)"/><text x="7.1851%" y="1246.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (13 samples, 1.45%)</title><rect x="6.9351%" y="1252" width="1.4541%" height="15" fill="rgb(222,148,37)"/><text x="7.1851%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (13 samples, 1.45%)</title><rect x="6.9351%" y="1268" width="1.4541%" height="15" fill="rgb(234,67,33)"/><text x="7.1851%" y="1278.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (13 samples, 1.45%)</title><rect x="6.9351%" y="1284" width="1.4541%" height="15" fill="rgb(247,98,35)"/><text x="7.1851%" y="1294.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (13 samples, 1.45%)</title><rect x="6.9351%" y="1300" width="1.4541%" height="15" fill="rgb(247,138,52)"/><text x="7.1851%" y="1310.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (13 samples, 1.45%)</title><rect x="6.9351%" y="1316" width="1.4541%" height="15" fill="rgb(213,79,30)"/><text x="7.1851%" y="1326.50"></text></g><g><title>&lt;module&gt; (xarray/core/duck_array_ops.py:14) (13 samples, 1.45%)</title><rect x="6.9351%" y="1332" width="1.4541%" height="15" fill="rgb(246,177,23)"/><text x="7.1851%" y="1342.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1023) (13 samples, 1.45%)</title><rect x="6.9351%" y="1348" width="1.4541%" height="15" fill="rgb(230,62,27)"/><text x="7.1851%" y="1358.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (13 samples, 1.45%)</title><rect x="6.9351%" y="1364" width="1.4541%" height="15" fill="rgb(216,154,8)"/><text x="7.1851%" y="1374.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (13 samples, 1.45%)</title><rect x="6.9351%" y="1380" width="1.4541%" height="15" fill="rgb(244,35,45)"/><text x="7.1851%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (13 samples, 1.45%)</title><rect x="6.9351%" y="1396" width="1.4541%" height="15" fill="rgb(251,115,12)"/><text x="7.1851%" y="1406.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (13 samples, 1.45%)</title><rect x="6.9351%" y="1412" width="1.4541%" height="15" fill="rgb(240,54,50)"/><text x="7.1851%" y="1422.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (13 samples, 1.45%)</title><rect x="6.9351%" y="1428" width="1.4541%" height="15" fill="rgb(233,84,52)"/><text x="7.1851%" y="1438.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (13 samples, 1.45%)</title><rect x="6.9351%" y="1444" width="1.4541%" height="15" fill="rgb(207,117,47)"/><text x="7.1851%" y="1454.50"></text></g><g><title>&lt;module&gt; (xarray/core/dask_array_compat.py:7) (13 samples, 1.45%)</title><rect x="6.9351%" y="1460" width="1.4541%" height="15" fill="rgb(249,43,39)"/><text x="7.1851%" y="1470.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (13 samples, 1.45%)</title><rect x="6.9351%" y="1476" width="1.4541%" height="15" fill="rgb(209,38,44)"/><text x="7.1851%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (13 samples, 1.45%)</title><rect x="6.9351%" y="1492" width="1.4541%" height="15" fill="rgb(236,212,23)"/><text x="7.1851%" y="1502.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (13 samples, 1.45%)</title><rect x="6.9351%" y="1508" width="1.4541%" height="15" fill="rgb(242,79,21)"/><text x="7.1851%" y="1518.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (13 samples, 1.45%)</title><rect x="6.9351%" y="1524" width="1.4541%" height="15" fill="rgb(211,96,35)"/><text x="7.1851%" y="1534.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (13 samples, 1.45%)</title><rect x="6.9351%" y="1540" width="1.4541%" height="15" fill="rgb(253,215,40)"/><text x="7.1851%" y="1550.50"></text></g><g><title>&lt;module&gt; (xarray/core/pycompat.py:7) (13 samples, 1.45%)</title><rect x="6.9351%" y="1556" width="1.4541%" height="15" fill="rgb(211,81,21)"/><text x="7.1851%" y="1566.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (13 samples, 1.45%)</title><rect x="6.9351%" y="1572" width="1.4541%" height="15" fill="rgb(208,190,38)"/><text x="7.1851%" y="1582.50"></text></g><g><title>&lt;module&gt; (distributed/__init__.py:3) (11 samples, 1.23%)</title><rect x="9.1723%" y="1732" width="1.2304%" height="15" fill="rgb(235,213,38)"/><text x="9.4223%" y="1742.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="9.1723%" y="1748" width="1.2304%" height="15" fill="rgb(237,122,38)"/><text x="9.4223%" y="1758.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (11 samples, 1.23%)</title><rect x="9.1723%" y="1764" width="1.2304%" height="15" fill="rgb(244,218,35)"/><text x="9.4223%" y="1774.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (11 samples, 1.23%)</title><rect x="9.1723%" y="1780" width="1.2304%" height="15" fill="rgb(240,68,47)"/><text x="9.4223%" y="1790.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (11 samples, 1.23%)</title><rect x="9.1723%" y="1796" width="1.2304%" height="15" fill="rgb(210,16,53)"/><text x="9.4223%" y="1806.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="9.1723%" y="1812" width="1.2304%" height="15" fill="rgb(235,124,12)"/><text x="9.4223%" y="1822.50"></text></g><g><title>&lt;module&gt; (distributed/actor.py:6) (10 samples, 1.12%)</title><rect x="9.2841%" y="1828" width="1.1186%" height="15" fill="rgb(224,169,11)"/><text x="9.5341%" y="1838.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (10 samples, 1.12%)</title><rect x="9.2841%" y="1844" width="1.1186%" height="15" fill="rgb(250,166,2)"/><text x="9.5341%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (10 samples, 1.12%)</title><rect x="9.2841%" y="1860" width="1.1186%" height="15" fill="rgb(242,216,29)"/><text x="9.5341%" y="1870.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (10 samples, 1.12%)</title><rect x="9.2841%" y="1876" width="1.1186%" height="15" fill="rgb(230,116,27)"/><text x="9.5341%" y="1886.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (10 samples, 1.12%)</title><rect x="9.2841%" y="1892" width="1.1186%" height="15" fill="rgb(228,99,48)"/><text x="9.5341%" y="1902.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (10 samples, 1.12%)</title><rect x="9.2841%" y="1908" width="1.1186%" height="15" fill="rgb(253,11,6)"/><text x="9.5341%" y="1918.50"></text></g><g><title>&lt;module&gt; (xarray/tutorial.py:14) (19 samples, 2.13%)</title><rect x="8.5011%" y="1204" width="2.1253%" height="15" fill="rgb(247,143,39)"/><text x="8.7511%" y="1214.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (19 samples, 2.13%)</title><rect x="8.5011%" y="1220" width="2.1253%" height="15" fill="rgb(236,97,10)"/><text x="8.7511%" y="1230.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:941) (19 samples, 2.13%)</title><rect x="8.5011%" y="1236" width="2.1253%" height="15" fill="rgb(233,208,19)"/><text x="8.7511%" y="1246.50">_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (19 samples, 2.13%)</title><rect x="8.5011%" y="1252" width="2.1253%" height="15" fill="rgb(216,164,2)"/><text x="8.7511%" y="1262.50">_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (19 samples, 2.13%)</title><rect x="8.5011%" y="1268" width="2.1253%" height="15" fill="rgb(220,129,5)"/><text x="8.7511%" y="1278.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (19 samples, 2.13%)</title><rect x="8.5011%" y="1284" width="2.1253%" height="15" fill="rgb(242,17,10)"/><text x="8.7511%" y="1294.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (19 samples, 2.13%)</title><rect x="8.5011%" y="1300" width="2.1253%" height="15" fill="rgb(242,107,0)"/><text x="8.7511%" y="1310.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (19 samples, 2.13%)</title><rect x="8.5011%" y="1316" width="2.1253%" height="15" fill="rgb(251,28,31)"/><text x="8.7511%" y="1326.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (19 samples, 2.13%)</title><rect x="8.5011%" y="1332" width="2.1253%" height="15" fill="rgb(233,223,10)"/><text x="8.7511%" y="1342.50">_..</text></g><g><title>&lt;module&gt; (xarray/backends/__init__.py:6) (19 samples, 2.13%)</title><rect x="8.5011%" y="1348" width="2.1253%" height="15" fill="rgb(215,21,27)"/><text x="8.7511%" y="1358.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (19 samples, 2.13%)</title><rect x="8.5011%" y="1364" width="2.1253%" height="15" fill="rgb(232,23,21)"/><text x="8.7511%" y="1374.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (19 samples, 2.13%)</title><rect x="8.5011%" y="1380" width="2.1253%" height="15" fill="rgb(244,5,23)"/><text x="8.7511%" y="1390.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (19 samples, 2.13%)</title><rect x="8.5011%" y="1396" width="2.1253%" height="15" fill="rgb(226,81,46)"/><text x="8.7511%" y="1406.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (19 samples, 2.13%)</title><rect x="8.5011%" y="1412" width="2.1253%" height="15" fill="rgb(247,70,30)"/><text x="8.7511%" y="1422.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (19 samples, 2.13%)</title><rect x="8.5011%" y="1428" width="2.1253%" height="15" fill="rgb(212,68,19)"/><text x="8.7511%" y="1438.50">_..</text></g><g><title>&lt;module&gt; (xarray/backends/cfgrib_.py:7) (19 samples, 2.13%)</title><rect x="8.5011%" y="1444" width="2.1253%" height="15" fill="rgb(240,187,13)"/><text x="8.7511%" y="1454.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (19 samples, 2.13%)</title><rect x="8.5011%" y="1460" width="2.1253%" height="15" fill="rgb(223,113,26)"/><text x="8.7511%" y="1470.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (19 samples, 2.13%)</title><rect x="8.5011%" y="1476" width="2.1253%" height="15" fill="rgb(206,192,2)"/><text x="8.7511%" y="1486.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (19 samples, 2.13%)</title><rect x="8.5011%" y="1492" width="2.1253%" height="15" fill="rgb(241,108,4)"/><text x="8.7511%" y="1502.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (19 samples, 2.13%)</title><rect x="8.5011%" y="1508" width="2.1253%" height="15" fill="rgb(247,173,49)"/><text x="8.7511%" y="1518.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (19 samples, 2.13%)</title><rect x="8.5011%" y="1524" width="2.1253%" height="15" fill="rgb(224,114,35)"/><text x="8.7511%" y="1534.50">_..</text></g><g><title>&lt;module&gt; (xarray/backends/locks.py:13) (19 samples, 2.13%)</title><rect x="8.5011%" y="1540" width="2.1253%" height="15" fill="rgb(245,159,27)"/><text x="8.7511%" y="1550.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (19 samples, 2.13%)</title><rect x="8.5011%" y="1556" width="2.1253%" height="15" fill="rgb(245,172,44)"/><text x="8.7511%" y="1566.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (19 samples, 2.13%)</title><rect x="8.5011%" y="1572" width="2.1253%" height="15" fill="rgb(236,23,11)"/><text x="8.7511%" y="1582.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (19 samples, 2.13%)</title><rect x="8.5011%" y="1588" width="2.1253%" height="15" fill="rgb(205,117,38)"/><text x="8.7511%" y="1598.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (19 samples, 2.13%)</title><rect x="8.5011%" y="1604" width="2.1253%" height="15" fill="rgb(237,72,25)"/><text x="8.7511%" y="1614.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (19 samples, 2.13%)</title><rect x="8.5011%" y="1620" width="2.1253%" height="15" fill="rgb(244,70,9)"/><text x="8.7511%" y="1630.50">_..</text></g><g><title>&lt;module&gt; (dask/distributed.py:3) (19 samples, 2.13%)</title><rect x="8.5011%" y="1636" width="2.1253%" height="15" fill="rgb(217,125,39)"/><text x="8.7511%" y="1646.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (19 samples, 2.13%)</title><rect x="8.5011%" y="1652" width="2.1253%" height="15" fill="rgb(235,36,10)"/><text x="8.7511%" y="1662.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (19 samples, 2.13%)</title><rect x="8.5011%" y="1668" width="2.1253%" height="15" fill="rgb(251,123,47)"/><text x="8.7511%" y="1678.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (19 samples, 2.13%)</title><rect x="8.5011%" y="1684" width="2.1253%" height="15" fill="rgb(221,13,13)"/><text x="8.7511%" y="1694.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (19 samples, 2.13%)</title><rect x="8.5011%" y="1700" width="2.1253%" height="15" fill="rgb(238,131,9)"/><text x="8.7511%" y="1710.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (19 samples, 2.13%)</title><rect x="8.5011%" y="1716" width="2.1253%" height="15" fill="rgb(211,50,8)"/><text x="8.7511%" y="1726.50">_..</text></g><g><title>&lt;module&gt; (datacube_ows/legend_generator.py:7) (73 samples, 8.17%)</title><rect x="2.5727%" y="452" width="8.1655%" height="15" fill="rgb(245,182,24)"/><text x="2.8227%" y="462.50">&lt;module&gt; (d..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (73 samples, 8.17%)</title><rect x="2.5727%" y="468" width="8.1655%" height="15" fill="rgb(242,14,37)"/><text x="2.8227%" y="478.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (73 samples, 8.17%)</title><rect x="2.5727%" y="484" width="8.1655%" height="15" fill="rgb(246,228,12)"/><text x="2.8227%" y="494.50">_find_and_l..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (73 samples, 8.17%)</title><rect x="2.5727%" y="500" width="8.1655%" height="15" fill="rgb(213,55,15)"/><text x="2.8227%" y="510.50">_load_unloc..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (73 samples, 8.17%)</title><rect x="2.5727%" y="516" width="8.1655%" height="15" fill="rgb(209,9,3)"/><text x="2.8227%" y="526.50">exec_module..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (73 samples, 8.17%)</title><rect x="2.5727%" y="532" width="8.1655%" height="15" fill="rgb(230,59,30)"/><text x="2.8227%" y="542.50">_call_with_..</text></g><g><title>&lt;module&gt; (datacube_ows/ogc_exceptions.py:5) (73 samples, 8.17%)</title><rect x="2.5727%" y="548" width="8.1655%" height="15" fill="rgb(209,121,21)"/><text x="2.8227%" y="558.50">&lt;module&gt; (d..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (73 samples, 8.17%)</title><rect x="2.5727%" y="564" width="8.1655%" height="15" fill="rgb(220,109,13)"/><text x="2.8227%" y="574.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (73 samples, 8.17%)</title><rect x="2.5727%" y="580" width="8.1655%" height="15" fill="rgb(232,18,1)"/><text x="2.8227%" y="590.50">_find_and_l..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (73 samples, 8.17%)</title><rect x="2.5727%" y="596" width="8.1655%" height="15" fill="rgb(215,41,42)"/><text x="2.8227%" y="606.50">_load_unloc..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (73 samples, 8.17%)</title><rect x="2.5727%" y="612" width="8.1655%" height="15" fill="rgb(224,123,36)"/><text x="2.8227%" y="622.50">exec_module..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (73 samples, 8.17%)</title><rect x="2.5727%" y="628" width="8.1655%" height="15" fill="rgb(240,125,3)"/><text x="2.8227%" y="638.50">_call_with_..</text></g><g><title>&lt;module&gt; (datacube_ows/ogc_utils.py:11) (72 samples, 8.05%)</title><rect x="2.6846%" y="644" width="8.0537%" height="15" fill="rgb(205,98,50)"/><text x="2.9346%" y="654.50">&lt;module&gt; (d..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (72 samples, 8.05%)</title><rect x="2.6846%" y="660" width="8.0537%" height="15" fill="rgb(205,185,37)"/><text x="2.9346%" y="670.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:941) (72 samples, 8.05%)</title><rect x="2.6846%" y="676" width="8.0537%" height="15" fill="rgb(238,207,15)"/><text x="2.9346%" y="686.50">_find_and_l..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (72 samples, 8.05%)</title><rect x="2.6846%" y="692" width="8.0537%" height="15" fill="rgb(213,199,42)"/><text x="2.9346%" y="702.50">_call_with_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (72 samples, 8.05%)</title><rect x="2.6846%" y="708" width="8.0537%" height="15" fill="rgb(235,201,11)"/><text x="2.9346%" y="718.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (72 samples, 8.05%)</title><rect x="2.6846%" y="724" width="8.0537%" height="15" fill="rgb(207,46,11)"/><text x="2.9346%" y="734.50">_find_and_l..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (72 samples, 8.05%)</title><rect x="2.6846%" y="740" width="8.0537%" height="15" fill="rgb(241,35,35)"/><text x="2.9346%" y="750.50">_load_unloc..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (72 samples, 8.05%)</title><rect x="2.6846%" y="756" width="8.0537%" height="15" fill="rgb(243,32,47)"/><text x="2.9346%" y="766.50">exec_module..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (72 samples, 8.05%)</title><rect x="2.6846%" y="772" width="8.0537%" height="15" fill="rgb(247,202,23)"/><text x="2.9346%" y="782.50">_call_with_..</text></g><g><title>&lt;module&gt; (datacube/__init__.py:25) (72 samples, 8.05%)</title><rect x="2.6846%" y="788" width="8.0537%" height="15" fill="rgb(219,102,11)"/><text x="2.9346%" y="798.50">&lt;module&gt; (d..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (72 samples, 8.05%)</title><rect x="2.6846%" y="804" width="8.0537%" height="15" fill="rgb(243,110,44)"/><text x="2.9346%" y="814.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (72 samples, 8.05%)</title><rect x="2.6846%" y="820" width="8.0537%" height="15" fill="rgb(222,74,54)"/><text x="2.9346%" y="830.50">_find_and_l..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (72 samples, 8.05%)</title><rect x="2.6846%" y="836" width="8.0537%" height="15" fill="rgb(216,99,12)"/><text x="2.9346%" y="846.50">_load_unloc..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (72 samples, 8.05%)</title><rect x="2.6846%" y="852" width="8.0537%" height="15" fill="rgb(226,22,26)"/><text x="2.9346%" y="862.50">exec_module..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (72 samples, 8.05%)</title><rect x="2.6846%" y="868" width="8.0537%" height="15" fill="rgb(217,163,10)"/><text x="2.9346%" y="878.50">_call_with_..</text></g><g><title>&lt;module&gt; (datacube/api/__init__.py:6) (72 samples, 8.05%)</title><rect x="2.6846%" y="884" width="8.0537%" height="15" fill="rgb(213,25,53)"/><text x="2.9346%" y="894.50">&lt;module&gt; (d..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (72 samples, 8.05%)</title><rect x="2.6846%" y="900" width="8.0537%" height="15" fill="rgb(252,105,26)"/><text x="2.9346%" y="910.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (72 samples, 8.05%)</title><rect x="2.6846%" y="916" width="8.0537%" height="15" fill="rgb(220,39,43)"/><text x="2.9346%" y="926.50">_find_and_l..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (72 samples, 8.05%)</title><rect x="2.6846%" y="932" width="8.0537%" height="15" fill="rgb(229,68,48)"/><text x="2.9346%" y="942.50">_load_unloc..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (72 samples, 8.05%)</title><rect x="2.6846%" y="948" width="8.0537%" height="15" fill="rgb(252,8,32)"/><text x="2.9346%" y="958.50">exec_module..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (72 samples, 8.05%)</title><rect x="2.6846%" y="964" width="8.0537%" height="15" fill="rgb(223,20,43)"/><text x="2.9346%" y="974.50">_call_with_..</text></g><g><title>&lt;module&gt; (datacube/api/core.py:8) (61 samples, 6.82%)</title><rect x="3.9150%" y="980" width="6.8233%" height="15" fill="rgb(229,81,49)"/><text x="4.1650%" y="990.50">&lt;module&gt; ..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (61 samples, 6.82%)</title><rect x="3.9150%" y="996" width="6.8233%" height="15" fill="rgb(236,28,36)"/><text x="4.1650%" y="1006.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (61 samples, 6.82%)</title><rect x="3.9150%" y="1012" width="6.8233%" height="15" fill="rgb(249,185,26)"/><text x="4.1650%" y="1022.50">_find_and..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (61 samples, 6.82%)</title><rect x="3.9150%" y="1028" width="6.8233%" height="15" fill="rgb(249,174,33)"/><text x="4.1650%" y="1038.50">_load_unl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (61 samples, 6.82%)</title><rect x="3.9150%" y="1044" width="6.8233%" height="15" fill="rgb(233,201,37)"/><text x="4.1650%" y="1054.50">exec_modu..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (61 samples, 6.82%)</title><rect x="3.9150%" y="1060" width="6.8233%" height="15" fill="rgb(221,78,26)"/><text x="4.1650%" y="1070.50">_call_wit..</text></g><g><title>&lt;module&gt; (xarray/__init__.py:3) (53 samples, 5.93%)</title><rect x="4.8098%" y="1076" width="5.9284%" height="15" fill="rgb(250,127,30)"/><text x="5.0598%" y="1086.50">&lt;module&gt;..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1023) (53 samples, 5.93%)</title><rect x="4.8098%" y="1092" width="5.9284%" height="15" fill="rgb(230,49,44)"/><text x="5.0598%" y="1102.50">_handle_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (53 samples, 5.93%)</title><rect x="4.8098%" y="1108" width="5.9284%" height="15" fill="rgb(229,67,23)"/><text x="5.0598%" y="1118.50">_call_wi..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (53 samples, 5.93%)</title><rect x="4.8098%" y="1124" width="5.9284%" height="15" fill="rgb(249,83,47)"/><text x="5.0598%" y="1134.50">_find_an..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (53 samples, 5.93%)</title><rect x="4.8098%" y="1140" width="5.9284%" height="15" fill="rgb(215,43,3)"/><text x="5.0598%" y="1150.50">_find_an..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (53 samples, 5.93%)</title><rect x="4.8098%" y="1156" width="5.9284%" height="15" fill="rgb(238,154,13)"/><text x="5.0598%" y="1166.50">_load_un..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (53 samples, 5.93%)</title><rect x="4.8098%" y="1172" width="5.9284%" height="15" fill="rgb(219,56,2)"/><text x="5.0598%" y="1182.50">exec_mod..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (53 samples, 5.93%)</title><rect x="4.8098%" y="1188" width="5.9284%" height="15" fill="rgb(233,0,4)"/><text x="5.0598%" y="1198.50">_call_wi..</text></g><g><title>&lt;module&gt; (datacube_ows/wms_utils.py:24) (22 samples, 2.46%)</title><rect x="10.8501%" y="548" width="2.4609%" height="15" fill="rgb(235,30,7)"/><text x="11.1001%" y="558.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (22 samples, 2.46%)</title><rect x="10.8501%" y="564" width="2.4609%" height="15" fill="rgb(250,79,13)"/><text x="11.1001%" y="574.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (22 samples, 2.46%)</title><rect x="10.8501%" y="580" width="2.4609%" height="15" fill="rgb(211,146,34)"/><text x="11.1001%" y="590.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (22 samples, 2.46%)</title><rect x="10.8501%" y="596" width="2.4609%" height="15" fill="rgb(228,22,38)"/><text x="11.1001%" y="606.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (22 samples, 2.46%)</title><rect x="10.8501%" y="612" width="2.4609%" height="15" fill="rgb(235,168,5)"/><text x="11.1001%" y="622.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (22 samples, 2.46%)</title><rect x="10.8501%" y="628" width="2.4609%" height="15" fill="rgb(221,155,16)"/><text x="11.1001%" y="638.50">_c..</text></g><g><title>&lt;module&gt; (datacube_ows/ows_configuration.py:20) (20 samples, 2.24%)</title><rect x="11.0738%" y="644" width="2.2371%" height="15" fill="rgb(215,215,53)"/><text x="11.3238%" y="654.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (20 samples, 2.24%)</title><rect x="11.0738%" y="660" width="2.2371%" height="15" fill="rgb(223,4,10)"/><text x="11.3238%" y="670.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (20 samples, 2.24%)</title><rect x="11.0738%" y="676" width="2.2371%" height="15" fill="rgb(234,103,6)"/><text x="11.3238%" y="686.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (20 samples, 2.24%)</title><rect x="11.0738%" y="692" width="2.2371%" height="15" fill="rgb(227,97,0)"/><text x="11.3238%" y="702.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (20 samples, 2.24%)</title><rect x="11.0738%" y="708" width="2.2371%" height="15" fill="rgb(234,150,53)"/><text x="11.3238%" y="718.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (20 samples, 2.24%)</title><rect x="11.0738%" y="724" width="2.2371%" height="15" fill="rgb(228,201,54)"/><text x="11.3238%" y="734.50">_..</text></g><g><title>&lt;module&gt; (datacube_ows/band_mapper.py:18) (14 samples, 1.57%)</title><rect x="11.7450%" y="740" width="1.5660%" height="15" fill="rgb(222,22,37)"/><text x="11.9950%" y="750.50"></text></g><g><title>wrapper (matplotlib/cbook/deprecation.py:296) (14 samples, 1.57%)</title><rect x="11.7450%" y="756" width="1.5660%" height="15" fill="rgb(237,53,32)"/><text x="11.9950%" y="766.50"></text></g><g><title>wrapper (matplotlib/cbook/deprecation.py:358) (14 samples, 1.57%)</title><rect x="11.7450%" y="772" width="1.5660%" height="15" fill="rgb(233,25,53)"/><text x="11.9950%" y="782.50"></text></g><g><title>use (matplotlib/__init__.py:1280) (14 samples, 1.57%)</title><rect x="11.7450%" y="788" width="1.5660%" height="15" fill="rgb(210,40,34)"/><text x="11.9950%" y="798.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1023) (14 samples, 1.57%)</title><rect x="11.7450%" y="804" width="1.5660%" height="15" fill="rgb(241,220,44)"/><text x="11.9950%" y="814.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (14 samples, 1.57%)</title><rect x="11.7450%" y="820" width="1.5660%" height="15" fill="rgb(235,28,35)"/><text x="11.9950%" y="830.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (14 samples, 1.57%)</title><rect x="11.7450%" y="836" width="1.5660%" height="15" fill="rgb(210,56,17)"/><text x="11.9950%" y="846.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (14 samples, 1.57%)</title><rect x="11.7450%" y="852" width="1.5660%" height="15" fill="rgb(224,130,29)"/><text x="11.9950%" y="862.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (14 samples, 1.57%)</title><rect x="11.7450%" y="868" width="1.5660%" height="15" fill="rgb(235,212,8)"/><text x="11.9950%" y="878.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (14 samples, 1.57%)</title><rect x="11.7450%" y="884" width="1.5660%" height="15" fill="rgb(223,33,50)"/><text x="11.9950%" y="894.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (14 samples, 1.57%)</title><rect x="11.7450%" y="900" width="1.5660%" height="15" fill="rgb(219,149,13)"/><text x="11.9950%" y="910.50"></text></g><g><title>&lt;module&gt; (datacube_ows/ogc.py:16) (98 samples, 10.96%)</title><rect x="2.5727%" y="356" width="10.9620%" height="15" fill="rgb(250,156,29)"/><text x="2.8227%" y="366.50">&lt;module&gt; (datacu..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (98 samples, 10.96%)</title><rect x="2.5727%" y="372" width="10.9620%" height="15" fill="rgb(216,193,19)"/><text x="2.8227%" y="382.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (98 samples, 10.96%)</title><rect x="2.5727%" y="388" width="10.9620%" height="15" fill="rgb(216,135,14)"/><text x="2.8227%" y="398.50">_find_and_load_u..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (98 samples, 10.96%)</title><rect x="2.5727%" y="404" width="10.9620%" height="15" fill="rgb(241,47,5)"/><text x="2.8227%" y="414.50">_load_unlocked (..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (98 samples, 10.96%)</title><rect x="2.5727%" y="420" width="10.9620%" height="15" fill="rgb(233,42,35)"/><text x="2.8227%" y="430.50">exec_module (&lt;fr..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (98 samples, 10.96%)</title><rect x="2.5727%" y="436" width="10.9620%" height="15" fill="rgb(231,13,6)"/><text x="2.8227%" y="446.50">_call_with_frame..</text></g><g><title>&lt;module&gt; (datacube_ows/legend_generator.py:8) (25 samples, 2.80%)</title><rect x="10.7383%" y="452" width="2.7964%" height="15" fill="rgb(207,181,40)"/><text x="10.9883%" y="462.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (25 samples, 2.80%)</title><rect x="10.7383%" y="468" width="2.7964%" height="15" fill="rgb(254,173,49)"/><text x="10.9883%" y="478.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (25 samples, 2.80%)</title><rect x="10.7383%" y="484" width="2.7964%" height="15" fill="rgb(221,1,38)"/><text x="10.9883%" y="494.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (25 samples, 2.80%)</title><rect x="10.7383%" y="500" width="2.7964%" height="15" fill="rgb(206,124,46)"/><text x="10.9883%" y="510.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (24 samples, 2.68%)</title><rect x="10.8501%" y="516" width="2.6846%" height="15" fill="rgb(249,21,11)"/><text x="11.1001%" y="526.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (24 samples, 2.68%)</title><rect x="10.8501%" y="532" width="2.6846%" height="15" fill="rgb(222,201,40)"/><text x="11.1001%" y="542.50">_c..</text></g><g><title>&lt;module&gt; (datacube_ows/ogc.py:5) (11 samples, 1.23%)</title><rect x="14.5414%" y="356" width="1.2304%" height="15" fill="rgb(235,61,29)"/><text x="14.7914%" y="366.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="14.5414%" y="372" width="1.2304%" height="15" fill="rgb(219,207,3)"/><text x="14.7914%" y="382.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (11 samples, 1.23%)</title><rect x="14.5414%" y="388" width="1.2304%" height="15" fill="rgb(222,56,46)"/><text x="14.7914%" y="398.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (11 samples, 1.23%)</title><rect x="14.5414%" y="404" width="1.2304%" height="15" fill="rgb(239,76,54)"/><text x="14.7914%" y="414.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (11 samples, 1.23%)</title><rect x="14.5414%" y="420" width="1.2304%" height="15" fill="rgb(231,124,27)"/><text x="14.7914%" y="430.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="436" width="1.2304%" height="15" fill="rgb(249,195,6)"/><text x="14.7914%" y="446.50"></text></g><g><title>&lt;module&gt; (sentry_sdk/__init__.py:1) (11 samples, 1.23%)</title><rect x="14.5414%" y="452" width="1.2304%" height="15" fill="rgb(237,174,47)"/><text x="14.7914%" y="462.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="14.5414%" y="468" width="1.2304%" height="15" fill="rgb(206,201,31)"/><text x="14.7914%" y="478.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (11 samples, 1.23%)</title><rect x="14.5414%" y="484" width="1.2304%" height="15" fill="rgb(231,57,52)"/><text x="14.7914%" y="494.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (11 samples, 1.23%)</title><rect x="14.5414%" y="500" width="1.2304%" height="15" fill="rgb(248,177,22)"/><text x="14.7914%" y="510.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (11 samples, 1.23%)</title><rect x="14.5414%" y="516" width="1.2304%" height="15" fill="rgb(215,211,37)"/><text x="14.7914%" y="526.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="532" width="1.2304%" height="15" fill="rgb(241,128,51)"/><text x="14.7914%" y="542.50"></text></g><g><title>&lt;module&gt; (sentry_sdk/hub.py:9) (11 samples, 1.23%)</title><rect x="14.5414%" y="548" width="1.2304%" height="15" fill="rgb(227,165,31)"/><text x="14.7914%" y="558.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="14.5414%" y="564" width="1.2304%" height="15" fill="rgb(228,167,24)"/><text x="14.7914%" y="574.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (11 samples, 1.23%)</title><rect x="14.5414%" y="580" width="1.2304%" height="15" fill="rgb(228,143,12)"/><text x="14.7914%" y="590.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (11 samples, 1.23%)</title><rect x="14.5414%" y="596" width="1.2304%" height="15" fill="rgb(249,149,8)"/><text x="14.7914%" y="606.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (11 samples, 1.23%)</title><rect x="14.5414%" y="612" width="1.2304%" height="15" fill="rgb(243,35,44)"/><text x="14.7914%" y="622.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="628" width="1.2304%" height="15" fill="rgb(246,89,9)"/><text x="14.7914%" y="638.50"></text></g><g><title>&lt;module&gt; (sentry_sdk/scope.py:7) (11 samples, 1.23%)</title><rect x="14.5414%" y="644" width="1.2304%" height="15" fill="rgb(233,213,13)"/><text x="14.7914%" y="654.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="14.5414%" y="660" width="1.2304%" height="15" fill="rgb(233,141,41)"/><text x="14.7914%" y="670.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (11 samples, 1.23%)</title><rect x="14.5414%" y="676" width="1.2304%" height="15" fill="rgb(239,167,4)"/><text x="14.7914%" y="686.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (11 samples, 1.23%)</title><rect x="14.5414%" y="692" width="1.2304%" height="15" fill="rgb(209,217,16)"/><text x="14.7914%" y="702.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (11 samples, 1.23%)</title><rect x="14.5414%" y="708" width="1.2304%" height="15" fill="rgb(219,88,35)"/><text x="14.7914%" y="718.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="724" width="1.2304%" height="15" fill="rgb(220,193,23)"/><text x="14.7914%" y="734.50"></text></g><g><title>&lt;module&gt; (sentry_sdk/utils.py:813) (11 samples, 1.23%)</title><rect x="14.5414%" y="740" width="1.2304%" height="15" fill="rgb(230,90,52)"/><text x="14.7914%" y="750.50"></text></g><g><title>_get_contextvars (sentry_sdk/utils.py:783) (11 samples, 1.23%)</title><rect x="14.5414%" y="756" width="1.2304%" height="15" fill="rgb(252,106,19)"/><text x="14.7914%" y="766.50"></text></g><g><title>_is_contextvars_broken (sentry_sdk/utils.py:744) (11 samples, 1.23%)</title><rect x="14.5414%" y="772" width="1.2304%" height="15" fill="rgb(206,74,20)"/><text x="14.7914%" y="782.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="14.5414%" y="788" width="1.2304%" height="15" fill="rgb(230,138,44)"/><text x="14.7914%" y="798.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:941) (11 samples, 1.23%)</title><rect x="14.5414%" y="804" width="1.2304%" height="15" fill="rgb(235,182,43)"/><text x="14.7914%" y="814.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="820" width="1.2304%" height="15" fill="rgb(242,16,51)"/><text x="14.7914%" y="830.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="14.5414%" y="836" width="1.2304%" height="15" fill="rgb(248,9,4)"/><text x="14.7914%" y="846.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (11 samples, 1.23%)</title><rect x="14.5414%" y="852" width="1.2304%" height="15" fill="rgb(210,31,22)"/><text x="14.7914%" y="862.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (11 samples, 1.23%)</title><rect x="14.5414%" y="868" width="1.2304%" height="15" fill="rgb(239,54,39)"/><text x="14.7914%" y="878.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (11 samples, 1.23%)</title><rect x="14.5414%" y="884" width="1.2304%" height="15" fill="rgb(230,99,41)"/><text x="14.7914%" y="894.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="900" width="1.2304%" height="15" fill="rgb(253,106,12)"/><text x="14.7914%" y="910.50"></text></g><g><title>&lt;module&gt; (eventlet/__init__.py:10) (11 samples, 1.23%)</title><rect x="14.5414%" y="916" width="1.2304%" height="15" fill="rgb(213,46,41)"/><text x="14.7914%" y="926.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1023) (11 samples, 1.23%)</title><rect x="14.5414%" y="932" width="1.2304%" height="15" fill="rgb(215,133,35)"/><text x="14.7914%" y="942.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="948" width="1.2304%" height="15" fill="rgb(213,28,5)"/><text x="14.7914%" y="958.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (11 samples, 1.23%)</title><rect x="14.5414%" y="964" width="1.2304%" height="15" fill="rgb(215,77,49)"/><text x="14.7914%" y="974.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (11 samples, 1.23%)</title><rect x="14.5414%" y="980" width="1.2304%" height="15" fill="rgb(248,100,22)"/><text x="14.7914%" y="990.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (11 samples, 1.23%)</title><rect x="14.5414%" y="996" width="1.2304%" height="15" fill="rgb(208,67,9)"/><text x="14.7914%" y="1006.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (11 samples, 1.23%)</title><rect x="14.5414%" y="1012" width="1.2304%" height="15" fill="rgb(219,133,21)"/><text x="14.7914%" y="1022.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (11 samples, 1.23%)</title><rect x="14.5414%" y="1028" width="1.2304%" height="15" fill="rgb(246,46,29)"/><text x="14.7914%" y="1038.50"></text></g><g><title>&lt;module&gt; (eventlet/convenience.py:7) (10 samples, 1.12%)</title><rect x="14.6532%" y="1044" width="1.1186%" height="15" fill="rgb(246,185,52)"/><text x="14.9032%" y="1054.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1023) (10 samples, 1.12%)</title><rect x="14.6532%" y="1060" width="1.1186%" height="15" fill="rgb(252,136,11)"/><text x="14.9032%" y="1070.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (10 samples, 1.12%)</title><rect x="14.6532%" y="1076" width="1.1186%" height="15" fill="rgb(219,138,53)"/><text x="14.9032%" y="1086.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (10 samples, 1.12%)</title><rect x="14.6532%" y="1092" width="1.1186%" height="15" fill="rgb(211,51,23)"/><text x="14.9032%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (10 samples, 1.12%)</title><rect x="14.6532%" y="1108" width="1.1186%" height="15" fill="rgb(247,221,28)"/><text x="14.9032%" y="1118.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (10 samples, 1.12%)</title><rect x="14.6532%" y="1124" width="1.1186%" height="15" fill="rgb(251,222,45)"/><text x="14.9032%" y="1134.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (10 samples, 1.12%)</title><rect x="14.6532%" y="1140" width="1.1186%" height="15" fill="rgb(217,162,53)"/><text x="14.9032%" y="1150.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (10 samples, 1.12%)</title><rect x="14.6532%" y="1156" width="1.1186%" height="15" fill="rgb(229,93,14)"/><text x="14.9032%" y="1166.50"></text></g><g><title>&lt;module&gt; (eventlet/green/socket.py:21) (10 samples, 1.12%)</title><rect x="14.6532%" y="1172" width="1.1186%" height="15" fill="rgb(209,67,49)"/><text x="14.9032%" y="1182.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1023) (10 samples, 1.12%)</title><rect x="14.6532%" y="1188" width="1.1186%" height="15" fill="rgb(213,87,29)"/><text x="14.9032%" y="1198.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (10 samples, 1.12%)</title><rect x="14.6532%" y="1204" width="1.1186%" height="15" fill="rgb(205,151,52)"/><text x="14.9032%" y="1214.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (10 samples, 1.12%)</title><rect x="14.6532%" y="1220" width="1.1186%" height="15" fill="rgb(253,215,39)"/><text x="14.9032%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (10 samples, 1.12%)</title><rect x="14.6532%" y="1236" width="1.1186%" height="15" fill="rgb(221,220,41)"/><text x="14.9032%" y="1246.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (10 samples, 1.12%)</title><rect x="14.6532%" y="1252" width="1.1186%" height="15" fill="rgb(218,133,21)"/><text x="14.9032%" y="1262.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (10 samples, 1.12%)</title><rect x="14.6532%" y="1268" width="1.1186%" height="15" fill="rgb(221,193,43)"/><text x="14.9032%" y="1278.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (10 samples, 1.12%)</title><rect x="14.6532%" y="1284" width="1.1186%" height="15" fill="rgb(240,128,52)"/><text x="14.9032%" y="1294.50"></text></g><g><title>&lt;module&gt; (datacube_ows/ogc.py:6) (15 samples, 1.68%)</title><rect x="15.7718%" y="356" width="1.6779%" height="15" fill="rgb(253,114,12)"/><text x="16.0218%" y="366.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (15 samples, 1.68%)</title><rect x="15.7718%" y="372" width="1.6779%" height="15" fill="rgb(215,223,47)"/><text x="16.0218%" y="382.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:941) (15 samples, 1.68%)</title><rect x="15.7718%" y="388" width="1.6779%" height="15" fill="rgb(248,225,23)"/><text x="16.0218%" y="398.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (15 samples, 1.68%)</title><rect x="15.7718%" y="404" width="1.6779%" height="15" fill="rgb(250,108,0)"/><text x="16.0218%" y="414.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (15 samples, 1.68%)</title><rect x="15.7718%" y="420" width="1.6779%" height="15" fill="rgb(228,208,7)"/><text x="16.0218%" y="430.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (15 samples, 1.68%)</title><rect x="15.7718%" y="436" width="1.6779%" height="15" fill="rgb(244,45,10)"/><text x="16.0218%" y="446.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (15 samples, 1.68%)</title><rect x="15.7718%" y="452" width="1.6779%" height="15" fill="rgb(207,125,25)"/><text x="16.0218%" y="462.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (15 samples, 1.68%)</title><rect x="15.7718%" y="468" width="1.6779%" height="15" fill="rgb(210,195,18)"/><text x="16.0218%" y="478.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (15 samples, 1.68%)</title><rect x="15.7718%" y="484" width="1.6779%" height="15" fill="rgb(249,80,12)"/><text x="16.0218%" y="494.50"></text></g><g><title>&lt;module&gt; (rasterio/__init__.py:22) (15 samples, 1.68%)</title><rect x="15.7718%" y="500" width="1.6779%" height="15" fill="rgb(221,65,9)"/><text x="16.0218%" y="510.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (15 samples, 1.68%)</title><rect x="15.7718%" y="516" width="1.6779%" height="15" fill="rgb(235,49,36)"/><text x="16.0218%" y="526.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (15 samples, 1.68%)</title><rect x="15.7718%" y="532" width="1.6779%" height="15" fill="rgb(225,32,20)"/><text x="16.0218%" y="542.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (13 samples, 1.45%)</title><rect x="15.9955%" y="548" width="1.4541%" height="15" fill="rgb(215,141,46)"/><text x="16.2455%" y="558.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:929) (13 samples, 1.45%)</title><rect x="15.9955%" y="564" width="1.4541%" height="15" fill="rgb(250,160,47)"/><text x="16.2455%" y="574.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (13 samples, 1.45%)</title><rect x="15.9955%" y="580" width="1.4541%" height="15" fill="rgb(216,222,40)"/><text x="16.2455%" y="590.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (13 samples, 1.45%)</title><rect x="15.9955%" y="596" width="1.4541%" height="15" fill="rgb(234,217,39)"/><text x="16.2455%" y="606.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (13 samples, 1.45%)</title><rect x="15.9955%" y="612" width="1.4541%" height="15" fill="rgb(207,178,40)"/><text x="16.2455%" y="622.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (13 samples, 1.45%)</title><rect x="15.9955%" y="628" width="1.4541%" height="15" fill="rgb(221,136,13)"/><text x="16.2455%" y="638.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:929) (10 samples, 1.12%)</title><rect x="16.3311%" y="644" width="1.1186%" height="15" fill="rgb(249,199,10)"/><text x="16.5811%" y="654.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (10 samples, 1.12%)</title><rect x="16.3311%" y="660" width="1.1186%" height="15" fill="rgb(249,222,13)"/><text x="16.5811%" y="670.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (10 samples, 1.12%)</title><rect x="16.3311%" y="676" width="1.1186%" height="15" fill="rgb(244,185,38)"/><text x="16.5811%" y="686.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (10 samples, 1.12%)</title><rect x="16.3311%" y="692" width="1.1186%" height="15" fill="rgb(236,202,9)"/><text x="16.5811%" y="702.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (10 samples, 1.12%)</title><rect x="16.3311%" y="708" width="1.1186%" height="15" fill="rgb(250,229,37)"/><text x="16.5811%" y="718.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (10 samples, 1.12%)</title><rect x="16.3311%" y="724" width="1.1186%" height="15" fill="rgb(206,174,23)"/><text x="16.5811%" y="734.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (10 samples, 1.12%)</title><rect x="16.3311%" y="740" width="1.1186%" height="15" fill="rgb(211,33,43)"/><text x="16.5811%" y="750.50"></text></g><g><title>&lt;module&gt; (flask:8) (148 samples, 16.55%)</title><rect x="1.0067%" y="52" width="16.5548%" height="15" fill="rgb(245,58,50)"/><text x="1.2567%" y="62.50">&lt;module&gt; (flask:8)</text></g><g><title>main (flask/cli.py:967) (148 samples, 16.55%)</title><rect x="1.0067%" y="68" width="16.5548%" height="15" fill="rgb(244,68,36)"/><text x="1.2567%" y="78.50">main (flask/cli.py:967)</text></g><g><title>main (flask/cli.py:586) (148 samples, 16.55%)</title><rect x="1.0067%" y="84" width="16.5548%" height="15" fill="rgb(232,229,15)"/><text x="1.2567%" y="94.50">main (flask/cli.py:586)</text></g><g><title>main (click/core.py:782) (148 samples, 16.55%)</title><rect x="1.0067%" y="100" width="16.5548%" height="15" fill="rgb(254,30,23)"/><text x="1.2567%" y="110.50">main (click/core.py:782)</text></g><g><title>invoke (click/core.py:1259) (135 samples, 15.10%)</title><rect x="2.4609%" y="116" width="15.1007%" height="15" fill="rgb(235,160,14)"/><text x="2.7109%" y="126.50">invoke (click/core.py:1..</text></g><g><title>invoke (click/core.py:1066) (135 samples, 15.10%)</title><rect x="2.4609%" y="132" width="15.1007%" height="15" fill="rgb(212,155,44)"/><text x="2.7109%" y="142.50">invoke (click/core.py:1..</text></g><g><title>invoke (click/core.py:610) (135 samples, 15.10%)</title><rect x="2.4609%" y="148" width="15.1007%" height="15" fill="rgb(226,2,50)"/><text x="2.7109%" y="158.50">invoke (click/core.py:6..</text></g><g><title>new_func (click/decorators.py:73) (135 samples, 15.10%)</title><rect x="2.4609%" y="164" width="15.1007%" height="15" fill="rgb(234,177,6)"/><text x="2.7109%" y="174.50">new_func (click/decorat..</text></g><g><title>invoke (click/core.py:610) (135 samples, 15.10%)</title><rect x="2.4609%" y="180" width="15.1007%" height="15" fill="rgb(217,24,9)"/><text x="2.7109%" y="190.50">invoke (click/core.py:6..</text></g><g><title>run_command (flask/cli.py:848) (134 samples, 14.99%)</title><rect x="2.5727%" y="196" width="14.9888%" height="15" fill="rgb(220,13,46)"/><text x="2.8227%" y="206.50">run_command (flask/cli...</text></g><g><title>__init__ (flask/cli.py:305) (134 samples, 14.99%)</title><rect x="2.5727%" y="212" width="14.9888%" height="15" fill="rgb(239,221,27)"/><text x="2.8227%" y="222.50">__init__ (flask/cli.py:..</text></g><g><title>_load_unlocked (flask/cli.py:330) (134 samples, 14.99%)</title><rect x="2.5727%" y="228" width="14.9888%" height="15" fill="rgb(222,198,25)"/><text x="2.8227%" y="238.50">_load_unlocked (flask/c..</text></g><g><title>load_app (flask/cli.py:388) (134 samples, 14.99%)</title><rect x="2.5727%" y="244" width="14.9888%" height="15" fill="rgb(211,99,13)"/><text x="2.8227%" y="254.50">load_app (flask/cli.py:..</text></g><g><title>locate_app (flask/cli.py:240) (134 samples, 14.99%)</title><rect x="2.5727%" y="260" width="14.9888%" height="15" fill="rgb(232,111,31)"/><text x="2.8227%" y="270.50">locate_app (flask/cli.p..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:971) (134 samples, 14.99%)</title><rect x="2.5727%" y="276" width="14.9888%" height="15" fill="rgb(245,82,37)"/><text x="2.8227%" y="286.50">_find_and_load (&lt;frozen..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:955) (134 samples, 14.99%)</title><rect x="2.5727%" y="292" width="14.9888%" height="15" fill="rgb(227,149,46)"/><text x="2.8227%" y="302.50">_find_and_load_unlocked..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:665) (134 samples, 14.99%)</title><rect x="2.5727%" y="308" width="14.9888%" height="15" fill="rgb(218,36,50)"/><text x="2.8227%" y="318.50">_load_unlocked (&lt;frozen..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:678) (134 samples, 14.99%)</title><rect x="2.5727%" y="324" width="14.9888%" height="15" fill="rgb(226,80,48)"/><text x="2.8227%" y="334.50">exec_module (&lt;frozen im..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (134 samples, 14.99%)</title><rect x="2.5727%" y="340" width="14.9888%" height="15" fill="rgb(238,224,15)"/><text x="2.8227%" y="350.50">_call_with_frames_remov..</text></g><g><title>__init__ (datacube_ows/ows_configuration.py:784) (9 samples, 1.01%)</title><rect x="17.5615%" y="372" width="1.0067%" height="15" fill="rgb(241,136,10)"/><text x="17.8115%" y="382.50"></text></g><g><title>read_config (datacube_ows/ows_configuration.py:46) (9 samples, 1.01%)</title><rect x="17.5615%" y="388" width="1.0067%" height="15" fill="rgb(208,32,45)"/><text x="17.8115%" y="398.50"></text></g><g><title>cfg_expand (datacube_ows/ows_configuration.py:92) (9 samples, 1.01%)</title><rect x="17.5615%" y="404" width="1.0067%" height="15" fill="rgb(207,135,9)"/><text x="17.8115%" y="414.50"></text></g><g><title>&lt;dictcomp&gt; (datacube_ows/ows_configuration.py:92) (9 samples, 1.01%)</title><rect x="17.5615%" y="420" width="1.0067%" height="15" fill="rgb(206,86,44)"/><text x="17.8115%" y="430.50"></text></g><g><title>parse_layers (datacube_ows/ows_configuration.py:898) (13 samples, 1.45%)</title><rect x="18.5682%" y="388" width="1.4541%" height="15" fill="rgb(245,177,15)"/><text x="18.8182%" y="398.50"></text></g><g><title>__enter__ (contextlib.py:81) (13 samples, 1.45%)</title><rect x="18.5682%" y="404" width="1.4541%" height="15" fill="rgb(206,64,50)"/><text x="18.8182%" y="414.50"></text></g><g><title>cube (datacube_ows/cube_pool.py:71) (13 samples, 1.45%)</title><rect x="18.5682%" y="420" width="1.4541%" height="15" fill="rgb(234,36,40)"/><text x="18.8182%" y="430.50"></text></g><g><title>get_cube (datacube_ows/cube_pool.py:56) (13 samples, 1.45%)</title><rect x="18.5682%" y="436" width="1.4541%" height="15" fill="rgb(213,64,8)"/><text x="18.8182%" y="446.50"></text></g><g><title>get_cube (datacube_ows/cube_pool.py:31) (13 samples, 1.45%)</title><rect x="18.5682%" y="452" width="1.4541%" height="15" fill="rgb(210,75,36)"/><text x="18.8182%" y="462.50"></text></g><g><title>_new_cube (datacube_ows/cube_pool.py:48) (13 samples, 1.45%)</title><rect x="18.5682%" y="468" width="1.4541%" height="15" fill="rgb(229,88,21)"/><text x="18.8182%" y="478.50"></text></g><g><title>__init__ (datacube/api/core.py:84) (13 samples, 1.45%)</title><rect x="18.5682%" y="484" width="1.4541%" height="15" fill="rgb(252,204,47)"/><text x="18.8182%" y="494.50"></text></g><g><title>index_connect (datacube/index/_api.py:33) (13 samples, 1.45%)</title><rect x="18.5682%" y="500" width="1.4541%" height="15" fill="rgb(208,77,27)"/><text x="18.8182%" y="510.50"></text></g><g><title>index_driver_by_name (datacube/drivers/indexes.py:55) (13 samples, 1.45%)</title><rect x="18.5682%" y="516" width="1.4541%" height="15" fill="rgb(221,76,26)"/><text x="18.8182%" y="526.50"></text></g><g><title>index_cache (datacube/drivers/indexes.py:40) (13 samples, 1.45%)</title><rect x="18.5682%" y="532" width="1.4541%" height="15" fill="rgb(225,139,18)"/><text x="18.8182%" y="542.50"></text></g><g><title>singleton_setup (datacube/drivers/_tools.py:29) (13 samples, 1.45%)</title><rect x="18.5682%" y="548" width="1.4541%" height="15" fill="rgb(230,137,11)"/><text x="18.8182%" y="558.50"></text></g><g><title>__init__ (datacube/drivers/indexes.py:9) (13 samples, 1.45%)</title><rect x="18.5682%" y="564" width="1.4541%" height="15" fill="rgb(212,28,1)"/><text x="18.8182%" y="574.50"></text></g><g><title>load_drivers (datacube/drivers/driver_cache.py:56) (13 samples, 1.45%)</title><rect x="18.5682%" y="580" width="1.4541%" height="15" fill="rgb(248,164,17)"/><text x="18.8182%" y="590.50"></text></g><g><title>&lt;genexpr&gt; (datacube/drivers/driver_cache.py:56) (13 samples, 1.45%)</title><rect x="18.5682%" y="596" width="1.4541%" height="15" fill="rgb(222,171,42)"/><text x="18.8182%" y="606.50"></text></g><g><title>resolve_all (datacube/drivers/driver_cache.py:52) (13 samples, 1.45%)</title><rect x="18.5682%" y="612" width="1.4541%" height="15" fill="rgb(243,84,45)"/><text x="18.8182%" y="622.50"></text></g><g><title>safe_load (datacube/drivers/driver_cache.py:28) (13 samples, 1.45%)</title><rect x="18.5682%" y="628" width="1.4541%" height="15" fill="rgb(252,49,23)"/><text x="18.8182%" y="638.50"></text></g><g><title>load (pkg_resources/__init__.py:2449) (13 samples, 1.45%)</title><rect x="18.5682%" y="644" width="1.4541%" height="15" fill="rgb(215,19,7)"/><text x="18.8182%" y="654.50"></text></g><g><title>require (pkg_resources/__init__.py:2472) (9 samples, 1.01%)</title><rect x="19.0157%" y="660" width="1.0067%" height="15" fill="rgb(238,81,41)"/><text x="19.2657%" y="670.50"></text></g><g><title>resolve (pkg_resources/__init__.py:795) (9 samples, 1.01%)</title><rect x="19.0157%" y="676" width="1.0067%" height="15" fill="rgb(210,199,37)"/><text x="19.2657%" y="686.50"></text></g><g><title>requires (pkg_resources/__init__.py:2743) (9 samples, 1.01%)</title><rect x="19.0157%" y="692" width="1.0067%" height="15" fill="rgb(244,192,49)"/><text x="19.2657%" y="702.50"></text></g><g><title>_dep_map (pkg_resources/__init__.py:3030) (9 samples, 1.01%)</title><rect x="19.0157%" y="708" width="1.0067%" height="15" fill="rgb(226,211,11)"/><text x="19.2657%" y="718.50"></text></g><g><title>parse_ows_layer (datacube_ows/ows_configuration.py:711) (18 samples, 2.01%)</title><rect x="20.0224%" y="468" width="2.0134%" height="15" fill="rgb(236,162,54)"/><text x="20.2724%" y="478.50">p..</text></g><g><title>_strptime_datetime (_strptime.py:565) (17 samples, 1.90%)</title><rect x="22.7069%" y="548" width="1.9016%" height="15" fill="rgb(220,229,9)"/><text x="22.9569%" y="558.50">_..</text></g><g><title>get_ranges (datacube_ows/product_ranges.py:395) (20 samples, 2.24%)</title><rect x="22.5951%" y="516" width="2.2371%" height="15" fill="rgb(250,87,22)"/><text x="22.8451%" y="526.50">g..</text></g><g><title>&lt;listcomp&gt; (datacube_ows/product_ranges.py:395) (20 samples, 2.24%)</title><rect x="22.5951%" y="532" width="2.2371%" height="15" fill="rgb(239,43,17)"/><text x="22.8451%" y="542.50">&lt;..</text></g><g><title>__init__ (datacube_ows/ows_configuration.py:325) (23 samples, 2.57%)</title><rect x="22.4832%" y="484" width="2.5727%" height="15" fill="rgb(231,177,25)"/><text x="22.7332%" y="494.50">__..</text></g><g><title>force_range_update (datacube_ows/ows_configuration.py:616) (23 samples, 2.57%)</title><rect x="22.4832%" y="500" width="2.5727%" height="15" fill="rgb(219,179,1)"/><text x="22.7332%" y="510.50">fo..</text></g><g><title>execute (sqlalchemy/engine/base.py:984) (11 samples, 1.23%)</title><rect x="25.5034%" y="580" width="1.2304%" height="15" fill="rgb(238,219,53)"/><text x="25.7534%" y="590.50"></text></g><g><title>_execute_on_connection (sqlalchemy/sql/elements.py:293) (11 samples, 1.23%)</title><rect x="25.5034%" y="596" width="1.2304%" height="15" fill="rgb(232,167,36)"/><text x="25.7534%" y="606.50"></text></g><g><title>_execute_clauseelement (sqlalchemy/engine/base.py:1103) (9 samples, 1.01%)</title><rect x="25.7271%" y="612" width="1.0067%" height="15" fill="rgb(244,19,51)"/><text x="25.9771%" y="622.50"></text></g><g><title>fetchall (sqlalchemy/engine/result.py:1273) (52 samples, 5.82%)</title><rect x="26.7338%" y="580" width="5.8166%" height="15" fill="rgb(224,6,22)"/><text x="26.9838%" y="590.50">fetchal..</text></g><g><title>_fetchall_impl (sqlalchemy/engine/result.py:1219) (52 samples, 5.82%)</title><rect x="26.7338%" y="596" width="5.8166%" height="15" fill="rgb(224,145,5)"/><text x="26.9838%" y="606.50">_fetcha..</text></g><g><title>typecast_json (psycopg2/_json.py:167) (51 samples, 5.70%)</title><rect x="26.8456%" y="612" width="5.7047%" height="15" fill="rgb(234,130,49)"/><text x="27.0956%" y="622.50">typecas..</text></g><g><title>loads (json/__init__.py:354) (50 samples, 5.59%)</title><rect x="26.9575%" y="628" width="5.5928%" height="15" fill="rgb(254,6,2)"/><text x="27.2075%" y="638.50">loads (..</text></g><g><title>decode (json/decoder.py:339) (49 samples, 5.48%)</title><rect x="27.0694%" y="644" width="5.4810%" height="15" fill="rgb(208,96,46)"/><text x="27.3194%" y="654.50">decode ..</text></g><g><title>raw_decode (json/decoder.py:355) (48 samples, 5.37%)</title><rect x="27.1812%" y="660" width="5.3691%" height="15" fill="rgb(239,3,39)"/><text x="27.4312%" y="670.50">raw_dec..</text></g><g><title>_list_measurements (datacube/api/core.py:125) (64 samples, 7.16%)</title><rect x="25.5034%" y="532" width="7.1588%" height="15" fill="rgb(233,210,1)"/><text x="25.7534%" y="542.50">_list_meas..</text></g><g><title>get_all (datacube/index/_products.py:369) (64 samples, 7.16%)</title><rect x="25.5034%" y="548" width="7.1588%" height="15" fill="rgb(244,137,37)"/><text x="25.7534%" y="558.50">get_all (d..</text></g><g><title>get_all_products (datacube/drivers/postgres/_api.py:902) (64 samples, 7.16%)</title><rect x="25.5034%" y="564" width="7.1588%" height="15" fill="rgb(240,136,2)"/><text x="25.7534%" y="574.50">get_all_pr..</text></g><g><title>list_measurements (datacube/api/core.py:116) (91 samples, 10.18%)</title><rect x="25.5034%" y="516" width="10.1790%" height="15" fill="rgb(239,18,37)"/><text x="25.7534%" y="526.50">list_measuremen..</text></g><g><title>_list_measurements (datacube/api/core.py:135) (9 samples, 1.01%)</title><rect x="34.6756%" y="532" width="1.0067%" height="15" fill="rgb(218,185,22)"/><text x="34.9256%" y="542.50"></text></g><g><title>from_dict (pandas/core/frame.py:1247) (12 samples, 1.34%)</title><rect x="35.6823%" y="532" width="1.3423%" height="15" fill="rgb(225,218,4)"/><text x="35.9323%" y="542.50"></text></g><g><title>__init__ (datacube_ows/ows_configuration.py:137) (123 samples, 13.76%)</title><rect x="25.0559%" y="500" width="13.7584%" height="15" fill="rgb(230,182,32)"/><text x="25.3059%" y="510.50">__init__ (datacube_ow..</text></g><g><title>list_measurements (datacube/api/core.py:121) (28 samples, 3.13%)</title><rect x="35.6823%" y="516" width="3.1320%" height="15" fill="rgb(242,56,43)"/><text x="35.9323%" y="526.50">lis..</text></g><g><title>__init__ (datacube_ows/ows_configuration.py:327) (125 samples, 13.98%)</title><rect x="25.0559%" y="484" width="13.9821%" height="15" fill="rgb(233,99,24)"/><text x="25.3059%" y="494.50">__init__ (datacube_ow..</text></g><g><title>_list_measurements (datacube/api/core.py:125) (51 samples, 5.70%)</title><rect x="40.8277%" y="532" width="5.7047%" height="15" fill="rgb(234,209,42)"/><text x="41.0777%" y="542.50">_list_m..</text></g><g><title>get_all (datacube/index/_products.py:369) (51 samples, 5.70%)</title><rect x="40.8277%" y="548" width="5.7047%" height="15" fill="rgb(227,7,12)"/><text x="41.0777%" y="558.50">get_all..</text></g><g><title>get_all_products (datacube/drivers/postgres/_api.py:902) (51 samples, 5.70%)</title><rect x="40.8277%" y="564" width="5.7047%" height="15" fill="rgb(245,203,43)"/><text x="41.0777%" y="574.50">get_all..</text></g><g><title>fetchall (sqlalchemy/engine/result.py:1273) (44 samples, 4.92%)</title><rect x="41.6107%" y="580" width="4.9217%" height="15" fill="rgb(238,205,33)"/><text x="41.8607%" y="590.50">fetcha..</text></g><g><title>_fetchall_impl (sqlalchemy/engine/result.py:1219) (44 samples, 4.92%)</title><rect x="41.6107%" y="596" width="4.9217%" height="15" fill="rgb(231,56,7)"/><text x="41.8607%" y="606.50">_fetch..</text></g><g><title>typecast_json (psycopg2/_json.py:167) (39 samples, 4.36%)</title><rect x="42.1700%" y="612" width="4.3624%" height="15" fill="rgb(244,186,29)"/><text x="42.4200%" y="622.50">typec..</text></g><g><title>loads (json/__init__.py:354) (38 samples, 4.25%)</title><rect x="42.2819%" y="628" width="4.2506%" height="15" fill="rgb(234,111,31)"/><text x="42.5319%" y="638.50">loads..</text></g><g><title>decode (json/decoder.py:339) (38 samples, 4.25%)</title><rect x="42.2819%" y="644" width="4.2506%" height="15" fill="rgb(241,149,10)"/><text x="42.5319%" y="654.50">decod..</text></g><g><title>raw_decode (json/decoder.py:355) (36 samples, 4.03%)</title><rect x="42.5056%" y="660" width="4.0268%" height="15" fill="rgb(249,206,44)"/><text x="42.7556%" y="670.50">raw_..</text></g><g><title>_list_measurements (datacube/api/core.py:127) (10 samples, 1.12%)</title><rect x="47.2036%" y="532" width="1.1186%" height="15" fill="rgb(251,153,30)"/><text x="47.4536%" y="542.50"></text></g><g><title>measurements (datacube/model/__init__.py:429) (9 samples, 1.01%)</title><rect x="47.3154%" y="548" width="1.0067%" height="15" fill="rgb(239,152,38)"/><text x="47.5654%" y="558.50"></text></g><g><title>&lt;genexpr&gt; (datacube/model/__init__.py:429) (9 samples, 1.01%)</title><rect x="47.3154%" y="564" width="1.0067%" height="15" fill="rgb(249,139,47)"/><text x="47.5654%" y="574.50"></text></g><g><title>_list_measurements (datacube/api/core.py:128) (10 samples, 1.12%)</title><rect x="48.3221%" y="532" width="1.1186%" height="15" fill="rgb(244,64,35)"/><text x="48.5721%" y="542.50"></text></g><g><title>measurements (datacube/model/__init__.py:429) (10 samples, 1.12%)</title><rect x="48.3221%" y="548" width="1.1186%" height="15" fill="rgb(216,46,15)"/><text x="48.5721%" y="558.50"></text></g><g><title>list_measurements (datacube/api/core.py:116) (81 samples, 9.06%)</title><rect x="40.8277%" y="516" width="9.0604%" height="15" fill="rgb(250,74,19)"/><text x="41.0777%" y="526.50">list_measurem..</text></g><g><title>from_dict (pandas/core/frame.py:1247) (18 samples, 2.01%)</title><rect x="49.8881%" y="532" width="2.0134%" height="15" fill="rgb(249,42,33)"/><text x="50.1381%" y="542.50">f..</text></g><g><title>parse_wcs (datacube_ows/ows_configuration.py:582) (118 samples, 13.20%)</title><rect x="40.1566%" y="500" width="13.1991%" height="15" fill="rgb(242,149,17)"/><text x="40.4066%" y="510.50">parse_wcs (datacube_..</text></g><g><title>list_measurements (datacube/api/core.py:121) (31 samples, 3.47%)</title><rect x="49.8881%" y="516" width="3.4676%" height="15" fill="rgb(244,29,21)"/><text x="50.1381%" y="526.50">lis..</text></g><g><title>ogc_svc_impl (datacube_ows/ogc.py:194) (321 samples, 35.91%)</title><rect x="17.5615%" y="324" width="35.9060%" height="15" fill="rgb(220,130,37)"/><text x="17.8115%" y="334.50">ogc_svc_impl (datacube_ows/ogc.py:194)</text></g><g><title>activated (datacube_ows/ogc.py:114) (321 samples, 35.91%)</title><rect x="17.5615%" y="340" width="35.9060%" height="15" fill="rgb(211,67,2)"/><text x="17.8115%" y="350.50">activated (datacube_ows/ogc.py:114)</text></g><g><title>get_config (datacube_ows/ows_configuration.py:910) (321 samples, 35.91%)</title><rect x="17.5615%" y="356" width="35.9060%" height="15" fill="rgb(235,68,52)"/><text x="17.8115%" y="366.50">get_config (datacube_ows/ows_configuration.py:910)</text></g><g><title>__init__ (datacube_ows/ows_configuration.py:807) (312 samples, 34.90%)</title><rect x="18.5682%" y="372" width="34.8993%" height="15" fill="rgb(246,142,3)"/><text x="18.8182%" y="382.50">__init__ (datacube_ows/ows_configuration.py:807)</text></g><g><title>parse_layers (datacube_ows/ows_configuration.py:901) (299 samples, 33.45%)</title><rect x="20.0224%" y="388" width="33.4452%" height="15" fill="rgb(241,25,7)"/><text x="20.2724%" y="398.50">parse_layers (datacube_ows/ows_configuration.py:901)</text></g><g><title>parse_ows_layer (datacube_ows/ows_configuration.py:715) (299 samples, 33.45%)</title><rect x="20.0224%" y="404" width="33.4452%" height="15" fill="rgb(242,119,39)"/><text x="20.2724%" y="414.50">parse_ows_layer (datacube_ows/ows_configuration.py:715)</text></g><g><title>__init__ (datacube_ows/ows_configuration.py:285) (299 samples, 33.45%)</title><rect x="20.0224%" y="420" width="33.4452%" height="15" fill="rgb(241,98,45)"/><text x="20.2724%" y="430.50">__init__ (datacube_ows/ows_configuration.py:285)</text></g><g><title>parse_ows_layer (datacube_ows/ows_configuration.py:715) (299 samples, 33.45%)</title><rect x="20.0224%" y="436" width="33.4452%" height="15" fill="rgb(254,28,30)"/><text x="20.2724%" y="446.50">parse_ows_layer (datacube_ows/ows_configuration.py:715)</text></g><g><title>__init__ (datacube_ows/ows_configuration.py:285) (299 samples, 33.45%)</title><rect x="20.0224%" y="452" width="33.4452%" height="15" fill="rgb(241,142,54)"/><text x="20.2724%" y="462.50">__init__ (datacube_ows/ows_configuration.py:285)</text></g><g><title>parse_ows_layer (datacube_ows/ows_configuration.py:713) (281 samples, 31.43%)</title><rect x="22.0358%" y="468" width="31.4318%" height="15" fill="rgb(222,85,15)"/><text x="22.2858%" y="478.50">parse_ows_layer (datacube_ows/ows_configuration.py:..</text></g><g><title>__init__ (datacube_ows/ows_configuration.py:358) (120 samples, 13.42%)</title><rect x="40.0447%" y="484" width="13.4228%" height="15" fill="rgb(210,85,47)"/><text x="40.2947%" y="494.50">__init__ (datacube_o..</text></g><g><title>search_eager (datacube/index/_datasets.py:706) (11 samples, 1.23%)</title><rect x="54.4743%" y="452" width="1.2304%" height="15" fill="rgb(224,206,25)"/><text x="54.7243%" y="462.50"></text></g><g><title>datasets (datacube_ows/data.py:88) (12 samples, 1.34%)</title><rect x="54.4743%" y="420" width="1.3423%" height="15" fill="rgb(243,201,19)"/><text x="54.7243%" y="430.50"></text></g><g><title>_dataset_query (datacube_ows/data.py:101) (12 samples, 1.34%)</title><rect x="54.4743%" y="436" width="1.3423%" height="15" fill="rgb(236,59,4)"/><text x="54.7243%" y="446.50"></text></g><g><title>get_map (datacube_ows/data.py:239) (16 samples, 1.79%)</title><rect x="54.4743%" y="388" width="1.7897%" height="15" fill="rgb(254,179,45)"/><text x="54.7243%" y="398.50">g..</text></g><g><title>log_wrapper (datacube_ows/utils.py:14) (16 samples, 1.79%)</title><rect x="54.4743%" y="404" width="1.7897%" height="15" fill="rgb(226,14,10)"/><text x="54.7243%" y="414.50">l..</text></g><g><title>__init__ (datacube/model/__init__.py:327) (16 samples, 1.79%)</title><rect x="62.7517%" y="580" width="1.7897%" height="15" fill="rgb(244,27,41)"/><text x="63.0017%" y="590.50">_..</text></g><g><title>__init__ (datacube/storage/_base.py:81) (82 samples, 9.17%)</title><rect x="57.8300%" y="516" width="9.1723%" height="15" fill="rgb(235,35,32)"/><text x="58.0800%" y="526.50">__init__ (dat..</text></g><g><title>canonical_measurement (datacube/model/__init__.py:473) (82 samples, 9.17%)</title><rect x="57.8300%" y="532" width="9.1723%" height="15" fill="rgb(218,68,31)"/><text x="58.0800%" y="542.50">canonical_mea..</text></g><g><title>measurements (datacube/model/__init__.py:429) (78 samples, 8.72%)</title><rect x="58.2774%" y="548" width="8.7248%" height="15" fill="rgb(207,120,37)"/><text x="58.5274%" y="558.50">measurements..</text></g><g><title>&lt;genexpr&gt; (datacube/model/__init__.py:429) (66 samples, 7.38%)</title><rect x="59.6197%" y="564" width="7.3826%" height="15" fill="rgb(227,98,0)"/><text x="59.8697%" y="574.50">&lt;genexpr&gt; ..</text></g><g><title>__init__ (datacube/model/__init__.py:331) (22 samples, 2.46%)</title><rect x="64.5414%" y="580" width="2.4609%" height="15" fill="rgb(207,7,3)"/><text x="64.7914%" y="590.50">__..</text></g><g><title>_fuse_measurement (datacube/api/core.py:700) (95 samples, 10.63%)</title><rect x="57.1588%" y="500" width="10.6264%" height="15" fill="rgb(206,98,19)"/><text x="57.4088%" y="510.50">_fuse_measuremen..</text></g><g><title>__exit__ (rasterio/env.py:288) (10 samples, 1.12%)</title><rect x="68.5682%" y="580" width="1.1186%" height="15" fill="rgb(217,5,26)"/><text x="68.8182%" y="590.50"></text></g><g><title>defenv (rasterio/env.py:311) (10 samples, 1.12%)</title><rect x="68.5682%" y="596" width="1.1186%" height="15" fill="rgb(235,190,38)"/><text x="68.8182%" y="606.50"></text></g><g><title>open (datacube/storage/_rio.py:163) (29 samples, 3.24%)</title><rect x="68.2327%" y="548" width="3.2438%" height="15" fill="rgb(247,86,24)"/><text x="68.4827%" y="558.50">ope..</text></g><g><title>wrapper (rasterio/env.py:434) (26 samples, 2.91%)</title><rect x="68.5682%" y="564" width="2.9083%" height="15" fill="rgb(205,101,16)"/><text x="68.8182%" y="574.50">wr..</text></g><g><title>open (rasterio/__init__.py:219) (15 samples, 1.68%)</title><rect x="69.7987%" y="580" width="1.6779%" height="15" fill="rgb(246,168,33)"/><text x="70.0487%" y="590.50"></text></g><g><title>reproject_and_fuse (datacube/storage/_load.py:83) (44 samples, 4.92%)</title><rect x="67.7852%" y="516" width="4.9217%" height="15" fill="rgb(231,114,1)"/><text x="68.0352%" y="526.50">reproj..</text></g><g><title>__enter__ (contextlib.py:81) (44 samples, 4.92%)</title><rect x="67.7852%" y="532" width="4.9217%" height="15" fill="rgb(207,184,53)"/><text x="68.0352%" y="542.50">__ente..</text></g><g><title>open (datacube/storage/_rio.py:172) (11 samples, 1.23%)</title><rect x="71.4765%" y="548" width="1.2304%" height="15" fill="rgb(224,95,51)"/><text x="71.7265%" y="558.50"></text></g><g><title>_rasterio_crs (datacube/storage/_rio.py:30) (11 samples, 1.23%)</title><rect x="71.4765%" y="564" width="1.2304%" height="15" fill="rgb(212,188,45)"/><text x="71.7265%" y="574.50"></text></g><g><title>native_pix_transform (datacube/utils/geometry/tools.py:465) (15 samples, 1.68%)</title><rect x="73.4899%" y="564" width="1.6779%" height="15" fill="rgb(223,154,38)"/><text x="73.7399%" y="574.50"></text></g><g><title>transformer_to_crs (datacube/utils/geometry/_base.py:307) (15 samples, 1.68%)</title><rect x="73.4899%" y="580" width="1.6779%" height="15" fill="rgb(251,22,52)"/><text x="73.7399%" y="590.50"></text></g><g><title>wrapper (cachetools/__init__.py:46) (14 samples, 1.57%)</title><rect x="73.6018%" y="596" width="1.5660%" height="15" fill="rgb(229,209,22)"/><text x="73.8518%" y="606.50"></text></g><g><title>_make_crs_transform (datacube/utils/geometry/_base.py:127) (14 samples, 1.57%)</title><rect x="73.6018%" y="612" width="1.5660%" height="15" fill="rgb(234,138,34)"/><text x="73.8518%" y="622.50"></text></g><g><title>from_crs (pyproj/transformer.py:315) (14 samples, 1.57%)</title><rect x="73.6018%" y="628" width="1.5660%" height="15" fill="rgb(212,95,11)"/><text x="73.8518%" y="638.50"></text></g><g><title>compute_reproject_roi (datacube/utils/geometry/tools.py:611) (26 samples, 2.91%)</title><rect x="73.4899%" y="548" width="2.9083%" height="15" fill="rgb(240,179,47)"/><text x="73.7399%" y="558.50">co..</text></g><g><title>native_pix_transform (datacube/utils/geometry/tools.py:466) (11 samples, 1.23%)</title><rect x="75.1678%" y="564" width="1.2304%" height="15" fill="rgb(240,163,11)"/><text x="75.4178%" y="574.50"></text></g><g><title>transformer_to_crs (datacube/utils/geometry/_base.py:307) (11 samples, 1.23%)</title><rect x="75.1678%" y="580" width="1.2304%" height="15" fill="rgb(236,37,12)"/><text x="75.4178%" y="590.50"></text></g><g><title>wrapper (cachetools/__init__.py:46) (10 samples, 1.12%)</title><rect x="75.2796%" y="596" width="1.1186%" height="15" fill="rgb(232,164,16)"/><text x="75.5296%" y="606.50"></text></g><g><title>_make_crs_transform (datacube/utils/geometry/_base.py:127) (10 samples, 1.12%)</title><rect x="75.2796%" y="612" width="1.1186%" height="15" fill="rgb(244,205,15)"/><text x="75.5296%" y="622.50"></text></g><g><title>from_crs (pyproj/transformer.py:315) (10 samples, 1.12%)</title><rect x="75.2796%" y="628" width="1.1186%" height="15" fill="rgb(223,117,47)"/><text x="75.5296%" y="638.50"></text></g><g><title>&lt;lambda&gt; (datacube/utils/geometry/tools.py:477) (16 samples, 1.79%)</title><rect x="76.3982%" y="580" width="1.7897%" height="15" fill="rgb(244,107,35)"/><text x="76.6482%" y="590.50">&lt;..</text></g><g><title>transform (datacube/utils/geometry/tools.py:473) (16 samples, 1.79%)</title><rect x="76.3982%" y="596" width="1.7897%" height="15" fill="rgb(205,140,8)"/><text x="76.6482%" y="606.50">t..</text></g><g><title>compute_roi (datacube/utils/geometry/tools.py:600) (19 samples, 2.13%)</title><rect x="76.3982%" y="564" width="2.1253%" height="15" fill="rgb(228,84,46)"/><text x="76.6482%" y="574.50">c..</text></g><g><title>tr (datacube/utils/geometry/tools.py:476) (14 samples, 1.57%)</title><rect x="79.0828%" y="580" width="1.5660%" height="15" fill="rgb(254,188,9)"/><text x="79.3328%" y="590.50"></text></g><g><title>transform (datacube/utils/geometry/tools.py:473) (14 samples, 1.57%)</title><rect x="79.0828%" y="596" width="1.5660%" height="15" fill="rgb(206,112,54)"/><text x="79.3328%" y="606.50"></text></g><g><title>&lt;listcomp&gt; (datacube/utils/geometry/tools.py:473) (14 samples, 1.57%)</title><rect x="79.0828%" y="612" width="1.5660%" height="15" fill="rgb(216,84,49)"/><text x="79.3328%" y="622.50"></text></g><g><title>compute_roi (datacube/utils/geometry/tools.py:607) (17 samples, 1.90%)</title><rect x="78.8591%" y="564" width="1.9016%" height="15" fill="rgb(214,194,35)"/><text x="79.1091%" y="574.50">c..</text></g><g><title>compute_reproject_roi (datacube/utils/geometry/tools.py:628) (41 samples, 4.59%)</title><rect x="76.3982%" y="548" width="4.5861%" height="15" fill="rgb(249,28,3)"/><text x="76.6482%" y="558.50">compu..</text></g><g><title>decompose_rws (datacube/utils/geometry/tools.py:278) (24 samples, 2.68%)</title><rect x="81.6555%" y="612" width="2.6846%" height="15" fill="rgb(222,56,52)"/><text x="81.9055%" y="622.50">de..</text></g><g><title>inv (&lt;__array_function__ internals&gt;:6) (24 samples, 2.68%)</title><rect x="81.6555%" y="628" width="2.6846%" height="15" fill="rgb(245,217,50)"/><text x="81.9055%" y="638.50">in..</text></g><g><title>inv (numpy/linalg/linalg.py:547) (24 samples, 2.68%)</title><rect x="81.6555%" y="644" width="2.6846%" height="15" fill="rgb(213,201,24)"/><text x="81.9055%" y="654.50">in..</text></g><g><title>compute_reproject_roi (datacube/utils/geometry/tools.py:630) (31 samples, 3.47%)</title><rect x="80.9843%" y="548" width="3.4676%" height="15" fill="rgb(248,116,28)"/><text x="81.2343%" y="558.50">com..</text></g><g><title>get_scale_at_point (datacube/utils/geometry/tools.py:355) (26 samples, 2.91%)</title><rect x="81.5436%" y="564" width="2.9083%" height="15" fill="rgb(219,72,43)"/><text x="81.7936%" y="574.50">ge..</text></g><g><title>get_scale_from_linear_transform (datacube/utils/geometry/tools.py:327) (26 samples, 2.91%)</title><rect x="81.5436%" y="580" width="2.9083%" height="15" fill="rgb(209,138,14)"/><text x="81.7936%" y="590.50">ge..</text></g><g><title>decompose_rws (datacube/utils/geometry/tools.py:271) (26 samples, 2.91%)</title><rect x="81.5436%" y="596" width="2.9083%" height="15" fill="rgb(222,18,33)"/><text x="81.7936%" y="606.50">de..</text></g><g><title>read_time_slice (datacube/storage/_read.py:120) (99 samples, 11.07%)</title><rect x="73.4899%" y="532" width="11.0738%" height="15" fill="rgb(213,199,7)"/><text x="73.7399%" y="542.50">read_time_slice ..</text></g><g><title>read_time_slice (datacube/storage/_read.py:168) (94 samples, 10.51%)</title><rect x="85.3468%" y="532" width="10.5145%" height="15" fill="rgb(250,110,10)"/><text x="85.5968%" y="542.50">read_time_slice..</text></g><g><title>read (datacube/storage/_rio.py:80) (93 samples, 10.40%)</title><rect x="85.4586%" y="548" width="10.4027%" height="15" fill="rgb(248,123,6)"/><text x="85.7086%" y="558.50">read (datacube/..</text></g><g><title>reproject_and_fuse (datacube/storage/_load.py:84) (238 samples, 26.62%)</title><rect x="72.7069%" y="516" width="26.6219%" height="15" fill="rgb(206,91,31)"/><text x="72.9569%" y="526.50">reproject_and_fuse (datacube/storage/_load...</text></g><g><title>read_time_slice (datacube/storage/_read.py:176) (31 samples, 3.47%)</title><rect x="95.8613%" y="532" width="3.4676%" height="15" fill="rgb(211,154,13)"/><text x="96.1113%" y="542.50">rea..</text></g><g><title>rio_reproject (datacube/utils/geometry/_warp.py:159) (31 samples, 3.47%)</title><rect x="95.8613%" y="548" width="3.4676%" height="15" fill="rgb(225,148,7)"/><text x="96.1113%" y="558.50">rio..</text></g><g><title>wrapper (rasterio/env.py:383) (31 samples, 3.47%)</title><rect x="95.8613%" y="564" width="3.4676%" height="15" fill="rgb(220,160,43)"/><text x="96.1113%" y="574.50">wra..</text></g><g><title>wrapper (rasterio/env.py:609) (30 samples, 3.36%)</title><rect x="95.9732%" y="580" width="3.3557%" height="15" fill="rgb(213,52,39)"/><text x="96.2232%" y="590.50">wra..</text></g><g><title>reproject (rasterio/warp.py:347) (30 samples, 3.36%)</title><rect x="95.9732%" y="596" width="3.3557%" height="15" fill="rgb(243,137,7)"/><text x="96.2232%" y="606.50">rep..</text></g><g><title>get_map (datacube_ows/data.py:274) (387 samples, 43.29%)</title><rect x="56.2640%" y="388" width="43.2886%" height="15" fill="rgb(230,79,13)"/><text x="56.5140%" y="398.50">get_map (datacube_ows/data.py:274)</text></g><g><title>log_wrapper (datacube_ows/utils.py:14) (387 samples, 43.29%)</title><rect x="56.2640%" y="404" width="43.2886%" height="15" fill="rgb(247,105,23)"/><text x="56.5140%" y="414.50">log_wrapper (datacube_ows/utils.py:14)</text></g><g><title>data (datacube_ows/data.py:141) (387 samples, 43.29%)</title><rect x="56.2640%" y="420" width="43.2886%" height="15" fill="rgb(223,179,41)"/><text x="56.5140%" y="430.50">data (datacube_ows/data.py:141)</text></g><g><title>log_wrapper (datacube_ows/utils.py:14) (387 samples, 43.29%)</title><rect x="56.2640%" y="436" width="43.2886%" height="15" fill="rgb(218,9,34)"/><text x="56.5140%" y="446.50">log_wrapper (datacube_ows/utils.py:14)</text></g><g><title>read_data (datacube_ows/data.py:193) (387 samples, 43.29%)</title><rect x="56.2640%" y="452" width="43.2886%" height="15" fill="rgb(222,106,8)"/><text x="56.5140%" y="462.50">read_data (datacube_ows/data.py:193)</text></g><g><title>load_data (datacube/api/core.py:586) (387 samples, 43.29%)</title><rect x="56.2640%" y="468" width="43.2886%" height="15" fill="rgb(211,220,0)"/><text x="56.5140%" y="478.50">load_data (datacube/api/core.py:586)</text></g><g><title>_xr_load (datacube/api/core.py:523) (379 samples, 42.39%)</title><rect x="57.1588%" y="484" width="42.3937%" height="15" fill="rgb(229,52,16)"/><text x="57.4088%" y="494.50">_xr_load (datacube/api/core.py:523)</text></g><g><title>_fuse_measurement (datacube/api/core.py:715) (284 samples, 31.77%)</title><rect x="67.7852%" y="500" width="31.7673%" height="15" fill="rgb(212,155,18)"/><text x="68.0352%" y="510.50">_fuse_measurement (datacube/api/core.py:715)</text></g><g><title>execute (werkzeug/serving.py:312) (736 samples, 82.33%)</title><rect x="17.5615%" y="212" width="82.3266%" height="15" fill="rgb(242,21,14)"/><text x="17.8115%" y="222.50">execute (werkzeug/serving.py:312)</text></g><g><title>__call__ (flask/cli.py:337) (736 samples, 82.33%)</title><rect x="17.5615%" y="228" width="82.3266%" height="15" fill="rgb(222,19,48)"/><text x="17.8115%" y="238.50">__call__ (flask/cli.py:337)</text></g><g><title>__call__ (flask/app.py:2464) (736 samples, 82.33%)</title><rect x="17.5615%" y="244" width="82.3266%" height="15" fill="rgb(232,45,27)"/><text x="17.8115%" y="254.50">__call__ (flask/app.py:2464)</text></g><g><title>wsgi_app (flask/app.py:2447) (736 samples, 82.33%)</title><rect x="17.5615%" y="260" width="82.3266%" height="15" fill="rgb(249,103,42)"/><text x="17.8115%" y="270.50">wsgi_app (flask/app.py:2447)</text></g><g><title>full_dispatch_request (flask/app.py:1950) (736 samples, 82.33%)</title><rect x="17.5615%" y="276" width="82.3266%" height="15" fill="rgb(246,81,33)"/><text x="17.8115%" y="286.50">full_dispatch_request (flask/app.py:1950)</text></g><g><title>dispatch_request (flask/app.py:1936) (736 samples, 82.33%)</title><rect x="17.5615%" y="292" width="82.3266%" height="15" fill="rgb(252,33,42)"/><text x="17.8115%" y="302.50">dispatch_request (flask/app.py:1936)</text></g><g><title>ogc_wms_impl (datacube_ows/ogc.py:218) (736 samples, 82.33%)</title><rect x="17.5615%" y="308" width="82.3266%" height="15" fill="rgb(209,212,41)"/><text x="17.8115%" y="318.50">ogc_wms_impl (datacube_ows/ogc.py:218)</text></g><g><title>ogc_svc_impl (datacube_ows/ogc.py:207) (415 samples, 46.42%)</title><rect x="53.4676%" y="324" width="46.4206%" height="15" fill="rgb(207,154,6)"/><text x="53.7176%" y="334.50">ogc_svc_impl (datacube_ows/ogc.py:207)</text></g><g><title>log_wrapper (datacube_ows/utils.py:14) (415 samples, 46.42%)</title><rect x="53.4676%" y="340" width="46.4206%" height="15" fill="rgb(223,64,47)"/><text x="53.7176%" y="350.50">log_wrapper (datacube_ows/utils.py:14)</text></g><g><title>handle_wms (datacube_ows/wms.py:26) (415 samples, 46.42%)</title><rect x="53.4676%" y="356" width="46.4206%" height="15" fill="rgb(211,161,38)"/><text x="53.7176%" y="366.50">handle_wms (datacube_ows/wms.py:26)</text></g><g><title>log_wrapper (datacube_ows/utils.py:14) (415 samples, 46.42%)</title><rect x="53.4676%" y="372" width="46.4206%" height="15" fill="rgb(219,138,40)"/><text x="53.7176%" y="382.50">log_wrapper (datacube_ows/utils.py:14)</text></g><g><title>all (894 samples, 100%)</title><rect x="0.0000%" y="36" width="100.0000%" height="15" fill="rgb(241,228,46)"/><text x="0.2500%" y="46.50"></text></g><g><title>_bootstrap (threading.py:884) (737 samples, 82.44%)</title><rect x="17.5615%" y="52" width="82.4385%" height="15" fill="rgb(223,209,38)"/><text x="17.8115%" y="62.50">_bootstrap (threading.py:884)</text></g><g><title>_bootstrap_inner (threading.py:916) (737 samples, 82.44%)</title><rect x="17.5615%" y="68" width="82.4385%" height="15" fill="rgb(236,164,45)"/><text x="17.8115%" y="78.50">_bootstrap_inner (threading.py:916)</text></g><g><title>run (threading.py:864) (737 samples, 82.44%)</title><rect x="17.5615%" y="84" width="82.4385%" height="15" fill="rgb(231,15,5)"/><text x="17.8115%" y="94.50">run (threading.py:864)</text></g><g><title>process_request_thread (socketserver.py:654) (737 samples, 82.44%)</title><rect x="17.5615%" y="100" width="82.4385%" height="15" fill="rgb(252,35,15)"/><text x="17.8115%" y="110.50">process_request_thread (socketserver.py:654)</text></g><g><title>finish_request (socketserver.py:364) (737 samples, 82.44%)</title><rect x="17.5615%" y="116" width="82.4385%" height="15" fill="rgb(248,181,18)"/><text x="17.8115%" y="126.50">finish_request (socketserver.py:364)</text></g><g><title>__init__ (socketserver.py:724) (737 samples, 82.44%)</title><rect x="17.5615%" y="132" width="82.4385%" height="15" fill="rgb(233,39,42)"/><text x="17.8115%" y="142.50">__init__ (socketserver.py:724)</text></g><g><title>handle (werkzeug/serving.py:345) (737 samples, 82.44%)</title><rect x="17.5615%" y="148" width="82.4385%" height="15" fill="rgb(238,110,33)"/><text x="17.8115%" y="158.50">handle (werkzeug/serving.py:345)</text></g><g><title>handle (http/server.py:418) (737 samples, 82.44%)</title><rect x="17.5615%" y="164" width="82.4385%" height="15" fill="rgb(233,195,10)"/><text x="17.8115%" y="174.50">handle (http/server.py:418)</text></g><g><title>handle_one_request (werkzeug/serving.py:379) (737 samples, 82.44%)</title><rect x="17.5615%" y="180" width="82.4385%" height="15" fill="rgb(254,105,3)"/><text x="17.8115%" y="190.50">handle_one_request (werkzeug/serving.py:379)</text></g><g><title>run_wsgi (werkzeug/serving.py:323) (737 samples, 82.44%)</title><rect x="17.5615%" y="196" width="82.4385%" height="15" fill="rgb(221,225,9)"/><text x="17.8115%" y="206.50">run_wsgi (werkzeug/serving.py:323)</text></g></svg></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment