Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(bq,sf,rs|processing): update voronoi doc #492

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading