GPKG Time Series Format Specification: Difference between revisions
Content deleted Content added
Ellis Symons (talk | contribs) Created page with "The below section lists the TUFLOW GPKG time series format specification. The specification sits ontop of the <b><u>[https://www.geopackage.org/spec120/index.html GPKG v1.2 Sp..." |
Ellis Symons (talk | contribs) No edit summary |
||
Line 2:
===GIS Layers===
The results are stored in GPKG layers, typically between 1 - 3 layers are stored in the result file depending on the output (one for point results, one for line results, one for polygon results). However there is no requirement against storing results from multiple model runs in a single GPKG, this is just not typically how outputs are written.
The column names of the GPKG layers should follow the convention below:<br>
{| class="wikitable" style="width:40%"
! style="background-color:#005581; font-weight:bold; color:white;" width=20%| Column Name
! style="background-color:#005581; font-weight:bold; color:white;" width=20%| Type
! style="background-color:#005581; font-weight:bold; color:white;" width=60%| Description
|-
|fid||INTEGER||Primary key
|-
|geometry||GEOMETRY||GeoPackage Geometry
|-
|ID||TEXT||Element ID (e.g. Pipe1)
|-
|Type||TEXT||Element Type (e.g. CONDUIT)
|-
|Source||TEXT||Result Source (e.g. SWMM)
|-
|TimeId||INTEGER||Unique id for each timestep
|-
|Time_hours||FLOAT||Output time in hours
|-
|Datetime||DATETIME||Output time in datetime
|-
|colspan="3"|...[column for each result type - examples below]
|-
|Flow||FLOAT||Result flow
|-
|Velocity||FLOAT||Result velocity
|-
|}
| |||