Tom Augspurger
Tom Augspurger
Right now `stac_vrt` requires two external pieces of information: the data type and block shapes: ```python >>> vrt = stac_vrt.build_vrt(stac_items, data_type="Byte", block_width=512, block_height=512) ``` which eventually make up the GDAL...
Right now `build_vrt` just takes a `List[Dict]`. The proper type is something like stac-pydantic or pystac's ItemCollection. Should we require / accept either of those instead of or in addition...
We can lighten the library up a bit. 1. Update `_build_bbox` to not need NumPy. I'm guessing a for loop over the bboxes will be roughly as fast as creating...
Right now the computation of the output size uses the bboxes from the individual stac items. In the best case scenario, the items have `proj:bbox` and we use that. But...
**Is your feature request related to a problem? Please describe.** To facilitate creating STAC items from URLs that require a `read_href_modifier`, I'd like to use something like ```python stac modis...
This issue is discussing what is (IMO) a best-practice for stactools packages: the ability to generate a STAC item without any I/O. Currently most stactools packages have a high-level `stac.create_item(asset_href:...
Hi all, I have a couple of small-ish packages to assist in creating STAC metadata for 1. Tabular data, like might be stored in parquet and loaded with pandas [`stac-table`][stac-table]...
This proposes a change to the Item ID best practices, based on some experiences and conversations with folks like @gadomski. In my experience, many upstream data providers (USGS / landsat...
Part-1 of https://github.com/dask/distributed/issues/4023: collect the statistics necessary to visualize. This doesn't actually give use the stats needed for a box plot (25th, 50th, and 75th percentiles), but is probably good...
We have the basics, without weights. http://scikit-learn.org/stable/modules/classes.html#sklearn-metrics-metrics Not all of these will be easily doable.