From 30a28cd1a3d69d2a734fbb1a38b7a1dd1991a2b3 Mon Sep 17 00:00:00 2001 From: Valentin de la Cruz Barquero <6054336+vdelacruzb@users.noreply.github.com> Date: Thu, 4 Apr 2024 10:56:16 +0200 Subject: [PATCH] docs(bq,sf,rs|processing): update voronoi doc (#492) --- clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md | 6 ++++++ .../bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md | 6 ++++++ clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md | 6 ++++++ .../bigquery/modules/doc/processing/ST_VORONOIPOLYGONS.md | 6 ++++++ clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md | 6 ++++++ .../redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md | 6 ++++++ clouds/redshift/modules/doc/processing/ST_VORONOILINES.md | 6 ++++++ .../redshift/modules/doc/processing/ST_VORONOIPOLYGONS.md | 6 ++++++ clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md | 6 ++++++ .../snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md | 6 ++++++ clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md | 6 ++++++ .../snowflake/modules/doc/processing/ST_VORONOIPOLYGONS.md | 6 ++++++ 12 files changed, 72 insertions(+) diff --git a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md index 4b96923d2..0c11c24ea 100644 --- a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md +++ b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md @@ -12,6 +12,12 @@ Calculates the Delaunay triangulation of the points provided. An array of line s Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting polygons (about 1 meter). This can also result in some points being merged together, so that fewer polygons than expected may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY` diff --git a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index 70fe57865..221d62bfb 100644 --- a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md +++ b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md @@ -12,6 +12,12 @@ Calculates the Delaunay triangulation of the points provided. An array of polygo Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting polygons (about 1 meter). This can also result in some points being merged together, so that fewer polygons than expected may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY` diff --git a/clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md b/clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md index a8c71d58e..6acabf128 100644 --- a/clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md +++ b/clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md @@ -13,6 +13,12 @@ Calculates the Voronoi diagram of the points provided. An array of lines is retu Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting lines (about 1 meter). This can also result in some points being merged together, so that fewer lines than input points may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY` diff --git a/clouds/bigquery/modules/doc/processing/ST_VORONOIPOLYGONS.md b/clouds/bigquery/modules/doc/processing/ST_VORONOIPOLYGONS.md index f9d35af2a..4962e351f 100644 --- a/clouds/bigquery/modules/doc/processing/ST_VORONOIPOLYGONS.md +++ b/clouds/bigquery/modules/doc/processing/ST_VORONOIPOLYGONS.md @@ -13,6 +13,12 @@ Calculates the Voronoi diagram of the points provided. An array of polygons is r Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting polygons (about 1 meter). This can also result in some points being merged together, so that fewer polygons than input points may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY` diff --git a/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md b/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md index 37802a1ae..4f9f17d73 100644 --- a/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md +++ b/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md @@ -10,6 +10,12 @@ Calculates the Delaunay triangulation of the points provided. A MultiLineString * `points`: `GEOMETRY` MultiPoint input to the Delaunay triangulation. +````hint:warning +**warning** + +The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `VARCHAR(MAX)` diff --git a/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md b/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index 4fb96ab0f..a001d8d41 100644 --- a/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md +++ b/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md @@ -10,6 +10,12 @@ Calculates the Delaunay triangulation of the points provided. A MultiPolygon obj * `points`: `GEOMETRY` MultiPoint input to the Delaunay triangulation. +````hint:warning +**warning** + +The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `VARCHAR(MAX)` diff --git a/clouds/redshift/modules/doc/processing/ST_VORONOILINES.md b/clouds/redshift/modules/doc/processing/ST_VORONOILINES.md index 5404eefa1..77f4c9f9e 100644 --- a/clouds/redshift/modules/doc/processing/ST_VORONOILINES.md +++ b/clouds/redshift/modules/doc/processing/ST_VORONOILINES.md @@ -10,6 +10,12 @@ Calculates the Voronoi diagram of the points provided. A MultiLineString object * `points`: `GEOMETRY` MultiPoint input to the Voronoi diagram. +````hint:warning +**warning** + +The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `VARCHAR(MAX)` diff --git a/clouds/redshift/modules/doc/processing/ST_VORONOIPOLYGONS.md b/clouds/redshift/modules/doc/processing/ST_VORONOIPOLYGONS.md index c9b70a672..e235f4c15 100644 --- a/clouds/redshift/modules/doc/processing/ST_VORONOIPOLYGONS.md +++ b/clouds/redshift/modules/doc/processing/ST_VORONOIPOLYGONS.md @@ -10,6 +10,12 @@ Calculates the Voronoi diagram of the points provided. A MultiPolygon object is * `points`: `GEOMETRY` MultiPoint input to the Voronoi diagram. +````hint:warning +**warning** + +The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `VARCHAR(MAX)` diff --git a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md index f850b2045..a1e426a0c 100644 --- a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md +++ b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md @@ -12,6 +12,12 @@ Calculates the Delaunay triangulation of the points provided. An array of linest Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting polygons (about 1 meter). This can also result in some points being merged together, so that fewer polygons than expected may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY` diff --git a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index bb51beca6..aed95ddeb 100644 --- a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md +++ b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md @@ -12,6 +12,12 @@ Calculates the Delaunay triangulation of the points provided. An array of polygo Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting polygons (about 1 meter). This can also result in some points being merged together, so that fewer polygons than expected may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY` diff --git a/clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md b/clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md index a327c92a1..aee0db4a9 100644 --- a/clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md +++ b/clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md @@ -13,6 +13,12 @@ Calculates the Voronoi diagram of the points provided. An array of linestrings i Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting lines (about 1 meter). This can also result in some points being merged together, so that fewer lines than input points may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY` diff --git a/clouds/snowflake/modules/doc/processing/ST_VORONOIPOLYGONS.md b/clouds/snowflake/modules/doc/processing/ST_VORONOIPOLYGONS.md index d4ca5d067..bc035aa98 100644 --- a/clouds/snowflake/modules/doc/processing/ST_VORONOIPOLYGONS.md +++ b/clouds/snowflake/modules/doc/processing/ST_VORONOIPOLYGONS.md @@ -13,6 +13,12 @@ Calculates the Voronoi diagram of the points provided. An array of polygons in G Due to technical limitations of the underlying libraries used, the input points' coordinates are truncated to 5 decimal places in order to avoid problems that happen with close but distinct input points. This limits the precision of the results and can alter slightly the position of the resulting polygons (about 1 meter). This can also result in some points being merged together, so that fewer polygons than input points may result. +````hint:warning +**warning** + +The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points. +```` + **Return type** `ARRAY`