From 5028908b396ce9f8b79837812714697ffe05ccd2 Mon Sep 17 00:00:00 2001 From: AJ Friend Date: Fri, 25 Oct 2024 18:32:39 -0700 Subject: [PATCH] cellToBoundary --- website/docs/api/indexing.mdx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/website/docs/api/indexing.mdx b/website/docs/api/indexing.mdx index a07631305..4729d792d 100644 --- a/website/docs/api/indexing.mdx +++ b/website/docs/api/indexing.mdx @@ -173,6 +173,11 @@ $ h3 cellToLatLng -c 85283473fffffff ## cellToBoundary +Finds the boundary of the cell. See the +[algorithm description](../core-library/cellToBoundaryDesc) +for more information. + + @@ -216,9 +223,11 @@ function example() { ```py -h3.cell_to_boundary(cell, geo_json=False) +h3.cell_to_boundary(cell) ``` +Returns tuple of lat/lng tuples. + @@ -240,10 +249,3 @@ $ h3 cellToBoundary -c 85283473fffffff - -Finds the boundary of the cell. See the -[algorithm description](../core-library/cellToBoundaryDesc) -for more information. - - -Returns 0 (`E_SUCCESS`) on success.