MemSQL polygon geospatial aggregation

Will the newer version of MemSQL be able to calculate polygon joins? For example, compute the boundary of two adjacent or even intercepting polygons?

+----+
|    |
|  +-+--+
+--+-+  |
   |    |
   +----+

      

to

+----+
|    |
|    +--+
+--+    |
   |    |
   +----+

      

+3


source to share


1 answer


MemSQL 4 includes topological functions (such as geography_intersects ()) that return logical and measurement functions such as distance and length. It doesn't yet have constructor functions like intersection () that will output the polygon as you describe. It's on the roadmap, however.



+1


source







All Articles