ClickHouse/src/Functions/geoToS2.cpp

112 lines
2.8 KiB
C++
Raw Normal View History

2021-10-27 23:10:39 +00:00
#include "config_functions.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;
}
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
{
const auto * col_lon = arguments[0].column.get();
const auto * col_lat = arguments[1].column.get();
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
{
const Float64 lon = col_lon->getFloat64(row);
const Float64 lat = col_lat->getFloat64(row);
2021-07-08 15:31:39 +00:00
if (isNaN(lon) || isNaN(lat))
2021-07-09 16:29:23 +00:00
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
2021-07-08 15:31:39 +00:00
"Arguments must not be NaN");
2021-07-09 16:29:23 +00:00
if (!(isFinite(lon) && isFinite(lat)))
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
"Arguments must not be infinite");
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;
}
};
}
2021-07-08 15:31:39 +00:00
void registerFunctionGeoToS2(FunctionFactory & factory)
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