Created At: 2026-06-14T14:02:25Z
Completed At: 2026-06-14T14:02:25Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 4592
Total Bytes: 194050
Showing lines 3121 to 3160
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.
3121:       } else if (vNorm.includes('minimum') || vNorm.includes('min')) {
3122:         baseVal = -0.2;
3123:         trendHist = 0.020; 
3124:         noiseLevel = 0.12;
3125:         unit = '°C';
3126:         yLabel = 'Temperature Anomaly';
3127:         ssp1_slope = 0.0065;
3128:         ssp2_slope = 0.01275;
3129:         ssp3_slope = 0.0265;
3130:         ssp5_slope = 0.03275;
3131:         baseUncertainty = 0.25;
3132:       } else if (vNorm.includes('kelembaban') || vNorm.includes('relatif') || vNorm.includes('humidity')) {
3133:         baseVal = 82.0;
3134:         trendHist = -0.01; 
3135:         noiseLevel = 0.8;
3136:         unit = '%';
3137:         yLabel = 'Kelembaban Relatif (%)';
3138:         ssp1_slope = -0.002;
3139:         ssp2_slope = -0.008;
3140:         ssp3_slope = -0.020;
3141:         ssp5_slope = -0.035;
3142:         baseUncertainty = 1.0;
3143:       } else if (vNorm.includes('kecepatan') || vNorm.includes('angin') || vNorm.includes('wind')) {
3144:         baseVal = 2.4;
3145:         trendHist = 0.0005;
3146:         noiseLevel = 0.08;
3147:         unit = 'm/s';
3148:         yLabel = 'Kecepatan Angin (m/s)';
3149:         ssp1_slope = -0.0001;
3150:         ssp2_slope = 0.0002;
3151:         ssp3_slope = 0.0005;
3152:         ssp5_slope = 0.0010;
3153:         baseUncertainty = 0.12;
3154:       } else if (vNorm.includes('radiasi') || vNorm.includes('matahari') || vNorm.includes('solar')) {
3155:         baseVal = 178.0;
3156:         trendHist = -0.03; 
3157:         noiseLevel = 2.5;
3158:         unit = 'W/m²';
3159:         yLabel = 'Radiasi Matahari (W/m²)';
3160:         ssp1_slope = 0.02;  
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.
