Created At: 2026-06-14T14:02:22Z
Completed At: 2026-06-14T14:02:22Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 4592
Total Bytes: 194050
Showing lines 3080 to 3120
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.
3080:       let ssp2_slope = 0.015; 
3081:       let ssp3_slope = 0.035; 
3082:       let ssp5_slope = 0.050; 
3083:       
3084:       let baseUncertainty = 0.25;
3085: 
3086:       const vNorm = variableName.toLowerCase().trim();
3087: 
3088:       if (vNorm.includes('precipitation') || vNorm.includes('curah hujan') || vNorm.includes('hujan')) {
3089:         baseVal = 2500;
3090:         trendHist = 0.5; 
3091:         noiseLevel = 250;
3092:         unit = 'mm/tahun';
3093:         yLabel = 'Curah Hujan (mm/tahun)';
3094:         ssp1_slope = 0.3;  
3095:         ssp2_slope = 1.0;  
3096:         ssp3_slope = -1.5; 
3097:         ssp5_slope = 3.2;  
3098:         baseUncertainty = 250;
3099:       } else if (vNorm.includes('anomaly') || vNorm.includes('anomali')) {
3100:         baseVal = 0.0;
3101:         trendHist = 0.01;
3102:         noiseLevel = 0.15;
3103:         unit = '°C';
3104:         yLabel = 'Temperature Anomaly';
3105:         ssp1_slope = 0.005;
3106:         ssp2_slope = 0.015;
3107:         ssp3_slope = 0.035;
3108:         ssp5_slope = 0.050;
3109:         baseUncertainty = 0.25;
3110:       } else if (vNorm.includes('maksimum') || vNorm.includes('max')) {
3111:         baseVal = 31.5;
3112:         trendHist = 0.018;
3113:         noiseLevel = 0.18;
3114:         unit = '°C';
3115:         yLabel = 'Suhu Maksimum (°C)';
3116:         ssp1_slope = 0.006;
3117:         ssp2_slope = 0.018;
3118:         ssp3_slope = 0.038;
3119:         ssp5_slope = 0.055;
3120:         baseUncertainty = 0.3;
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.
