-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
The example notebook appears incorrect in that there is a comment that it writes 'compressed stac-geoparquet' by default
https://stac-utils.github.io/stacrs/v0.5.9-beta.0/example/
import stacrs
items = await stacrs.search(
"https://stac.eoapi.dev",
collections="openaerialmap",
bbox=[-125, 25, -67, 49], # CONUS
sortby="-properties.datetime",
max_items=1000,
)
await stacrs.write("items.parquet", items) # compressed stac-geoparquetBut as far as I can tell no compression is used and I'm unsure how to change it (gpq describe items.parquet --format json)
For example geopandas.to_parquet gives the following options compression = {‘snappy’, ‘gzip’, ‘brotli’, None}, default ‘snappy’
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation