Results 181 issues of Tom Augspurger

We'd like to use the distributed dashboard without necessarily exposing the user to `dask.distributed`, `Client`, or schedulers. How can we do that? Presumably, we can execute a bit of code...

This might be a known issue, but currently the `geo` metadata is incorrect when round-tripping a partitioned DaskGeoDataFrame. Some setup: ```python import json import geopandas import dask_geopandas import pyarrow.parquet df...

Currently, the `columns` field in the `geo` metadata returns a dictionary mapping column names to metadata objects: ```python In [140]: import geopandas, dask_geopandas, pyarrow.parquet, json In [141]: gdf = geopandas.read_file(geopandas.datasets.get_path("naturalearth_lowres"))...

This is a feature-request / planning issue for adding collection-level search to the STAC API spec, if it's deemed in scope. This would mirror [item-level](https://github.com/radiantearth/stac-api-spec/blob/master/item-search/README.md) search. I'll leave detailed description...

extension

Adds documentation for NOAA Digital Coast Imagery.

The landcovernet example at https://github.com/microsoft/PlanetaryComputerExamples/blob/main/tutorials/radiant-mlhub-landcovernet.ipynb is currently failing for me. ```pytb >>> collection_id = "ref_landcovernet_v1_labels" >>> collection = client.get_collection(collection_id) --------------------------------------------------------------------------- APIError Traceback (most recent call last) File /srv/conda/envs/notebook/lib/python3.8/site-packages/pystac_client/stac_api_io.py:136, in StacApiIO.request(self,...

It seems like data fetched through http is being truncated. Is that intentional? ```python >>> x = intake.open_csv("https://raw.githubusercontent.com/hadley/nycflights13/master/data-raw/airports.csv").read() >>> y = pd.read_csv("https://raw.githubusercontent.com/hadley/nycflights13/master/data-raw/airports.csv") >>> len(x), len(y) (519, 1458) ``` If I...

pdvega could add an entrypoint to register itself with pandas: https://dev.pandas.io/development/extending.html#plotting-backends Something like ```python # in setup.py setup( # noqa: F821 ..., entry_points={ "pandas_plotting_backends": [ "altair = pdvega.", ], },...

Various members of the Python and R geospatial communities are working on a [geo-arrow-spec](https://github.com/geopandas/geo-arrow-spec): a way to store geospatial data in Apache Arrow (and Apache Parquet) format. This issue is...

Currently, `HDFReferenceRecipe` doesn't work properly with both a concat dim while merging multiple variables. I suspect that this is blocked by the upstream issue in Kerchunk: https://github.com/fsspec/kerchunk/issues/106#issuecomment-987962026. Filing this to...