• News

    NITIE
    IIM Mumbai builds an online dashboard that works on dynamically optimizing oxygen allocation across the country

    A number of states faced a shortage of oxygen during the peak of the second Covid wave. This shortage was further exacerbated due to the inability to view the demand across the country in a comprehensive manner. Instead, it was done on an ad hoc basis for each state leading to a suboptimal allocation. A real-time dashboard can supplement our understanding of the nature of allocation across the country...

    Read More

    // ------------------------------------------------------- // // Inject SVG Sprite - // see more here // https://css-tricks.com/ajaxing-svg-sprite/ // ------------------------------------------------------ // function injectSvgSprite(path) { var ajax = new XMLHttpRequest(); ajax.open("GET", path, true); ajax.send(); ajax.onload = function(e) { var div = document.createElement("div"); div.className = 'd-none'; div.innerHTML = ajax.responseText; document.body.insertBefore(div, document.body.childNodes[0]); } } // this is set to BootstrapTemple website as you cannot // inject local SVG sprite (using only 'icons/orion-svg-sprite.svg' path) // while using file:// protocol // pls don't forget to change to your domain :) injectSvgSprite('https://bootstraptemple.com/files/icons/orion-svg-sprite.svg');