AJ Friend

Results 176 comments of AJ Friend

Cool! And to be clear, I'm just offering my random thoughts as a fan in the peanut gallery. Appreciate all the work you've already done!

Also maybe interesting, the two (working) examples above seem to compile differently: ```sql WITH table_0 AS ( SELECT tbl_a.* FROM tbl_a ) SELECT table_0.* FROM table_0 WHERE foo > 100...

But maybe its the `AVG(bar > 3)` that's kind of weird/nonsenical here...

Yeah, if I drop the `average`, they compile the same (without the extra CTE): ```sql SELECT tbl_a.* FROM tbl_a WHERE foo > 100 AND foo < 200 AND bar IS...

Well, consider this a vote for this syntax :)

Edit: The original comment I made here was a bit off-topic, so I moved it over to https://github.com/prql/prql/issues/819.

It looks like the error is actually coming from your `visualize_hexagons` function instead of `h3`. When I run the code, `polyfill_polygon` returns an empty set: ```py In [1]: import h3...

https://github.com/scikit-build/scikit-build/issues/502

We can definitely update the docs. I wonder where this would be most prominent. Maybe link to the appropriate section in the C docs in the Python function docstring? @DFEvans,...

Also more than happy to accept a PR if someone else gets to this before me :)