Does the TGeogPointSeq have an ST_Intersection function in mobilitydb-sqlalchemy?
It works when I reference it from within PostGIS/SQL or from Python using mobilitydb. However, with mobilitydb-sqlalchemy it results in:
AttributeError: Neither 'InstrumentedAttribute' object nor 'Comparator' object associated with Sched.the_traj has an attribute 'ST_Intersection'
The column is declared as a Column(TGeogPoint) and other functions (valueAtTimestamp, atPeriod) work fine.
Are there some examples that show how to do a spatial intersection/ST_Intersection on a TGeogPointSeq?
Does the TGeogPointSeq have an ST_Intersection function in mobilitydb-sqlalchemy?
It works when I reference it from within PostGIS/SQL or from Python using mobilitydb. However, with mobilitydb-sqlalchemy it results in:
AttributeError: Neither 'InstrumentedAttribute' object nor 'Comparator' object associated with Sched.the_traj has an attribute 'ST_Intersection'The column is declared as a
Column(TGeogPoint)and other functions (valueAtTimestamp, atPeriod) work fine.Are there some examples that show how to do a spatial intersection/ST_Intersection on a TGeogPointSeq?