Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#PARSER PQL

/// The index structure
#DEFINE dataStructureName 'sanFranciscoStore'
#DEFINE dataStructureType 'mo_geohash'

#RUNQUERY

/// Store the data in an index structure
movingObjectIndex = MOVINGOBJECTSTORE({
                        /// distance of the trajectory in meters that we keep for every moving object
						distancepermo = 100.0,
                        geometryattribute = 'SpatialPoint',
                        datastructurename = ${dataStructureName},
                        idattribute = 'sourceMmsi',
                        datastructuretype = ${dataStructureType}                                            
                      },
                      System.SanFranciscoAIS
                    )

...