SWAN

De Watergroep joins Smart Water Networks Forum

In 2019, De Watergroep joined Smart Water Networks Forum (SWAN), an organisation striving for a ‘smart’ water sector.

De Watergroep is a leader when it comers to technological innovation, and we want to keep things that way. For that reason, we joined SWAN, the most important global hub for the ‘smart’ water sector, in 2019. “Through these partnerships, we are strengthening our commitment to data-driven solutions to make our production and distribution chain more effective and sustainable”, Innovation Director Bert De Winter says. “The forum enables us to exchange experiences, share technologies, discover new products and suppliers, and much more. Around 140 members from across the world have joined SWAN so far, 22 of which are from Europe. We regularly meet to discuss solutions to specific water problems, mainly in relation to climate change. In regions such as Australia or California, water companies have much more experience in dealing with drought and guaranteeing a water supply. On top of that, our local regulators are important partners too: to be able to gather relevant data, minor regulatory adjustments are often required. Consequently, consultation is crucial in that regard too.”

introductie foto De Watergroep joins Smart Water Networks Forum

SWAN is a non-profit organisation that brings together major players from the industrial and utility sectors. By encouraging more cooperation, the initiators are seeking to accelerate the use of data-driven solution in water and waste water grids.

function swipedetect(el, callback){ var touchsurface = el, swipedir, startX, startY, distX, distY, threshold = 200, //required min distance traveled to be considered swipe restraint = 100, // maximum distance allowed at the same time in perpendicular direction allowedTime = 300, // maximum time allowed to travel that distance elapsedTime, startTime, handleswipe = callback || function(swipedir){} touchsurface.addEventListener('touchstart', function(e){ var touchobj = e.changedTouches[0] swipedir = 'none' dist = 0 startX = touchobj.pageX startY = touchobj.pageY startTime = new Date().getTime() // record time when finger first makes contact with surface e.preventDefault() }, false) touchsurface.addEventListener('touchmove', function(e){ e.preventDefault() // prevent scrolling when inside DIV }, false) touchsurface.addEventListener('touchend', function(e){ var touchobj = e.changedTouches[0] distX = touchobj.pageX - startX // get horizontal dist traveled by finger while in contact with surface distY = touchobj.pageY - startY // get vertical dist traveled by finger while in contact with surface elapsedTime = new Date().getTime() - startTime // get time elapsed if (elapsedTime <= allowedTime){ // first condition for awipe met if (Math.abs(distX) >= threshold && Math.abs(distY) <= restraint){ // 2nd condition for horizontal swipe met swipedir = (distX < 0)? 'left' : 'right' // if dist traveled is negative, it indicates left swipe } else if (Math.abs(distY) >= threshold && Math.abs(distX) <= restraint){ // 2nd condition for vertical swipe met swipedir = (distY < 0)? 'up' : 'down' // if dist traveled is negative, it indicates up swipe } } handleswipe(swipedir) e.preventDefault() }, false) } window.addEventListener('load', function(){ var el = document.getElementById('prevnextbar') var nextpage = document.getElementById('nextpage') var prevpage = document.getElementById('prevpage') swipedetect(el, function(swipedir){ if (swipedir != 'right'){ prevpage.click() } if (swipedir != 'left'){ nextpage.click() } }) }, false)