Changes between Version 4 and Version 5 of Ticket #4747, comment 6


Ignore:
Timestamp:
Aug 26, 2020, 2:20:25 AM (4 years ago)
Author:
ezimanyi

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4747, comment 6

    v4 v5  
    2121* call  4K + 4K times the function ST_Distance for each couple of trips.
    2222As you can imagine, for such kind of manipulations we really need to access directly the liblwgeom library. The situation is much more challenging for analyzing aviation data obtained from, e.g.,
    23 https://developer.laminardata.aero/ since in this case we need to do the computations using the PostGIS geography type and its associated functions. For this case we needed to implement the functions ST_ClosestPoint, ST_ShortestLine, ST_LineSubstring, ST_LineInterpolatePoint, and ST_LineLocatePointfunctions for geography
     23https://developer.laminardata.aero/ since in this case we need to do the computations using the PostGIS geography type and its associated functions. For this use case we needed to implement the functions ST_ClosestPoint, ST_ShortestLine, ST_LineSubstring, ST_LineInterpolatePoint, and ST_LineLocatePointfunctions for geography
    2424https://github.com/MobilityDB/MobilityDB/blob/develop/point/src/geography_functions.c
    2525and we plan to submit a PR to PostGIS soon.