ClickHouse/src/Functions/geoToH3.cpp

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

152 lines
5.0 KiB
C++
Raw Normal View History

#include "config.h"
2020-11-04 14:51:41 +00:00
#if USE_H3
2019-03-25 14:34:52 +00:00
#include <array>
#include <cmath>
2019-03-25 14:34:52 +00:00
#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
2022-02-13 06:05:28 +00:00
#include <constants.h>
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;
2022-02-13 03:01:04 +00:00
extern const int ILLEGAL_COLUMN;
2022-02-13 07:36:40 +00:00
extern const int ARGUMENT_OUT_OF_BOUND;
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
{
2022-02-18 15:57:54 +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-13 03:01:04 +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_lon = col_lon->getData();
2022-02-18 15:57:54 +00:00
const auto * col_lat = checkAndGetColumn<ColumnFloat64>(non_const_arguments[1].column.get());
2022-02-13 03:01:04 +00:00
if (!col_lat)
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be Float64.",
arguments[1].type->getName(),
2,
getName());
const auto & data_lat = col_lat->getData();
2022-02-18 15:57:54 +00:00
const auto * col_res = checkAndGetColumn<ColumnUInt8>(non_const_arguments[2].column.get());
2022-02-13 03:01:04 +00:00
if (!col_res)
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be UInt8.",
arguments[2].type->getName(),
3,
getName());
const auto & data_res = col_res->getData();
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-12-20 10:32:13 +00:00
for (size_t row = 0; row < input_rows_count; ++row)
2019-03-25 14:34:52 +00:00
{
2022-02-13 03:01:04 +00:00
const double lon = data_lon[row];
const double lat = data_lat[row];
const UInt8 res = data_res[row];
2019-03-25 14:34:52 +00:00
2022-02-13 06:05:28 +00:00
if (res > MAX_H3_RES)
throw Exception(
ErrorCodes::ARGUMENT_OUT_OF_BOUND,
2023-01-23 23:46:03 +00:00
"The argument 'resolution' ({}) of function {} is out of bounds because the maximum resolution in H3 library is {}",
2022-02-13 06:05:28 +00:00
toString(res),
getName(),
MAX_H3_RES);
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
REGISTER_FUNCTION(GeoToH3)
2019-03-25 14:34:52 +00:00
{
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