Changes between Version 1 and Version 2 of Ticket #1910
- Timestamp:
- Nov 20, 2018, 12:54:54 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1910 – Description
v1 v2 1 1 When clipping and encoding as `CSV/JSON`, the result of clipping with new parameter `WITH COORDINATES` will have this format with grid axes and a value attached to its grid coordinates, e.g: 2 3 2 4 3 {{{ … … 6 5 clip(c, LineStringZ(75042.7273594 5094865.55794 "2008-01-01T02:01:20.000Z", 7 6 705042.727359 5454865.55794 "2008-01-08T00:02:58.000Z")) 8 WITH COORDINATES, " csv")7 WITH COORDINATES, "json") 9 8 10 9 returns 11 10 12 ["axis1 axis2... value", "axis1 axis2... value", ...] 11 "axis1 axis2... value", "axis1 axis2... value", ... 13 12 }}}