35#ifndef __TRGEO_SEQSET_H__
36#define __TRGEO_SEQSET_H__
41#include "temporal/temporal.h"
53 const TSequence **sequences,
int count,
int maxcount,
bool normalize);
55 const TSequence **sequences,
int count,
int maxcount,
bool normalize);
57 const TSequence **sequences,
int count,
bool normalize);
59 TSequence **sequences,
int count,
bool normalize);
68 const char *interp_str);
70 const char *interp_str);
interpType
Enumeration that defines the interpolation types used in MEOS.
Definition: meos.h:161
Definition: postgis_ext_defs.in.h:170
Definition: postgres_ext_defs.in.h:27
Structure to represent temporal values of instant subtype.
Definition: meos.h:185
Structure to represent temporal values of sequence set subtype.
Definition: meos.h:224
Structure to represent temporal values of sequence subtype.
Definition: meos.h:202
Structure to represent the common structure of temporal values of any temporal subtype.
Definition: meos.h:173
TSequenceSet * trgeoseqset_make_gaps(const GSERIALIZED *geom, const TInstant **instants, int count, interpType interp, Interval *maxt, double maxdist)
Construct a temporal sequence set from an array of temporal instants introducing a gap when two conse...
Definition: trgeo_seqset.c:316
TSequenceSet * trgeoseqset_tposeseqset(const TSequenceSet *ss)
Returns a new temporal pose sequence obtained by removing the reference geometry of a temporal rigid ...
Definition: trgeo_seqset.c:80
TSequenceSet * trgeoseqset_make_exp(const GSERIALIZED *geom, const TSequence **sequences, int count, int maxcount, bool normalize)
Construct a temporal sequence set from an array of temporal sequences.
Definition: trgeo_seqset.c:223
TSequence * trgeo_to_tsequence(const Temporal *temp, const char *interp_str)
Return a temporal rigid geometry transformed to a temporal sequence.
Definition: trgeo.c:836
TSequenceSet * trgeoseqset_make_free(const GSERIALIZED *geom, TSequence **sequences, int count, bool normalize)
Construct a temporal sequence set from an array of temporal sequences and free the array and the sequ...
Definition: trgeo_seqset.c:264
TSequenceSet * trgeo_to_tsequenceset(const Temporal *temp, const char *interp_str)
Return a temporal rigid geometry transformed to a temporal sequence set.
Definition: trgeo.c:868
TSequenceSet * trgeoseqset_make1_exp(const GSERIALIZED *geom, const TSequence **sequences, int count, int maxcount, bool normalize)
Construct a temporal sequence set from an array of temporal sequences.
Definition: trgeo_seqset.c:114
TSequence * trgeoseqset_to_tsequence(const TSequenceSet *ss)
Return a temporal sequence set transformed into a temporal sequence.
Definition: trgeo_seq.c:368
TSequenceSet * trgeoseqset_make(const GSERIALIZED *geom, const TSequence **sequences, int count, bool normalize)
Construct a temporal sequence set from an array of temporal sequences.
Definition: trgeo_seqset.c:246
const GSERIALIZED * trgeoseqset_geom_p(const TSequenceSet *ts)
Returns the reference geometry of the temporal value.
Definition: trgeo_seqset.c:62