Describe the temporal coverings as TemporalParquet 2.0 struct columns - #138
Merged
estebanzimanyi merged 1 commit intoSep 10, 2026
Merged
Conversation
The temporal-covering descriptor states the covering columns of
TemporalParquet 2.0.0. Each covering is a struct column at the root of the
schema, named after its temporal column: `bbox` is a GeoParquet bounding
box column with the fields xmin, ymin, [zmin,] xmax, ymax[, zmax] in that
order, and `tspan` and `vspan` hold the time and value bounds. The
spatial class carries bbox, tspan and the plain srid column, the number
class vspan and tspan, the time-only class tspan.
The parser rejects a bbox whose fields are not a GeoParquet bounding box
column's, in its order, and a class that declares a covering twice. The
projection generator gives, per temporal type, each covering with its
column name and its fields in order, every field with the MEOS expression
that derives it from the value; a binding substitutes `VALUE` with the
column reference and `{col}` with its name.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The temporal-covering descriptor states the covering columns of
TemporalParquet 2.0.0. Each covering is a struct column at the root of the
schema, named after its temporal column:
bboxis a GeoParquet boundingbox column with the fields xmin, ymin, [zmin,] xmax, ymax[, zmax] in that
order, and
tspanandvspanhold the time and value bounds. Thespatial class carries bbox, tspan and the plain srid column, the number
class vspan and tspan, the time-only class tspan.
The parser rejects a bbox whose fields are not a GeoParquet bounding box
column's, in its order, and a class that declares a covering twice. The
projection generator gives, per temporal type, each covering with its
column name and its fields in order, every field with the MEOS expression
that derives it from the value; a binding substitutes
VALUEwith thecolumn reference and
{col}with its name.