From 515ea6d617eae05b6869079a3d7c85eaba20f60d Mon Sep 17 00:00:00 2001 From: vdelacruzb Date: Thu, 4 Apr 2024 10:39:22 +0200 Subject: [PATCH 1/2] update voronoi doc --- 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..6b3bef646 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 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_DELAUNAYPOLYGONS.md b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index 70fe57865..dd98230b9 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 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_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..bb2440086 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 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_DELAUNAYPOLYGONS.md b/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index 4fb96ab0f..c7a951460 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 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_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..2cd22b22b 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 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_DELAUNAYPOLYGONS.md b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index bb51beca6..44e7d8e24 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 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_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` From a9b967077da26ecf1b0044b190b104b0cc3d6b38 Mon Sep 17 00:00:00 2001 From: vdelacruzb Date: Thu, 4 Apr 2024 10:44:02 +0200 Subject: [PATCH 2/2] update Delaunay docs --- clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md | 2 +- clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md | 2 +- clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md | 2 +- clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md | 2 +- clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md | 2 +- clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md index 6b3bef646..0c11c24ea 100644 --- a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md +++ b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md @@ -15,7 +15,7 @@ Due to technical limitations of the underlying libraries used, the input points' ````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. +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** diff --git a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index dd98230b9..221d62bfb 100644 --- a/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md +++ b/clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md @@ -15,7 +15,7 @@ Due to technical limitations of the underlying libraries used, the input points' ````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. +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** diff --git a/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md b/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md index bb2440086..4f9f17d73 100644 --- a/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md +++ b/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md @@ -13,7 +13,7 @@ Calculates the Delaunay triangulation of the points provided. A MultiLineString ````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. +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** diff --git a/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md b/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index c7a951460..a001d8d41 100644 --- a/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md +++ b/clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md @@ -13,7 +13,7 @@ Calculates the Delaunay triangulation of the points provided. A MultiPolygon obj ````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. +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** diff --git a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md index 2cd22b22b..a1e426a0c 100644 --- a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md +++ b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md @@ -15,7 +15,7 @@ Due to technical limitations of the underlying libraries used, the input points' ````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. +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** diff --git a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md index 44e7d8e24..aed95ddeb 100644 --- a/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md +++ b/clouds/snowflake/modules/doc/processing/ST_DELAUNAYPOLYGONS.md @@ -15,7 +15,7 @@ Due to technical limitations of the underlying libraries used, the input points' ````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. +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**