From 77724fd78ce9550bfa89f97002ba4b5d9930201a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Delaun=C3=A9?= Date: Wed, 31 May 2017 10:42:29 +0200 Subject: [PATCH 1/2] doc: fix README&NEWS, pc_boundingdiagonal doesn't exists --- NEWS | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index dc6b96f..adeb9f0 100644 --- a/NEWS +++ b/NEWS @@ -11,7 +11,7 @@ - PC_Sort(pcpatch,text[]) (#106) - PC_IsSorted(pcpatch,text[],boolean) (#106) - PC_Range(pcpatch, int, int) returns pcpatch (#152) - - PC_BoundingDiagonalAsBinary(pcpatch) and PC_BoundingDiagonal(pcpach) (#158) + - PC_BoundingDiagonalAsBinary(pcpatch) and PC_BoundingDiagonalGeometry(pcpach) (#158) - PC_SetPCId(pcpatch, int, float8 default 0.0) (#163) - PC_Transform(pcpatch, int, float8 default 0.0) (#165) - Enhancements diff --git a/README.md b/README.md index 2050d72..9277a84 100644 --- a/README.md +++ b/README.md @@ -597,7 +597,7 @@ The `pointcloud_postgis` extension adds functions that allow you to use PostgreS > > For example, this is how one may want to create an index: > -> CREATE INDEX ON patches USING GIST(PC_BoundingDiagonal(patch) gist_geometry_ops_nd); +> CREATE INDEX ON patches USING GIST(PC_BoundingDiagonalGeometry(patch) gist_geometry_ops_nd); ## Compressions ## From a2c5b280d13b8f9cd4a9ccbdc6f116ff035874ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Delaun=C3=A9?= Date: Wed, 31 May 2017 11:57:08 +0200 Subject: [PATCH 2/2] doc: remove extra chars in README --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9277a84..63935ca 100644 --- a/README.md +++ b/README.md @@ -581,7 +581,7 @@ The `pointcloud_postgis` extension adds functions that allow you to use PostgreS > > SELECT ST_AsText(PC_BoundingDiagonalGeometry(pa)) FROM patches; > st_astext -> ------------------------------------------------ +> ------------------------------------------------ > LINESTRING Z (-126.99 45.01 1,-126.91 45.09 9) > LINESTRING Z (-126 46 100,-126 46 100) > LINESTRING Z (-126.2 45.8 80,-126.11 45.89 89) @@ -593,7 +593,6 @@ The `pointcloud_postgis` extension adds functions that allow you to use PostgreS > LINESTRING Z (-126.9 45.1 10,-126.81 45.19 19) > LINESTRING Z (-126.7 45.3 30,-126.61 45.39 39) > LINESTRING Z (-126.1 45.9 90,-126.01 45.99 99) -> (11 rows)gq > > For example, this is how one may want to create an index: >