为什么 com.datastax.driver.dse.geometry.Point 的 X 是经度,Y 是纬度?
Why is X the longitude and Y latitude for com.datastax.driver.dse.geometry.Point?
com.datastax.driver.dse.geometry.Point
的构造函数是 Point(double x, double y)
文档说
the X coordinate is the longitude and the Y is the latitude.
为什么 X 是经度,Y 是纬度?似乎违反直觉。
我只是在这里猜测,但我觉得很直观。在数学中,Y-axis 通常是垂直的,X-axis 是水平的。纬度线与 Y-axis 相交,因此它们具有 Y-value 并且与 X 轴平行。
All points on equator have coordinate (x=alpha, y=0) for alpha in [-180, 180]
y
^
|
|
|- - - - - - - - - - - - (equator)
|
|
+--------------------> x
com.datastax.driver.dse.geometry.Point
的构造函数是 Point(double x, double y)
文档说
the X coordinate is the longitude and the Y is the latitude.
为什么 X 是经度,Y 是纬度?似乎违反直觉。
我只是在这里猜测,但我觉得很直观。在数学中,Y-axis 通常是垂直的,X-axis 是水平的。纬度线与 Y-axis 相交,因此它们具有 Y-value 并且与 X 轴平行。
All points on equator have coordinate (x=alpha, y=0) for alpha in [-180, 180]
y
^
|
|
|- - - - - - - - - - - - (equator)
|
|
+--------------------> x