Skip to content

Commit 473701f

Browse files
authored
Merge pull request #377 from pblottiere/doc_utility_functions
Add doc for utils and schema functions (and use alphabetical order)
2 parents be7d506 + d151d32 commit 473701f

File tree

8 files changed

+445
-295
lines changed

8 files changed

+445
-295
lines changed

doc/concepts/compressions.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ data volumes, PostgreSQL Pointcloud allows schemas to declare their preferred
99
compression method in the ``<pc:metadata>`` block of the schema document. In
1010
the example schema, we declared our compression as follows:
1111

12-
.. code-block:: sql
12+
.. code-block:: xml
1313
1414
<pc:metadata>
1515
<Metadata name="compression">dimensional</Metadata>
@@ -35,7 +35,7 @@ Dimensional compression first flips the patch representation from a list of N
3535
points containing M dimension values to a list of M dimensions each containing
3636
N values.
3737

38-
.. code-block:: sql
38+
.. code-block:: json
3939
4040
{"pcid":1,"pts":[
4141
[-126.99,45.01,1,0],[-126.98,45.02,2,0],[-126.97,45.03,3,0],
@@ -44,7 +44,7 @@ N values.
4444
4545
Becomes, notionally:
4646

47-
.. code-block:: sql
47+
.. code-block:: json
4848
4949
{"pcid":1,"dims":[
5050
[-126.99,-126.98,-126.97,-126.96,-126.95,-126.94],

doc/functions/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ Functions
77
.. toctree::
88
:maxdepth: 2
99

10+
schema
1011
points
1112
patchs
1213
wkb
1314
postgis
15+
utils

0 commit comments

Comments
 (0)