Kyle Barron

Results 1646 comments of Kyle Barron

I think with #1056 it at least won't panic, but it's out of scope for now to handle the null data here. Would you want to raise an issue on...

We essentially have 3 implementations, if you include the original Python pandas implementation, in addition to the python Arrow implementation. I think aside from the _language_, we need to have...

Can you check why pre-commit is still failing? You should be able to run it locally with ``` pip install pre-commit pre-commit run --all-files ```

@martinfleis do you have any comments on this PR? I'd like to get in #753, which in general raises the code quality of the code base, and then ensure that...

I merged #753; would you be able to merge in latest main?

> @kylebarron I think this is ready for another review, though it looks like i also pulled in a bunch of other stuff by accident. Actually that was my fault....

Both pyo3-arrow and pyo3-geoarrow will automatically look for the Arrow PyCapsule Interface, so they'll work with any Arrow-exporting library out of the box. Let me know if you need any...

It turns out we actually have a use case for this sooner than I thought. We were trying to use h3ronpy in something deployed to AWS Lambda, but we can't...

I also started hacking on some ideas at the same time 😄 , see https://github.com/nmandery/h3ronpy/pull/64 > As h3arrow only operates on Arrow Arrays and not on chunked arrays, I implemented...

> Nice, interesting approach, this seems to make things a bit easier as it pushes the array validation further down the pyo3 API . I will give this a try...