30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
import MapLayout from "@/components/map/Layout";
|
||
import CustomToolbar from "@/components/common/CustomToolbar";
|
||
import CustomClock from "@/components/common/CustomClock";
|
||
import TextInfoPanel from "@/components/common/TextInfoPanel";
|
||
import CustomFlyTo from "./CustomFlyTo";
|
||
import Point from "./Point";
|
||
import PlateauPolygon from "./PlateauPolygon";
|
||
import WavePoints from "./WavePoints";
|
||
import Legend from "./Legend";
|
||
import IndianOceanSST from "./IndiaOceanSST";
|
||
|
||
export default function DomainTwo() {
|
||
return (
|
||
<MapLayout>
|
||
<div className="title">两极协同—南极涛动有效调节青藏高原降水和加热</div>
|
||
<CustomToolbar />
|
||
<CustomClock />
|
||
<CustomFlyTo />
|
||
<Point />
|
||
<PlateauPolygon />
|
||
<div className="left-panel one">
|
||
<TextInfoPanel content="利用ERA5再分析数据诊断和CESM印度洋海温强迫数值实验,发现5月的南极涛动正位相(AAO)激发原子阿蒙森海的纬向波列异常。该异常造成印度洋海温降低进而激发环流异常造成高原上空降水增加、感热通量降低。这一结果有助于提高青藏高原热源的预测技巧,改进亚洲夏季风的预测。" />
|
||
</div>
|
||
<WavePoints />
|
||
<Legend />
|
||
<IndianOceanSST />
|
||
</MapLayout>
|
||
);
|
||
}
|