Merge pull request #33510 from bharatnc/ncb/h3-misc-minor-fixes

fix variable name in h3 misc funcs
This commit is contained in:
Maksim Kita 2022-01-11 10:48:44 +03:00 committed by GitHub
commit 62babe928a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -60,8 +60,8 @@ public:
for (size_t row = 0; row < input_rows_count; ++row)
{
const UInt64 resolution = data[row];
Float64 res = cellAreaM2(resolution);
const UInt64 index = data[row];
Float64 res = cellAreaM2(index);
dst_data[row] = res;
}

View File

@ -60,8 +60,8 @@ public:
for (size_t row = 0; row < input_rows_count; ++row)
{
const UInt64 resolution = data[row];
Float64 res = cellAreaRads2(resolution);
const UInt64 index = data[row];
Float64 res = cellAreaRads2(index);
dst_data[row] = res;
}