ClickHouse/src/Functions/geoToH3.cpp

113 lines
3.4 KiB
C++
Raw Normal View History

2020-11-04 14:51:41 +00:00
#if !defined(ARCADIA_BUILD)
# include "config_functions.h"
#endif
#if USE_H3
2019-03-25 14:34:52 +00:00
#include <array>
#include <math.h>
#include <Columns/ColumnsNumber.h>
#include <DataTypes/DataTypesNumber.h>
2019-06-20 10:44:34 +00:00
#include <Functions/FunctionFactory.h>
2021-05-17 07:30:42 +00:00
#include <Functions/IFunction.h>
2019-03-25 14:34:52 +00:00
#include <Common/typeid_cast.h>
2021-10-02 07:13:14 +00:00
#include <base/range.h>
2019-03-25 14:34:52 +00:00
2020-06-19 10:06:42 +00:00
#include <h3api.h>
2019-06-26 17:02:31 +00:00
2019-03-25 14:34:52 +00:00
namespace DB
{
namespace ErrorCodes
{
2020-02-25 18:20:08 +00:00
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
2021-06-22 09:23:27 +00:00
extern const int INCORRECT_DATA;
2019-03-25 14:34:52 +00:00
}
2020-09-07 18:00:37 +00:00
namespace
{
2019-03-25 14:34:52 +00:00
/// Implements the function geoToH3 which takes 3 arguments (latitude, longitude and h3 resolution)
/// and returns h3 index of this point
class FunctionGeoToH3 : public IFunction
{
public:
static constexpr auto name = "geoToH3";
2021-06-01 12:20:52 +00:00
static FunctionPtr create(ContextPtr) { return std::make_shared<FunctionGeoToH3>(); }
2019-03-25 14:34:52 +00:00
std::string getName() const override { return name; }
size_t getNumberOfArguments() const override { return 3; }
bool useDefaultImplementationForConstants() const override { return true; }
2021-06-22 16:21:23 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
2019-03-25 14:34:52 +00:00
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
{
2020-04-22 08:31:10 +00:00
const auto * arg = arguments[0].get();
2019-03-25 14:34:52 +00:00
if (!WhichDataType(arg).isFloat64())
throw Exception(
2021-07-08 15:31:39 +00:00
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
"Illegal type {} of argument {} of function {}. Must be Float64",
arg->getName(), 1, getName());
2019-03-25 14:34:52 +00:00
arg = arguments[1].get();
if (!WhichDataType(arg).isFloat64())
throw Exception(
2021-07-08 15:31:39 +00:00
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
"Illegal type {} of argument {} of function {}. Must be Float64",
arg->getName(), 2, getName());
2019-03-25 14:34:52 +00:00
arg = arguments[2].get();
if (!WhichDataType(arg).isUInt8())
throw Exception(
2021-07-08 15:31:39 +00:00
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
"Illegal type {} of argument {} of function {}. Must be UInt8",
arg->getName(), 3, getName());
2019-03-25 14:34:52 +00:00
return std::make_shared<DataTypeUInt64>();
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
2019-03-25 14:34:52 +00:00
{
2020-10-19 13:42:14 +00:00
const auto * col_lon = arguments[0].column.get();
const auto * col_lat = arguments[1].column.get();
const auto * col_res = arguments[2].column.get();
2019-06-30 20:54:06 +00:00
auto dst = ColumnVector<UInt64>::create();
auto & dst_data = dst->getData();
dst_data.resize(input_rows_count);
2019-03-25 14:34:52 +00:00
2021-06-15 19:55:21 +00:00
for (const auto row : collections::range(0, input_rows_count))
2019-03-25 14:34:52 +00:00
{
2019-06-30 20:54:06 +00:00
const double lon = col_lon->getFloat64(row);
const double lat = col_lat->getFloat64(row);
const UInt8 res = col_res->getUInt(row);
2019-03-25 14:34:52 +00:00
2021-06-22 09:23:27 +00:00
LatLng coord;
coord.lng = degsToRads(lon);
2019-12-16 18:51:42 +00:00
coord.lat = degsToRads(lat);
2021-07-10 02:46:11 +00:00
2021-07-09 03:15:53 +00:00
H3Index hindex;
H3Error err = latLngToCell(&coord, res, &hindex);
if (err)
2021-07-09 19:16:57 +00:00
throw Exception(ErrorCodes::INCORRECT_DATA, "Incorrect coordinates latitude: {}, longitude: {}, error: {}", coord.lat, coord.lng, err);
2019-06-30 20:54:06 +00:00
dst_data[row] = hindex;
2019-03-25 14:34:52 +00:00
}
2019-06-30 20:54:06 +00:00
2020-10-19 13:42:14 +00:00
return dst;
2019-03-25 14:34:52 +00:00
}
};
2020-09-07 18:00:37 +00:00
}
2019-03-25 14:34:52 +00:00
void registerFunctionGeoToH3(FunctionFactory & factory)
{
2019-06-30 18:20:32 +00:00
factory.registerFunction<FunctionGeoToH3>();
2019-03-25 14:34:52 +00:00
}
}
2020-11-04 14:51:41 +00:00
#endif