Changes between Version 4 and Version 5 of Ticket #4747, comment 6
- Timestamp:
- 08/26/20 02:20:25 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4747, comment 6
v4 v5 21 21 * call 4K + 4K times the function ST_Distance for each couple of trips. 22 22 As 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 geography23 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 use case we needed to implement the functions ST_ClosestPoint, ST_ShortestLine, ST_LineSubstring, ST_LineInterpolatePoint, and ST_LineLocatePointfunctions for geography 24 24 https://github.com/MobilityDB/MobilityDB/blob/develop/point/src/geography_functions.c 25 25 and we plan to submit a PR to PostGIS soon.