2023-10-03 15:40:10 +08:00

30 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
}