@@ -26,6 +26,7 @@ the provided resolution. If the input cell has resolution `r`, then
2626 {label: ' Java' , value: ' java' },
2727 {label: ' JavaScript (Live)' , value: ' javascript' },
2828 {label: ' Python' , value: ' python' },
29+ {label: ' DuckDB' , value: ' duckdb' },
2930 {label: ' Shell' , value: ' shell' },
3031 ]
3132} >
@@ -69,6 +70,13 @@ h3.cell_to_parent(h, res=None)
6970If ` res = None ` , we set ` res = resolution(h) - 1 ` .
7071See the [ h3-py docs] ( https://uber.github.io/h3-py/api_verbose.html#h3.cell_to_parent ) .
7172
73+ </TabItem >
74+ <TabItem value = " duckdb" >
75+
76+ ``` sql
77+ h3_cell_to_parent(h, res)
78+ ```
79+
7280</TabItem >
7381<TabItem value = " shell" >
7482
@@ -106,6 +114,7 @@ resolution `childRes`.
106114 {label: ' Java' , value: ' java' },
107115 {label: ' JavaScript (Live)' , value: ' javascript' },
108116 {label: ' Python' , value: ' python' },
117+ {label: ' DuckDB' , value: ' duckdb' },
109118 {label: ' Shell' , value: ' shell' },
110119 ]
111120} >
@@ -151,6 +160,13 @@ h3.cell_to_children(h, res=None)
151160If ` res = None ` , we set ` res = resolution(h) + 1 ` .
152161See the [ h3-py docs] ( https://uber.github.io/h3-py/api_verbose.html#h3.cell_to_children ) .
153162
163+ </TabItem >
164+ <TabItem value = " duckdb" >
165+
166+ ``` sql
167+ h3_cell_to_children(h, res)
168+ ```
169+
154170</TabItem >
155171<TabItem value = " shell" >
156172
@@ -187,6 +203,7 @@ Provides the number of children at a given resolution of the given cell.
187203 {label: ' Java' , value: ' java' },
188204 {label: ' JavaScript (Live)' , value: ' javascript' },
189205 {label: ' Python' , value: ' python' },
206+ {label: ' DuckDB' , value: ' duckdb' },
190207 {label: ' Shell' , value: ' shell' },
191208 ]
192209} >
@@ -221,14 +238,19 @@ This function exists for memory management and is not exposed.
221238</TabItem>
222239<TabItem value="python">
223240
224-
225241```py
226242h3.cell_to_children_size(h, res=None)
227243```
228244
229245If ` res = None ` , we set ` res = resolution(h) + 1 ` .
230246See the [ h3-py docs] ( https://uber.github.io/h3-py/api_verbose.html#h3.cell_to_children_size ) .
231247
248+ </TabItem >
249+ <TabItem value = " duckdb" >
250+
251+ ``` sql
252+ h3_cell_to_children_size(h, res)
253+ ```
232254
233255</TabItem >
234256<TabItem value = " shell" >
@@ -265,6 +287,7 @@ Provides the center child (finer) cell contained by `cell` at resolution `childR
265287 {label: ' Java' , value: ' java' },
266288 {label: ' JavaScript (Live)' , value: ' javascript' },
267289 {label: ' Python' , value: ' python' },
290+ {label: ' DuckDB' , value: ' duckdb' },
268291 {label: ' Shell' , value: ' shell' },
269292 ]
270293} >
@@ -309,6 +332,13 @@ h3.cell_to_center_child(h, res=None)
309332If ` res = None ` , we set ` res = resolution(h) + 1 ` .
310333See the [ h3-py docs] ( https://uber.github.io/h3-py/api_verbose.html#h3.cell_to_center_child ) .
311334
335+ </TabItem >
336+ <TabItem value = " duckdb" >
337+
338+ ``` sql
339+ h3_cell_to_center_child(h, res)
340+ ```
341+
312342</TabItem >
313343<TabItem value = " shell" >
314344
@@ -347,6 +377,7 @@ This is the complement of `childPosToCell`.
347377 {label: ' Java' , value: ' java' },
348378 {label: ' JavaScript (Live)' , value: ' javascript' },
349379 {label: ' Python' , value: ' python' },
380+ {label: ' DuckDB' , value: ' duckdb' },
350381 {label: ' Shell' , value: ' shell' },
351382 ]
352383} >
@@ -387,6 +418,13 @@ function example() {
387418h3.cell_to_child_pos(child, res_parent)
388419```
389420
421+ </TabItem >
422+ <TabItem value = " duckdb" >
423+
424+ ``` sql
425+ h3_cell_to_child_pos(child, res_parent)
426+ ```
427+
390428</TabItem >
391429<TabItem value = " shell" >
392430
@@ -424,6 +462,7 @@ This is the complement of `cellToChildPos`.
424462 {label: ' Java' , value: ' java' },
425463 {label: ' JavaScript (Live)' , value: ' javascript' },
426464 {label: ' Python' , value: ' python' },
465+ {label: ' DuckDB' , value: ' duckdb' },
427466 {label: ' Shell' , value: ' shell' },
428467 ]
429468} >
@@ -466,6 +505,13 @@ function example() {
466505h3.child_pos_to_cell(parent, res_child, child_pos)
467506```
468507
508+ </TabItem >
509+ <TabItem value = " duckdb" >
510+
511+ ``` sql
512+ h3_child_pos_to_cell(parent, res_child, child_pos)
513+ ```
514+
469515</TabItem >
470516<TabItem value = " shell" >
471517
@@ -505,6 +551,7 @@ Input cells must all share the same resolution.
505551 {label: ' Java' , value: ' java' },
506552 {label: ' JavaScript (Live)' , value: ' javascript' },
507553 {label: ' Python' , value: ' python' },
554+ {label: ' DuckDB' , value: ' duckdb' },
508555 {label: ' Shell' , value: ' shell' },
509556 ]
510557} >
@@ -549,6 +596,13 @@ function example() {
549596h3.compact_cells(cells)
550597```
551598
599+ </TabItem >
600+ <TabItem value = " duckdb" >
601+
602+ ``` sql
603+ h3_compact_cells(cells)
604+ ```
605+
552606</TabItem >
553607<TabItem value = " shell" >
554608
@@ -585,6 +639,7 @@ Uncompacts the set `compactedSet` of indexes to the resolution `res`.
585639 {label: ' Java' , value: ' java' },
586640 {label: ' JavaScript (Live)' , value: ' javascript' },
587641 {label: ' Python' , value: ' python' },
642+ {label: ' DuckDB' , value: ' duckdb' },
588643 {label: ' Shell' , value: ' shell' },
589644 ]
590645}>
@@ -627,6 +682,13 @@ function example() {
627682h3.uncompact_cells(cells, res)
628683` ` `
629684
685+ < /TabItem>
686+ < TabItem value=" duckdb" >
687+
688+ ` ` ` sql
689+ h3_uncompact_cells(cells, res)
690+ ` ` `
691+
630692< /TabItem>
631693< TabItem value=" shell" >
632694
@@ -665,6 +727,7 @@ a given resolution.
665727 {label: ' Java' , value: ' java' },
666728 {label: ' JavaScript (Live)' , value: ' javascript' },
667729 {label: ' Python' , value: ' python' },
730+ {label: ' DuckDB' , value: ' duckdb' },
668731 {label: ' Shell' , value: ' shell' },
669732 ]
670733}>
@@ -705,6 +768,15 @@ This function exists for memory management and is not exposed.
705768
706769:::
707770
771+ < /TabItem>
772+ < TabItem value=" duckdb" >
773+
774+ :::note
775+
776+ This function exists for memory management and is not exposed.
777+
778+ :::
779+
708780< /TabItem>
709781< TabItem value=" shell" >
710782
0 commit comments