Kyle Barron
Kyle Barron
https://github.com/geoarrow/geoarrow-rs/pull/1216 Adds support for writing a covering column
geoarrow-rust-core was originally added as a dependency in https://github.com/developmentseed/lonboard/pull/846 but it currently still does this total bounds computation in python/numpy
I haven't actually used the `_GeoArrowH3HexagonLayer` yet. It may be that the underlying `H3HexagonLayer` works in a different way than other layers. Are you able to provide the full traceback?
I don't have bandwidth to really dig into this right now. Your traceback seems to be giving a different error than the initial error. Can you show the schema of...
@paraseba Suffix requests are already used (https://github.com/zarr-developers/zarr-python/pull/1661#issuecomment-2435452928), we just want to ensure the type is well defined so that semantics are clear. > Most (all?) object stores, for example, allow...
No it would be more like a union: ```py class RangeRequest(TypedDict): """A request with a start and end in the file" start: int """The first byte of the range""" end:...
In case you're curious, in https://github.com/developmentseed/obstore/pull/67 I updated `obstore` to allow either a tuple of two non-negative integers, or a dict with `offset` or `suffix` keys: 
In obstore I'm still using a tuple of two numbers for the most common case of a range with a known, positive start and end. I think the semantics there...
I don't use this package often, but I took a cursory look and it looks great.
> I don't remember if we return a `RecordBatchReader` here already or not. However, if we don't, I agree we should be returning something that supports `__arrow_c_stream__`. If I'm reading...