ClickHouse/src/Functions/geoToS2.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

130 lines
3.6 KiB
C++
Raw Normal View History

#include "config.h"
2021-07-06 21:45:45 +00:00
#if USE_S2_GEOMETRY
2021-04-28 22:16:45 +00:00
#include <Columns/ColumnsNumber.h>
#include <DataTypes/DataTypesNumber.h>
#include <Functions/FunctionFactory.h>
#include <Common/typeid_cast.h>
2021-07-08 15:31:39 +00:00
#include <Common/NaNUtils.h>
2021-10-02 07:13:14 +00:00
#include <base/range.h>
2021-04-28 22:16:45 +00:00
2021-07-06 21:45:45 +00:00
#include "s2_fwd.h"
2021-04-28 22:16:45 +00:00
class S2CellId;
2021-07-06 11:34:33 +00:00
namespace DB
2021-04-28 22:16:45 +00:00
{
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
2022-02-06 03:07:25 +00:00
extern const int ILLEGAL_COLUMN;
2021-04-28 22:16:45 +00:00
}
namespace
{
2021-07-08 15:31:39 +00:00
/**
* Accepts points of the form (longitude, latitude)
* Returns s2 identifier
*/
class FunctionGeoToS2 : public IFunction
2021-04-28 22:16:45 +00:00
{
public:
2021-07-08 15:31:39 +00:00
static constexpr auto name = "geoToS2";
2021-04-28 22:16:45 +00:00
static FunctionPtr create(ContextPtr)
{
2021-07-08 15:31:39 +00:00
return std::make_shared<FunctionGeoToS2>();
2021-04-28 22:16:45 +00:00
}
std::string getName() const override
{
return name;
}
size_t getNumberOfArguments() const override { return 2; }
bool useDefaultImplementationForConstants() const override { return true; }
2021-08-10 11:31:15 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
2021-04-28 22:16:45 +00:00
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
{
2021-07-07 10:39:16 +00:00
for (size_t i = 0; i < getNumberOfArguments(); ++i)
{
const auto * arg = arguments[i].get();
2021-07-08 21:10:00 +00:00
if (!WhichDataType(arg).isFloat64())
2021-07-07 10:39:16 +00:00
throw Exception(
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
"Illegal type {} of argument {} of function {}. Must be Float64",
2021-07-08 15:31:39 +00:00
arg->getName(), i, getName());
2021-04-28 22:16:45 +00:00
}
return std::make_shared<DataTypeUInt64>();
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
{
2022-02-19 06:42:27 +00:00
auto non_const_arguments = arguments;
for (auto & argument : non_const_arguments)
argument.column = argument.column->convertToFullColumnIfConst();
const auto * col_lon = checkAndGetColumn<ColumnFloat64>(non_const_arguments[0].column.get());
2022-02-06 03:07:25 +00:00
if (!col_lon)
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be Float64",
arguments[0].type->getName(),
1,
getName());
const auto & data_col_lon = col_lon->getData();
2022-02-19 06:42:27 +00:00
const auto * col_lat = checkAndGetColumn<ColumnFloat64>(non_const_arguments[1].column.get());
2022-02-06 03:07:25 +00:00
if (!col_lat)
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be Float64",
arguments[0].type->getName(),
2,
getName());
const auto & data_col_lat = col_lat->getData();
2021-04-28 22:16:45 +00:00
auto dst = ColumnVector<UInt64>::create();
auto & dst_data = dst->getData();
dst_data.resize(input_rows_count);
2021-12-20 04:32:52 +00:00
for (size_t row = 0; row < input_rows_count; ++row)
2021-04-28 22:16:45 +00:00
{
2022-02-06 03:07:25 +00:00
const Float64 lon = data_col_lon[row];
const Float64 lat = data_col_lat[row];
2021-04-28 22:16:45 +00:00
2021-07-08 15:31:39 +00:00
if (isNaN(lon) || isNaN(lat))
2022-02-06 03:07:25 +00:00
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Arguments must not be NaN");
2021-07-08 15:31:39 +00:00
2021-07-09 16:29:23 +00:00
if (!(isFinite(lon) && isFinite(lat)))
2022-02-06 03:07:25 +00:00
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Arguments must not be infinite");
2021-07-09 16:29:23 +00:00
2021-07-08 15:31:39 +00:00
/// S2 acceptes point as (latitude, longitude)
2021-04-28 22:16:45 +00:00
S2LatLng lat_lng = S2LatLng::FromDegrees(lat, lon);
S2CellId id(lat_lng);
dst_data[row] = id.id();
}
return dst;
}
};
}
REGISTER_FUNCTION(GeoToS2)
2021-04-28 22:16:45 +00:00
{
2021-07-08 15:31:39 +00:00
factory.registerFunction<FunctionGeoToS2>();
2021-04-28 22:16:45 +00:00
}
}
2021-07-06 21:45:45 +00:00
#endif