From 8efeba58086b438451dc5b41508b7f0135b19e98 Mon Sep 17 00:00:00 2001 From: abelvm Date: Thu, 11 Aug 2016 10:18:38 -0400 Subject: [PATCH] cleaned --- doc/14_densify.md | 35 ----------------------------------- doc/15_tinmap.md | 36 ------------------------------------ 2 files changed, 71 deletions(-) delete mode 100644 doc/14_densify.md delete mode 100644 doc/15_tinmap.md diff --git a/doc/14_densify.md b/doc/14_densify.md deleted file mode 100644 index 2cec7e6..0000000 --- a/doc/14_densify.md +++ /dev/null @@ -1,35 +0,0 @@ -## Densify function - -Iterative densification of a set of scattered points using Delaunay triangulation. The new points are located at the centroids of the grid cells and have as assigned value the barycentric average value of the cell's vertex. - -### CDB_Densify(geomin geometry[], colin numeric[], iterations integer) - -#### Arguments - -| Name | Type | Description | -|------|------|-------------| -| geomin | geometry[] | Array of points geometries | -| colin | numeric[] | Array of points' values | -| iterations | integer | Number of iterations | - -### Returns - -Returns a table object - -| Name | Type | Description | -|------|------|-------------| -| geomout | geometry | Geometries of new dataset of points| -| colout | numeric | Values of points| - -#### Example Usage - -```sql -with data as ( - select - ARRAY[7.0,8.0,1.0,2.0,3.0,5.0,6.0,4.0] as colin, - ARRAY[ST_GeomFromText('POINT(2.1744 41.4036)'),ST_GeomFromText('POINT(2.1228 41.3809)'),ST_GeomFromText('POINT(2.1511 41.3742)'),ST_GeomFromText('POINT(2.1528 41.4136)'),ST_GeomFromText('POINT(2.165 41.3917)'),ST_GeomFromText('POINT(2.1498 41.3713)'),ST_GeomFromText('POINT(2.1533 41.3683)'),ST_GeomFromText('POINT(2.131386 41.413998)')] as geomin -) -select CDB_Densify(geomin, colin, 2) from data; -``` - - diff --git a/doc/15_tinmap.md b/doc/15_tinmap.md deleted file mode 100644 index 7bbd165..0000000 --- a/doc/15_tinmap.md +++ /dev/null @@ -1,36 +0,0 @@ -## TINMAP function - -Generates a fake contour map, in the form of a TIN map, from a set of scattered points.Depends on **CDB_Densify**. - -Its iterative nature let's the user smooth the final result as much as desired, but with a exponential time cost increase - -### CDB_TINmap(geomin geometry[], colin numeric[], iterations integer) - -#### Arguments - -| Name | Type | Description | -|------|------|-------------| -| geomin | geometry[] | Array of points geometries | -| colin | numeric[] | Array of points' values | -| iterations | integer | Number of iterations | - -### Returns - -Returns a table object - -| Name | Type | Description | -|------|------|-------------| -| geomout | geometry | Geometries of new dataset of polygons| -| colout | numeric | Values of each cell| - -#### Example Usage - -```sql -with data as ( - select - ARRAY[7.0,8.0,1.0,2.0,3.0,5.0,6.0,4.0] as colin, - ARRAY[ST_GeomFromText('POINT(2.1744 41.4036)'),ST_GeomFromText('POINT(2.1228 41.3809)'),ST_GeomFromText('POINT(2.1511 41.3742)'),ST_GeomFromText('POINT(2.1528 41.4136)'),ST_GeomFromText('POINT(2.165 41.3917)'),ST_GeomFromText('POINT(2.1498 41.3713)'),ST_GeomFromText('POINT(2.1533 41.3683)'),ST_GeomFromText('POINT(2.131386 41.413998)')] as geomin -) -select CDB_TINmap(geomin, colin, 2) from data; -``` -