Skip to content

Commit 1ddd3ed

Browse files
authored
release: 2024-10-28 (#533)
1 parent 109a961 commit 1ddd3ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+262
-49
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ CARTO Analytics Toolbox Core.
44

55
All notable commits to this project will be documented in this file.
66

7+
## 2024-10-28
8+
9+
- chore(bq): fix @google-cloud/bigquery to version 7.9.0 (#531)
10+
- chore(bq,sf,rs,pg|h3,quadbin): added "geo" aliases for certain functions (#526)
11+
712
## 2024-09-23
813

914
- feat(sf): added warehouse option for SF (#524)

clouds/bigquery/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ CARTO Analytics Toolbox Core for BigQuery.
44

55
All notable commits to this project will be documented in this file.
66

7+
## [1.2.4] - 2024-10-28
8+
9+
- chore: fix @google-cloud/bigquery to version 7.9.0 (#531)
10+
- chore(h3,quadbin): added "geo" aliases for certain functions (#526)
11+
712
## [1.2.3] - 2024-06-27
813

914
- chore(quadbin): optimize polyfill (#513)

clouds/bigquery/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"license": "BSD-3-Clause",
33
"devDependencies": {
4-
"@google-cloud/bigquery": "^7.3.0",
4+
"@google-cloud/bigquery": "7.9.0",
55
"@rollup/plugin-commonjs": "^17.1.0",
66
"@rollup/plugin-json": "^4.1.0",
77
"@rollup/plugin-node-resolve": "^13.0.0",

clouds/bigquery/modules/doc/h3/H3_FROMGEOGPOINT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ H3_FROMGEOGPOINT(point, resolution)
66

77
**Description**
88

9-
Returns the H3 cell index that the point belongs to in the required `resolution`. It will return `null` on error (invalid geography type or resolution out of bounds).
9+
Returns the H3 cell index that the point belongs to in the requested `resolution`. It will return `null` on error (invalid geography type or resolution out of bounds). This function is an alias for `H3_FROMGEOPOINT`.
1010

1111
* `point`: `GEOGRAPHY` point to get the H3 cell from.
1212
* `resolution`: `INT64` number between 0 and 15 with the [H3 resolution](https://h3geo.org/docs/core-library/restable).

clouds/bigquery/modules/doc/h3/H3_POLYFILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ H3_POLYFILL(geog, resolution)
66

77
**Description**
88

9-
Returns an array of H3 cell indexes contained in the given geography (Polygon, MultiPolygon) at a given level of detail. Containment is determined by the cells' center. This function is equivalent to [`H3_POLYFILL_MODE`](h3#h3_polyfill_mode) with mode `center`.
9+
Returns an array of H3 cell indexes contained in the given geography (Polygon, MultiPolygon) at a requested resolution. Containment is determined by the cells' center. This function is equivalent to [`H3_POLYFILL_MODE`](h3#h3_polyfill_mode) with mode `center`.
1010

1111
* `geog`: `GEOGRAPHY` representing the shape to cover.
1212
* `resolution`: `INT64` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)).

clouds/bigquery/modules/doc/h3/H3_POLYFILL_MODE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ H3_POLYFILL_MODE(geog, resolution, mode)
66

77
**Description**
88

9-
Returns an array of H3 cell indexes contained in the given geography at a given level of detail. Containment is determined by the mode: center, intersects, contains.
9+
Returns an array of H3 cell indexes contained in the given geography at a requested resolution. Containment is determined by the mode: center, intersects, contains.
1010

1111
* `geog`: `GEOGRAPHY` representing the shape to cover.
1212
* `resolution`: `INT64` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)).

clouds/bigquery/modules/doc/h3/H3_POLYFILL_TABLE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ H3_POLYFILL_TABLE(input_query, resolution, mode, output_table)
66

77
**Description**
88

9-
Returns a table with the H3 cell indexes contained in the given geography at a given level of detail. Containment is determined by the mode: center, intersects, contains. All the attributes except the geography will be included in the output table, clustered by the h3 column.
9+
Returns a table with the H3 cell indexes contained in the given geography at a requested resolution. Containment is determined by the mode: center, intersects, contains. All the attributes except the geography will be included in the output table, clustered by the h3 column.
1010

1111
* `input_query`: `STRING` input data to polyfill. It must contain a column `geom` with the shape to cover. Additionally, other columns can be included.
1212
* `resolution`: `INT64` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)).

clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ QUADBIN_FROMGEOGPOINT(point, resolution)
66

77
**Description**
88

9-
Returns the Quadbin of a given point at a given level of detail.
9+
Returns the Quadbin of a given point at a requested resolution. This function is an alias for `QUADBIN_FROMGEOPOINT`.
1010

1111
* `point`: `GEOGRAPHY` point to get the Quadbin from.
1212
* `resolution`: `INT64` level of detail or zoom.

clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ QUADBIN_FROMLONGLAT(longitude, latitude, resolution)
66

77
**Description**
88

9-
Returns the Quadbin representation of a point for a given level of detail and geographic coordinates.
9+
Returns the Quadbin representation of a point for a requested resolution and geographic coordinates.
1010

1111
* `longitude`: `FLOAT64` longitude (WGS84) of the point.
1212
* `latitude`: `FLOAT64` latitude (WGS84) of the point.

clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ QUADBIN_POLYFILL(geog, resolution)
66

77
**Description**
88

9-
Returns an array of quadbin cell indexes contained in the given geography (Polygon, MultiPolygon) at a given level of detail. Containment is determined by the cells' center. This function is equivalent to [`QUADBIN_POLYFILL_MODE`](quadbin#quadbin_polyfill_mode) with mode `center`.
9+
Returns an array of quadbin cell indexes contained in the given geography (Polygon, MultiPolygon) at a requested resolution. Containment is determined by the cells' center. This function is equivalent to [`QUADBIN_POLYFILL_MODE`](quadbin#quadbin_polyfill_mode) with mode `center`.
1010

1111
* `geog`: `GEOGRAPHY` representing the shape to cover.
1212
* `resolution`: `INT64` level of detail. The value must be between 0 and 26.

0 commit comments

Comments
 (0)