|
◆ tpointseq_make_coords()
TSequence * tpointseq_make_coords |
( |
const double * |
xcoords, |
|
|
const double * |
ycoords, |
|
|
const double * |
zcoords, |
|
|
const TimestampTz * |
times, |
|
|
int |
count, |
|
|
int32 |
srid, |
|
|
bool |
geodetic, |
|
|
bool |
lower_inc, |
|
|
bool |
upper_inc, |
|
|
interpType |
interp, |
|
|
bool |
normalize |
|
) |
| |
Construct a temporal sequence from arrays of coordinates, one per dimension, and timestamps.
- Parameters
-
[in] | xcoords | Array of x coordinates |
[in] | ycoords | Array of y coordinates |
[in] | zcoords | Array of z coordinates |
[in] | times | Array of z timestamps |
[in] | count | Number of elements in the arrays |
[in] | srid | SRID of the spatial coordinates |
[in] | geodetic | True for tgeogpoint, false for tgeompoint |
[in] | lower_inc,upper_inc | True if the respective bound is inclusive |
[in] | interp | Interpolation |
[in] | normalize | True if the resulting value should be normalized |
|