Skip to content

Commit

Permalink
docs(bq,sf,rs|processing): update voronoi doc (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelacruzb authored Apr 4, 2024
1 parent 8e0a749 commit 30a28cd
Show file tree
Hide file tree
Showing 12 changed files with 72 additions and 0 deletions.
6 changes: 6 additions & 0 deletions clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<GEOGRAPHY>`
Expand Down
6 changes: 6 additions & 0 deletions clouds/bigquery/modules/doc/processing/ST_DELAUNAYPOLYGONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<GEOGRAPHY>`
Expand Down
6 changes: 6 additions & 0 deletions clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<GEOGRAPHY>`
Expand Down
6 changes: 6 additions & 0 deletions clouds/bigquery/modules/doc/processing/ST_VORONOIPOLYGONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<GEOGRAPHY>`
Expand Down
6 changes: 6 additions & 0 deletions clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`
Expand Down
6 changes: 6 additions & 0 deletions clouds/redshift/modules/doc/processing/ST_DELAUNAYPOLYGONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`
Expand Down
6 changes: 6 additions & 0 deletions clouds/redshift/modules/doc/processing/ST_VORONOILINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`
Expand Down
6 changes: 6 additions & 0 deletions clouds/redshift/modules/doc/processing/ST_VORONOIPOLYGONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`
Expand Down
6 changes: 6 additions & 0 deletions clouds/snowflake/modules/doc/processing/ST_DELAUNAYLINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions clouds/snowflake/modules/doc/processing/ST_VORONOIPOLYGONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 30a28cd

Please sign in to comment.