You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: h3-guide.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,17 @@ SELECT APPROX_COUNT_DISTINCT(h5) * 252.9 AS area_km2 FROM ...
29
29
30
30
## Joining Different Resolutions
31
31
32
-
Datasets use different H3 resolutions. Use `h3_cell_to_parent()` to convert the **finer**resolution up to the **coarser**one before joining:
32
+
Use `h3_cell_to_parent()` — not `h3_cell_to_children()`— to join datasets at different resolutions. Always convert the **finer**(higher number) resolution to the **coarser**(lower number) resolution:
33
33
34
34
```sql
35
35
-- dataset_a has h8, dataset_b has h4: convert h8 → h4
0 commit comments