-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GTI driver: recognize STAC GeoParquet catalogs #10696
Conversation
133aea0
to
db1ae87
Compare
Nice, I love the convergence happening here. Some of it's really obvious but seen from very different lenses, and it's hard to see those without diving into other communities. |
Love it! Wasn't even aware of the GDAL Tile Index driver - sounds awesome. |
db1ae87
to
47dbb5d
Compare
Very neat! |
Quick question: will it be possible to process STAC GeoParquet items provided via the GTI driver using https://gdal.org/en/latest/drivers/raster/vrt.html#default-pixel-functions? |
no, the GTI driver only uses the "raw" items |
but, what you could actually do is to "wrap" each item in a VRT using a pixel function and reference thoses VRT in the GTI catalog. Cool trick: the content of a VRT file can be used as a valid GDAL connection name, so you don't actually need to create a physical VRT file. Cf
|
@cholmes / @TomAugspurger
A toot from @mdsumner (https://mastodon.social/@[email protected]/113053401068184789) made me aware of STAC GeoParquet, and I've quickly realized this was very close to be handled by the recent GDAL Tile Index driver (https://gdal.org/en/latest/drivers/raster/gti.html), which is a generalization of the STACIT one, able to understand any OGR vector layer.
With this PR: