+63 91 23456789
Floodcast 2.0 Real-time Flood Monitoring in Bulacan
No New Updates Available • No New Updates Available • No New Updates Available •
No New Updates Available • No New Updates Available • No New Updates Available •
No New Updates Available • No New Updates Available • No New Updates Available •
Rainfall at Bulacan in mm/Hr
Water Level at Bulacan in meter
Current Water Level 0 m Guarded
Current Rainfall Level 0 mm Guarded
Current Flow Rate 0 L/m Guarded

Water Height Data

Water Height Data
ID Water Height Timestamp
5183.362024-11-16 06:22:24
5173.362024-11-16 06:22:20
5163.362024-11-16 06:22:16
5153.542024-11-16 06:22:12
5143.362024-11-16 06:22:08
5133.552024-11-16 06:22:04
5123.372024-11-16 06:22:00
5113.542024-11-16 06:21:56
5103.552024-11-16 06:21:50
5093.362024-11-16 06:21:46

Flow Rate Data

1.732024-12-19 22:10:141.072024-12-19 22:09:140.42024-12-19 22:08:140.272024-12-19 22:07:171.472024-12-19 22:02:141.22024-12-19 22:01:150.932024-12-19 21:59:150.532024-12-19 21:56:130.272024-12-19 21:55:131.732024-12-19 21:41:25

Precipitation Data

Precipitation Data

Precipitation Data

ID Precipitation Rate Timestamp
2771.22024-12-19 14:09:46
2760.62024-12-19 14:08:48
2751.82024-12-19 14:07:46
2740.32024-12-19 14:00:49
2731.22024-12-19 13:59:46
2721.52024-12-19 13:58:45
2710.92024-12-19 13:56:50
2700.92024-12-19 13:55:46
2692.42024-12-19 13:54:46
268101.12024-12-19 13:47:14
Predictions will be posted here soon
Barangay updates will be posted here
Predictions Government Website Announcements
// Function to fetch and update water level from the ultra_january table function fetchWaterData() { $.ajax({ url: 'get_water_data.php', method: 'GET', dataType: 'json', success: function(data) { if (data.water_height !== undefined) { $('#water-level').text(data.water_height + ' m'); } else { $('#water-level').text('0 m'); // Default to 0 if no data } }, error: function(error) { console.error('Error fetching water data:', error); $('#water-level').text('0 m'); // Default to 0 on error } }); } // Fetch water level data every 5 seconds setInterval(fetchWaterData, 5000); fetchWaterData(); // Initial call to fetch data on load