Selection#

Class to manage selection of GPS tracks

Overall picture of selection process : selection is performed by a selector object, containing an arbitrary number of constraints, combined by OR, AND or XOR operator. Since only a single operator is allowed in the selector, a “global selector” is provided to the users to combine the output of several individual selectors. Again, the output may be combined with OR, AND or XOR. For example, given two circles C1 and C2, and two rectangles R1 and R2, to select tracks crossing either C1 or C2, and either R1 or R2, we would like to write the following combination of constraints : F = (C1 + C2).(R1 + R2), where + and . operators denote OR and AND respectively. Such a constraint requires two different combination rules, and therefore cannot be expressed with a single selector. A solution is to create two disjonctive (OR) type selectors S1 and S2 with S1 = C1 + C2 and S2 = R1 + R2. Then S1 and S2 are combined in a conjunctive (AND) type global selector. Note that boolean algebraic rules show that it is possible as well to combine 4 conjunctive- type selectors (C1.R1, C1.R2, C2.R1 and C2.R2) in a disjunctive-type global selector. Constraints may be based on:

  • a geometrical shape (Rectangle, circle or polygon in Geometrics). This is the standard type of constraint. Different modes are:

    • MODE_CROSSES: tracks crossing shape interior/boundary are selected

    • MODE_INSIDE : tracks remaining fully inside the shape are selected

    • MODE_GETS_IN: tracks getting in (at least once) shape are selected

    • MODE_INSIDE : tracks getting out (at least once) shape are selected

  • a track t as a reference. Available modes are:

    • MODE_CROSSES : tracks intersecting t (at least once) are selected

    • MODE_PARALLEL: tracks following t are selected

  • a “toll gate” segment, defined by two Coords objects: tracks crossing (at least once) the toll gate are selected

All these constraint may be provided with an additional time constraint, specifying the time interval (between two GPSTime dates) where crossing / containing / getting in / getting out… operations are tested. Besides, there are two types of selection:

  • TYPE_SELECT: tracks abiding by constraints are returned as they are

  • TYPE_CUT_AND_SELECT: tracks abiding by constraints are cut and returned

General constraint syntax:

>>> # Declaration of a TimeConstraint
>>> t1 = TimeConstraint(initial_date, final_date, options)
>>> # Add comment here
>>> c1 = Constraint(shape, t1, options)
>>> c2 = TrackConstraint(track, t2, options)
>>> c3 = TollGateConstraint(shape, t3, options)
>>> # Add comment here
>>> s1 = Selector(c1, c2, ..., options)
>>> s2 = Selector(c3, c4, ..., options)
>>> # Add comment here
>>> selector = GlobalSelector([s1, s2, ...], options)
tracklib.algo.Selection.printMode(constraint)[source]#

TODO

class tracklib.algo.Selection.TimeConstraint(begin=None, end=None, pattern=None)[source]#

Time constraints

__init__(begin=None, end=None, pattern=None)[source]#

TODO

__str__()[source]#

TODO

setMinTimestamp(timestamp)[source]#

TODO

setMaxTimestamp(timestamp)[source]#

TODO

contains(timestamp)[source]#

TODO

class tracklib.algo.Selection.TrackConstraint(track, res=1, buffer=10, prop=0.5, length=0, time=None, mode=1, type=0)[source]#

TODO

__init__(track, res=1, buffer=10, prop=0.5, length=0, time=None, mode=1, type=0)[source]#

TODO

__str__()[source]#

TODO

plot(sym='r-')[source]#

TODO

contains(track)[source]#

TODO

select(tracks)[source]#

TODO

class tracklib.algo.Selection.TollGateConstraint(pt1, pt2, time=None, type=0)[source]#

TODO

__init__(pt1, pt2, time=None, type=0)[source]#

TODO

__str__()[source]#

TODO

plot(sym='ro-')[source]#

TODO

contains(track)[source]#

TODO

select(tracks)[source]#

TODO

class tracklib.algo.Selection.Constraint(shape=None, time=None, mode=0, type=0, srid='ENU')[source]#

TODO

__init__(shape=None, time=None, mode=0, type=0, srid='ENU')[source]#

TODO

__str__()[source]#

TODO

setShape(shape)[source]#

TODO

contains(track)[source]#

TODO

select(tracks)[source]#

TODO

plot(sym)[source]#

TODO

class tracklib.algo.Selection.Selector(constraints, combination=0)[source]#

TODO

__init__(constraints, combination=0)[source]#

TODO

__str__()[source]#

TODO

setCombinationMode(combination)[source]#

TODO

addConstraint(constraint)[source]#

TODO

plot(sym=['r-', 'g-', 'b-'])[source]#

TODO

__combine(bool1, bool2)#

TODO

__initCombination()#

TODO

contains(track)[source]#

TODO

class tracklib.algo.Selection.GlobalSelector(selectors, combination=0)[source]#

TODO

__init__(selectors, combination=0)[source]#

TODO

numberOfConstraints()[source]#

TODO

__str__()[source]#

TODO

plot()[source]#

TODO

__combine(bool1, bool2)#

TODO

__initCombination()#

TODO

addSelector(selector)[source]#

TODO

setCombinationMode(combination)[source]#

TODO

contains(track)[source]#

TODO