Results 181 issues of Tom Augspurger

(Not strictly a stac-geoparquet issue, but just dumping this here for now) I extracted a week's worth of sentinel-2 data from the PC's STAC API and wrote it out with...

In this snippet, there's a record with `None` for an asset: ```python import planetary_computer import adlfs import pystac collection = pystac.read_file("https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t") asset = planetary_computer.sign(collection.assets["geoparquet-items"]) import dask_geopandas ddf = dask_geopandas.read_parquet(asset.href, storage_options=asset.extra_fields["table:storage_options"])...

I think https://github.com/TomAugspurger/stac-geoparquet/blob/main/stac_geoparquet/pc_runner.py is too Planetary Computer-specific and should be removed. https://github.com/TomAugspurger/stac-geoparquet/blob/main/stac_geoparquet/pgstac_reader.py is a mixture of things that are generic to pgstac and Planetary Comptuer. With a small refactor, I...

This is a feature request for adding a `check_stacklevel` flag to `pytest.warns`. This helps library authors test that warnings point back to the user's source code, rather than some internal...

type: enhancement
plugin: warnings

This fixes a typo in the sphinx directive in shared-computation. The contributing guide recommended jupytext==1.16.0, but I noticed that all the notebooks seem to be on 1.16.4, so I updated...

This PR adds a new optional field to the core metadata for consolidating all the metadata of all child nodes under a single object. The motivation is similar to consolidated...

This PR begins the process of adding compatibility with zarr-python 3.x. It's intended to be run against zarr-python v3 + the open PRs referenced in https://github.com/pydata/xarray/issues/9515. All of the zarr...

topic-zarr
plan to merge
run-upstream

- numpy 2 combat - changed error messgae

Quick pass at adding `.info` to Group and Array. Like 2.x, `info` is a property, but it will only contain information that's known statically. I've added a `Group.info_complete` method that...

Closes https://github.com/zarr-developers/zarr-python/issues/2420 One difference from [Zarr v2](https://zarr.readthedocs.io/en/stable/api/storage.html), its `getsize` seemed to return `-1` if the concrete backend didn't provide a `getsize` method. I think returning a "bad" integer like from...

V3