提交 6eae511b 编写于 作者: A Alexey Milovidov

Changed order of (lat, lon) to (lon, lat) to be consistent with...

Changed order of (lat, lon) to (lon, lat) to be consistent with "greatCircleDistance" function and PostGIS
上级 7591c3b7
......@@ -127,8 +127,8 @@ public:
for (const auto row : ext::range(0, size))
{
const double lat = col_vec_lat->getData()[row];
const double lon = col_vec_lon->getData()[row];
const double lon = col_vec_lat->getData()[row];
const double lat = col_vec_lon->getData()[row];
if (!is_const_resulution)
{
const auto col_vec_res = static_cast<const ColumnVector<UInt8> *>(col_res);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册