diff --git a/clouds/bigquery/modules/doc/h3/H3_FROMGEOGPOINT.md b/clouds/bigquery/modules/doc/h3/H3_FROMGEOGPOINT.md index 58d018d52..5f92aaee1 100644 --- a/clouds/bigquery/modules/doc/h3/H3_FROMGEOGPOINT.md +++ b/clouds/bigquery/modules/doc/h3/H3_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ H3_FROMGEOGPOINT(point, resolution) **Description** -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). This function is an alias for `H3_FROMGEOPOINT`. +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`. * `point`: `GEOGRAPHY` point to get the H3 cell from. * `resolution`: `INT64` number between 0 and 15 with the [H3 resolution](https://h3geo.org/docs/core-library/restable). diff --git a/clouds/bigquery/modules/doc/h3/H3_POLYFILL.md b/clouds/bigquery/modules/doc/h3/H3_POLYFILL.md index 72067fd74..7ff458703 100644 --- a/clouds/bigquery/modules/doc/h3/H3_POLYFILL.md +++ b/clouds/bigquery/modules/doc/h3/H3_POLYFILL.md @@ -6,7 +6,7 @@ H3_POLYFILL(geog, resolution) **Description** -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`. +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`. * `geog`: `GEOGRAPHY` representing the shape to cover. * `resolution`: `INT64` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)). diff --git a/clouds/bigquery/modules/doc/h3/H3_POLYFILL_MODE.md b/clouds/bigquery/modules/doc/h3/H3_POLYFILL_MODE.md index da41d4e68..00f2f3891 100644 --- a/clouds/bigquery/modules/doc/h3/H3_POLYFILL_MODE.md +++ b/clouds/bigquery/modules/doc/h3/H3_POLYFILL_MODE.md @@ -6,7 +6,7 @@ H3_POLYFILL_MODE(geog, resolution, mode) **Description** -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. +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. * `geog`: `GEOGRAPHY` representing the shape to cover. * `resolution`: `INT64` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)). diff --git a/clouds/bigquery/modules/doc/h3/H3_POLYFILL_TABLE.md b/clouds/bigquery/modules/doc/h3/H3_POLYFILL_TABLE.md index 885c23b72..5491aabb9 100644 --- a/clouds/bigquery/modules/doc/h3/H3_POLYFILL_TABLE.md +++ b/clouds/bigquery/modules/doc/h3/H3_POLYFILL_TABLE.md @@ -6,7 +6,7 @@ H3_POLYFILL_TABLE(input_query, resolution, mode, output_table) **Description** -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. +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. * `input_query`: `STRING` input data to polyfill. It must contain a column `geom` with the shape to cover. Additionally, other columns can be included. * `resolution`: `INT64` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)). diff --git a/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md b/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md index 0f8496e6a..a72b28323 100644 --- a/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md +++ b/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ QUADBIN_FROMGEOGPOINT(point, resolution) **Description** -Returns the Quadbin of a given point at a given level of detail. This function is an alias for `QUADBIN_FROMGEOPOINT`. +Returns the Quadbin of a given point at a requested resolution. This function is an alias for `QUADBIN_FROMGEOPOINT`. * `point`: `GEOGRAPHY` point to get the Quadbin from. * `resolution`: `INT64` level of detail or zoom. diff --git a/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md b/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md index e992b2bd1..4cddb420c 100644 --- a/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md +++ b/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md @@ -6,7 +6,7 @@ QUADBIN_FROMLONGLAT(longitude, latitude, resolution) **Description** -Returns the Quadbin representation of a point for a given level of detail and geographic coordinates. +Returns the Quadbin representation of a point for a requested resolution and geographic coordinates. * `longitude`: `FLOAT64` longitude (WGS84) of the point. * `latitude`: `FLOAT64` latitude (WGS84) of the point. diff --git a/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL.md b/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL.md index 86dbb8407..4abbf4126 100644 --- a/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL.md +++ b/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL.md @@ -6,7 +6,7 @@ QUADBIN_POLYFILL(geog, resolution) **Description** -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`. +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`. * `geog`: `GEOGRAPHY` representing the shape to cover. * `resolution`: `INT64` level of detail. The value must be between 0 and 26. diff --git a/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_MODE.md b/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_MODE.md index a88990d71..80e10d6c4 100644 --- a/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_MODE.md +++ b/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_MODE.md @@ -6,7 +6,7 @@ QUADBIN_POLYFILL_MODE(geog, resolution, mode) **Description** -Returns an array of quadbin cell indexes contained in the given geography at a given level of detail. Containment is determined by the mode: center, intersects, contains. +Returns an array of quadbin cell indexes contained in the given geography at a requested resolution. Containment is determined by the mode: center, intersects, contains. * `geog`: `GEOGRAPHY` representing the shape to cover. * `resolution`: `INT64` level of detail. The value must be between 0 and 26. diff --git a/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_TABLE.md b/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_TABLE.md index f3f59728a..ccc695491 100644 --- a/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_TABLE.md +++ b/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL_TABLE.md @@ -6,7 +6,7 @@ QUADBIN_POLYFILL_TABLE(input_query, resolution, mode, output_table) **Description** -Returns a table with the quadbin 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 quadbin column. +Returns a table with the quadbin 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 quadbin column. * `input_query`: `STRING` input data to polyfill. It must contain a column `geom` with the shape to cover. Additionally, other columns can be included. * `resolution`: `INT64` level of detail. The value must be between 0 and 26. diff --git a/clouds/bigquery/modules/doc/s2/S2_FROMGEOGPOINT.md b/clouds/bigquery/modules/doc/s2/S2_FROMGEOGPOINT.md index 9e4899640..f7e40ce5a 100644 --- a/clouds/bigquery/modules/doc/s2/S2_FROMGEOGPOINT.md +++ b/clouds/bigquery/modules/doc/s2/S2_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ S2_FROMGEOGPOINT(point, resolution) **Description** -Returns the S2 cell ID of a given point at a given level of detail. +Returns the S2 cell ID of a given point at a requested resolution. * `point`: `GEOGRAPHY` point to get the ID from. * `resolution`: `INT64` level of detail or zoom. diff --git a/clouds/postgres/modules/doc/h3/H3_FROMGEOGPOINT.md b/clouds/postgres/modules/doc/h3/H3_FROMGEOGPOINT.md index c5af10567..3972eebef 100644 --- a/clouds/postgres/modules/doc/h3/H3_FROMGEOGPOINT.md +++ b/clouds/postgres/modules/doc/h3/H3_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ H3_FROMGEOGPOINT(point, resolution) **Description** -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). This function is an alias for `H3_FROMGEOPOINT`. +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`. * `point`: `GEOMETRY` point to get the H3 cell from. * `resolution`: `INT` number between 0 and 15 with the [H3 resolution](https://h3geo.org/docs/core-library/restable). diff --git a/clouds/postgres/modules/doc/h3/H3_POLYFILL.md b/clouds/postgres/modules/doc/h3/H3_POLYFILL.md index f0d82c1a3..76b71f69f 100644 --- a/clouds/postgres/modules/doc/h3/H3_POLYFILL.md +++ b/clouds/postgres/modules/doc/h3/H3_POLYFILL.md @@ -6,7 +6,7 @@ H3_POLYFILL(geom, resolution [, mode]) **Description** -Returns an array of H3 cell indexes contained in the given geometry at a given level of detail. Containment is determined by the mode: center, intersects, contains. +Returns an array of H3 cell indexes contained in the given geometry at a requested resolution. Containment is determined by the mode: center, intersects, contains. * `geom`: `GEOMETRY` representing the shape to cover. * `resolution`: `INT` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)). diff --git a/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md b/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md index b0cf5f192..d8d339541 100644 --- a/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md +++ b/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ QUADBIN_FROMGEOGPOINT(point, resolution) **Description** -Returns the Quadbin of a given point at a given level of detail. This function is an alias for `QUADBIN_FROMGEOPOINT`. +Returns the Quadbin of a given point at a requested resolution. This function is an alias for `QUADBIN_FROMGEOPOINT`. * `point`: `GEOMETRY` point to get the Quadbin from. * `resolution`: `BIGINT` level of detail or zoom. diff --git a/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md b/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md index 459e6209a..c775c5e42 100644 --- a/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md +++ b/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md @@ -6,7 +6,7 @@ QUADBIN_FROMLONGLAT(longitude, latitude, resolution) **Description** -Returns the Quadbin representation of a point for a given level of detail and geographic coordinates. +Returns the Quadbin representation of a point for a requested resolution and geographic coordinates. * `longitude`: `DOUBLE PRECISION` longitude (WGS84) of the point. * `latitude`: `DOUBLE PRECISION` latitude (WGS84) of the point. diff --git a/clouds/postgres/modules/doc/quadbin/QUADBIN_POLYFILL.md b/clouds/postgres/modules/doc/quadbin/QUADBIN_POLYFILL.md index 5634f4200..a6ffed008 100644 --- a/clouds/postgres/modules/doc/quadbin/QUADBIN_POLYFILL.md +++ b/clouds/postgres/modules/doc/quadbin/QUADBIN_POLYFILL.md @@ -6,7 +6,7 @@ QUADBIN_POLYFILL(geom, resolution [, mode]) **Description** -Returns an array of quadbin cell indexes contained in the given geometry at a given level of detail. Containment is determined by the mode: center, intersects, contains. +Returns an array of quadbin cell indexes contained in the given geometry at a requested resolution. Containment is determined by the mode: center, intersects, contains. * `geom`: `GEOMETRY` representing the shape to cover. * `resolution`: `INT` level of detail. The value must be between 0 and 26. diff --git a/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md b/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md index db16ae0cf..9bceebc8f 100644 --- a/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md +++ b/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ QUADBIN_FROMGEOGPOINT(point, resolution) **Description** -Returns the Quadbin of a given point at a given level of detail. This function is an alias for `QUADBIN_FROMGEOPOINT`. +Returns the Quadbin of a given point at a requested resolution. This function is an alias for `QUADBIN_FROMGEOPOINT`. * `point`: `GEOMETRY` point to get the Quadbin from. * `resolution`: `INT` level of detail or zoom. diff --git a/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md b/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md index 64988427d..ee210792f 100644 --- a/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md +++ b/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md @@ -6,7 +6,7 @@ QUADBIN_FROMLONGLAT(longitude, latitude, resolution) **Description** -Returns the Quadbin representation of a point for a given level of detail and geographic coordinates. +Returns the Quadbin representation of a point for a requested resolution and geographic coordinates. * `longitude`: `FLOAT8` longitude (WGS84) of the point. * `latitude`: `FLOAT8` latitude (WGS84) of the point. diff --git a/clouds/redshift/modules/doc/quadbin/QUADBIN_POLYFILL.md b/clouds/redshift/modules/doc/quadbin/QUADBIN_POLYFILL.md index b639558d1..4a003d066 100644 --- a/clouds/redshift/modules/doc/quadbin/QUADBIN_POLYFILL.md +++ b/clouds/redshift/modules/doc/quadbin/QUADBIN_POLYFILL.md @@ -6,7 +6,7 @@ QUADBIN_POLYFILL(geography, resolution) **Description** -Returns an array of Quadbins that intersect with the given geography at a given level of detail. +Returns an array of Quadbins that intersect with the given geography at a requested resolution. * `geography`: `GEOMETRY` geography to extract the Quadbins from. * `resolution`: `INT` level of detail or zoom. diff --git a/clouds/redshift/modules/doc/s2/S2_FROMGEOGPOINT.md b/clouds/redshift/modules/doc/s2/S2_FROMGEOGPOINT.md index a62c6f5fb..b541d8084 100644 --- a/clouds/redshift/modules/doc/s2/S2_FROMGEOGPOINT.md +++ b/clouds/redshift/modules/doc/s2/S2_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ S2_FROMGEOGPOINT(point, resolution) **Description** -Returns the S2 cell ID of a given point at a given level of detail. +Returns the S2 cell ID of a given point at a requested resolution. * `point`: `GEOGRAPHY` vertical coordinate of the map. * `resolution`: `INT4` level of detail or zoom. diff --git a/clouds/redshift/modules/doc/s2/S2_FROMLONGLAT.md b/clouds/redshift/modules/doc/s2/S2_FROMLONGLAT.md index 6141521a0..958e53b53 100644 --- a/clouds/redshift/modules/doc/s2/S2_FROMLONGLAT.md +++ b/clouds/redshift/modules/doc/s2/S2_FROMLONGLAT.md @@ -6,7 +6,7 @@ S2_FROMLONGLAT(longitude, latitude, resolution) **Description** -Returns the S2 cell ID representation for a given level of detail and geographic coordinates. +Returns the S2 cell ID representation for a requested resolution and geographic coordinates. * `longitude`: `FLOAT8` horizontal coordinate of the map. * `latitude`: `FLOAT8` vertical coordinate of the map. diff --git a/clouds/snowflake/modules/doc/h3/H3_FROMGEOGPOINT.md b/clouds/snowflake/modules/doc/h3/H3_FROMGEOGPOINT.md index f6c5f1686..c4cf090db 100644 --- a/clouds/snowflake/modules/doc/h3/H3_FROMGEOGPOINT.md +++ b/clouds/snowflake/modules/doc/h3/H3_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ H3_FROMGEOGPOINT(point, resolution) **Description** -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). This function is an alias for `H3_FROMGEOPOINT`. +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`. * `point`: `GEOGRAPHY` point to get the H3 cell from. * `resolution`: `INT` number between 0 and 15 with the [H3 resolution](https://h3geo.org/docs/core-library/restable). diff --git a/clouds/snowflake/modules/doc/h3/H3_POLYFILL_TABLE.md b/clouds/snowflake/modules/doc/h3/H3_POLYFILL_TABLE.md index 4378802bf..60009de19 100644 --- a/clouds/snowflake/modules/doc/h3/H3_POLYFILL_TABLE.md +++ b/clouds/snowflake/modules/doc/h3/H3_POLYFILL_TABLE.md @@ -6,7 +6,7 @@ H3_POLYFILL_TABLE(input_query, resolution, mode, output_table) **Description** -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. +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. * `input_query`: `STRING` input data to polyfill. It must contain a column `geom` with the shape to cover. Additionally, other columns can be included. * `resolution`: `INT` level of detail. The value must be between 0 and 15 ([H3 resolution table](https://h3geo.org/docs/core-library/restable)). diff --git a/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md b/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md index ea240aecb..ef1c01cc2 100644 --- a/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md +++ b/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ QUADBIN_FROMGEOGPOINT(point, resolution) **Description** -Returns the Quadbin of a given point at a given level of detail. This function is an alias for `QUADBIN_FROMGEOPOINT`. +Returns the Quadbin of a given point at a requested resolution. This function is an alias for `QUADBIN_FROMGEOPOINT`. * `point`: `GEOGRAPHY` point to get the Quadbin from. * `resolution`: `INT` level of detail or zoom. diff --git a/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md b/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md index d6e28cf3c..b57334cb3 100644 --- a/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md +++ b/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md @@ -6,7 +6,7 @@ QUADBIN_FROMLONGLAT(longitude, latitude, resolution) **Description** -Returns the Quadbin representation of a point for a given level of detail and geographic coordinates. +Returns the Quadbin representation of a point for a requested resolution and geographic coordinates. * `longitude`: `FLOAT64` longitude (WGS84) of the point. * `latitude`: `FLOAT64` latitude (WGS84) of the point. diff --git a/clouds/snowflake/modules/doc/quadbin/QUADBIN_POLYFILL.md b/clouds/snowflake/modules/doc/quadbin/QUADBIN_POLYFILL.md index 18f57a0e9..f8e54f0aa 100644 --- a/clouds/snowflake/modules/doc/quadbin/QUADBIN_POLYFILL.md +++ b/clouds/snowflake/modules/doc/quadbin/QUADBIN_POLYFILL.md @@ -6,7 +6,7 @@ QUADBIN_POLYFILL(geography, resolution) **Description** -Returns an array of Quadbins that intersect with the given geography at a given level of detail. +Returns an array of Quadbins that intersect with the given geography at a requested resolution. * `geography`: `GEOGRAPHY` geography to extract the Quadbins from. * `resolution`: `INT` level of detail or zoom. diff --git a/clouds/snowflake/modules/doc/s2/S2_FROMGEOGPOINT.md b/clouds/snowflake/modules/doc/s2/S2_FROMGEOGPOINT.md index aeb25feae..16d3bf577 100644 --- a/clouds/snowflake/modules/doc/s2/S2_FROMGEOGPOINT.md +++ b/clouds/snowflake/modules/doc/s2/S2_FROMGEOGPOINT.md @@ -6,7 +6,7 @@ S2_FROMGEOGPOINT(point, resolution) **Description** -Returns the S2 cell ID of a given point at a given level of detail. +Returns the S2 cell ID of a given point at a requested resolution. * `point`: `GEOGRAPHY` point to get the ID from. * `resolution`: `INT` level of detail or zoom.