标签: matplotlib seaborn
为什么在绘制时我们将经度和纬度用作(x, y)?纬度(赤道)线水平延伸,而纬度(主要中值)线垂直延伸地球。那么为什么不是(x, y) == (latitude, longitude)?
(x, y)
(x, y) == (latitude, longitude)
答案 0 :(得分:1)
由Google Earth,
垂直线当然是纵向的,水平线是横向的。 matplotlib中相应的对应图将如下所示
其中,经度沿x轴变化,而纬度沿y轴变化。因此,(x, y) == (longitude, latitude)
x
y
(x, y) == (longitude, latitude)