Created At: 2026-06-14T15:00:59Z
Completed At: 2026-06-14T15:01:00Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 4628
Total Bytes: 195635
Showing lines 4020 to 4040
The following code has been modified to include a line number before every line, in the format: <line_number>: <original_line>. Please note that any changes targeting the original code should remove the line number, colon, and leading space.
4020:           alert('Data peta & stripe proyeksi berhasil disimpan ke database SQLite!');
4021:           await loadFilters();
4022:         } else {
4023:           alert('Gagal menyimpan: ' + (result.error || result.message));
4024:         }
4025:       } catch (err) {
4026:         console.error(err);
4027:         alert('Gagal mengirim data penyimpanan ke server.');
4028:       }
4029:     }
4030: 
4031:     async function loadFutureGraphSettingsData() {
4032:       const lokasi = document.getElementById('futureSetLocationGraph').value.trim();
4033:       const variable = document.getElementById('futureSetVariableGraph').value.trim();
4034: 
4035:       if (!lokasi || !variable) return;
4036: 
4037:       try {
4038:         const res = await fetch(`?action=get_future&location=${encodeURIComponent(lokasi)}&variable=${encodeURIComponent(variable)}`);
4039:         const result = await res.json();
4040: 
The above content does NOT show the entire file contents. If you need to view any lines of the file which were not shown to complete your task, call this tool again to view those lines.
