This commit is contained in:
enzo
2026-02-12 15:52:42 +01:00
parent 43145e4b09
commit 5033d81233
4 changed files with 60 additions and 0 deletions

13
test_data.sql Normal file
View File

@@ -0,0 +1,13 @@
USE smart_bins;
INSERT INTO bins (bin_label, latitude, longitude, empty_weight_kg, max_capacity_liters) VALUES
('Poubelle_Rue_Principale', 48.8584, 2.2945, 12.00, 100),
('Poubelle_Parc_Nord', 48.8600, 2.3000, 10.50, 80),
('Poubelle_Centre_Commercial', 48.8500, 2.3100, 15.00, 120);
INSERT INTO measurements (bin_id, total_weight_kg, fill_level_percent, temperature, battery_level) VALUES
(1, 45.50, 85, 22.1, 95),
(2, 15.00, 20, 19.5, 88),
(3, 60.00, 50, 24.0, 100);