Kyle Barron

Results 717 issues of Kyle Barron

Ok, perhaps I'll change this to be ```rs struct PointType(GeoArrowResult); ``` but I'll leave that for a future PR _Originally posted by @kylebarron in https://github.com/pola-rs/geopolars/pull/258#discussion_r2608292193_

> In the future we can better define a `Display` that is improved over `Debug` _Originally posted by @kylebarron in [#258](https://github.com/pola-rs/geopolars/pull/258/files#r2608099871)_

Link to old code from years ago, in case it's worth a reference: https://github.com/pola-rs/geopolars/blob/9bd4339da0b4f0e61f18a8f7acb62200b39d5c57/geopolars/src/spatial_index.rs

[Obstore](https://github.com/developmentseed/obstore) is an alternative to fsspec that's cleaner and can be more performant. We might also want to consider whether there's an API that would allow to construct a store...

Protocol is defined as a `ClassVar`: https://github.com/fsspec/filesystem_spec/blob/ffdfed146f070cd05bce78767fc9873d165c59fd/fsspec/spec.py#L109 This means that pylance gives me an error when I try to set it in a constructor: Typing protocol as a `ClassVar` makes...

Here you default to `detail=False` in `_ls` https://github.com/fsspec/s3fs/blob/b4d3fa89f1accbfc2186f1d42d07be15bc9df101/s3fs/core.py#L1021 but in the base class of `AsyncFileSystem` [you default to `detail=True`](https://github.com/fsspec/filesystem_spec/blob/ffdfed146f070cd05bce78767fc9873d165c59fd/fsspec/asyn.py#L704). Is it intentional to override the base class in this way?...