Skip to content

Commit 6a2fa43

Browse files
committed
docs
1 parent e433885 commit 6a2fa43

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

hugo/content/installation/configuration.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,15 @@ WriteTimeoutSec = 30
119119
# Publish functions from these schemas (default is publish postgisftw)
120120
# FunctionIncludes = [ "postgisftw", "schema2" ]
121121

122+
# Assign time columns for tables with temporal data
123+
# These should be timestamp or timestamptz columns in the table
124+
# Columns to be used for feature start and end of time intervals
125+
# StartTimeColumns = [ "start_time" ]
126+
# EndTimeColumns = [ "end_time" ]
127+
# Columns to be used for (instantaneous) feature timestamps
128+
# TimeColumns = [ "time" ]
129+
130+
122131
[Paging]
123132
# The default number of features in a response
124133
LimitDefault = 20
@@ -243,6 +252,24 @@ Overrides items specified in `TableIncludes`.
243252
A list of the schemas to publish functions from.
244253
The default is to publish functions in the `postgisftw` schema.
245254

255+
#### StartTimeColumns
256+
257+
Specifies the column(s) that represent the start time for temporal features.
258+
Use this to identify when a feature becomes active or relevant.
259+
The first found column is used.
260+
261+
#### EndTimeColumns
262+
263+
Specifies the column(s) that represent the end time for temporal features.
264+
Use this to indicate when a feature is no longer active or relevant.
265+
The first found column is used.
266+
267+
#### TimeColumns
268+
269+
Specifies the column(s) that contain time or timestamp information for features.
270+
Useful for filtering or querying features based on specific time values.
271+
The first found column is used.
272+
246273
#### LimitDefault
247274

248275
The default number of features in a response,

0 commit comments

Comments
 (0)