// Automatically get the user's location when the page loads window.onload = function() { getLocation(); }; navigator.geolocation.getCurrentPosition(function(position) { // Success logic console.log("Latitude:", position.coords.latitude); console.log("Longitude:", position.coords.longitude); }); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var lat = position.coords.latitude; var lon = position.coords.longitude; $.ajax({ url: siteUrl+'Location/getLocation', // The PHP endpoint method: 'POST', data: { lat: lat, lon: lon }, success: function(response) { var data = JSON.parse(response); console.log(data); } }); }); } }
Suchi Saria / John Hopkins
Suchi Saria, an Indian-born computer scientist and founder of Bayesian Health, has developed an AI-powered platform that is said to be helping hospitals across the US detect and treat sepsis, according to John Hopkins University.
Saria, a Delhi Public School alumna and an endowed professor at Johns Hopkins University, in a conversation with Johns Hopkins University described how her team’s Targeted Real-Time Early Warning System, or TREWS, is already reducing sepsis mortality by 18 percent in over 50 hospitals. Sepsis, a life-threatening immune response that often masquerades as something benign and kills an estimated 270,000 people annually in the US alone.
ADVERTISEMENT
ADVERTISEMENT
Comments
Start the conversation
Become a member of New India Abroad to start commenting.
Sign Up Now
Already have an account? Login