Created At: 2026-06-14T13:53:25Z
Completed At: 2026-06-14T13:53:25Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 4581
Total Bytes: 193572
Showing lines 3650 to 3720
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.
3650:           {
3651:             type: 'arearange',
3652:             name: 'SSP3-7.0 Range',
3653:             data: ssp3RangeData,
3654:             color: 'rgba(240, 111, 0, 0.28)',
3655:             lineWidth: 1,
3656:             fillOpacity: 0.28,
3657:             enableMouseTracking: false,
3658:             showInLegend: false
3659:           },
3660:           {
3661:             type: 'line',
3662:             name: 'SSP3-7.0',
3663:             color: '#f06f00',
3664:             lineWidth: 3.5,
3665:             data: ssp3MeanData
3666:           },
3667:           {
3668:             type: 'arearange',
3669:             name: 'SSP2-4.5 Range',
3670:             data: ssp2RangeData,
3671:             color: 'rgba(250, 193, 0, 0.28)',
3672:             lineWidth: 1,
3673:             fillOpacity: 0.28,
3674:             enableMouseTracking: false,
3675:             showInLegend: false
3676:           },
3677:           {
3678:             type: 'line',
3679:             name: 'SSP2-4.5',
3680:             color: '#fac100',
3681:             lineWidth: 3.5,
3682:             data: ssp2MeanData
3683:           },
3684:           {
3685:             type: 'arearange',
3686:             name: 'SSP1-2.6 Range',
3687:             data: ssp1RangeData,
3688:             color: 'rgba(59, 130, 246, 0.28)',
3689:             lineWidth: 1,
3690:             fillOpacity: 0.28,
3691:             enableMouseTracking: false,
3692:             showInLegend: false
3693:           },
3694:           {
3695:             type: 'line',
3696:             name: 'SSP1-2.6',
3697:             color: '#3b82f6',
3698:             lineWidth: 3.5,
3699:             data: ssp1MeanData
3700:           }
3701:         ]
3702:       };
3703: 
3704:       if (isTempAnomaly) {
3705:         chartOptions.yAxis.min = -1;
3706:         chartOptions.yAxis.max = 5;
3707:         chartOptions.yAxis.tickInterval = 1;
3708:       }
3709: 
3710:       const chartInstance = Highcharts.chart(canvasId, chartOptions);
3711: 
3712:       if (isMain) {
3713:         futureClimateChart = chartInstance;
3714:       } else {
3715:         settingsFutureClimateChart = chartInstance;
3716:       }
3717:     }
3718: 
3719:     let currentMapIndex = 1;
3720:     function switchClimateMap(index) {
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.
