python画出温度廓线
时间: 2023-05-17 13:05:53 浏览: 290
可以使用Python的Matplotlib库来画出温度廓线。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 温度数据
temp = np.array([-40, -30, -20, -10, 0, 10, 20, 30, 40])
# 高度数据
height = np.array([0, 1, 2, 3, 4, 5, 6, 7, 8])
# 绘制温度廓线
plt.plot(temp, height)
# 设置坐标轴标签
plt.xlabel('Temperature (°C)')
plt.ylabel('Height (km)')
# 显示图形
plt.show()
```
这段代码将绘制一个简单的温度廓线图,其中x轴表示温度,y轴表示高度。您可以根据需要修改数据和图形设置。
阅读全文