De Blankaart

Spectacular renovation for De Blankaart water production centre

The De Blankaart water production centre in Diksmuide provides drinking water to a third of the province of West Flanders. After nearly 50 years in service, the centre was due a complete overhaul.

De Blankaart was constructed in 1972 and is one of De Watergroep’s largest water production centres. As the installation has aged across the decades, more and more defects have become apparent. Its treatment technology is also no longer the most effective and sustainable on the market. As a result, De Watergroep is rolling out a masterplan to renovate the entire water treatment infrastructure at the site by 2025.

introductie foto Spectacular renovation for De Blankaart water production centre

2 phases

“The aim of the investments at De Blankaart is to secure water production and water quality for the future”, Head of Asset Management and Process Technology Gisèle Peleman explains. “The renovation will happen in two phases. In 2019, we started the construction of a post-treatment installation. Among other things, we’re installing new active carbon filters, installations to add ozone and hydrogen peroxide, a UV disinfection installation and a final disinfection system using chlorine. The new post-treatment installation will improve the way we treat the water for micropollutants. It is scheduled to be completed by the end of 2020. We also completed a study into a new main treatment installation in 2019. Work on that is due to start in 2021.”

Service centre

Alongside the water treatment installation, De Watergroep is also building a new service centre at De Blankaart. This new structure will house a visitor centre, meeting rooms, offices, a laboratory, technical rooms and facilities for the employees at the site, such as a canteen, bathrooms and changing rooms. If everything goes to plan, the new service centre will be complete by the end of 2020.

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)