Opened 7 years ago
Closed 7 years ago
#1723 closed defect (fixed)
Petascope_Error when clipping LineString with coverage's alias with "$"
Reported by: | Bang Pham Huu | Owned by: | Bang Pham Huu |
---|---|---|---|
Priority: | major | Milestone: | 9.6 |
Component: | petascope | Version: | development |
Keywords: | Cc: | Dimitar Misev, Vlad Merticariu | |
Complexity: | Medium |
Description
This query works
for c in (test_rgb) return encode( clip(c, LineString(0 0, 390 0)), "csv")
However, this doesn't
for $c in (test_rgb) return encode( clip($c, LineString(0 0, 390 0)), "csv")
due to this error to get the sdom() of linestring with $c
instead of c
.
Select sdom(clip( c, LINESTRING(0 343,389 343) )) FROM test_rgb as $c
Note:
See TracTickets
for help on using tickets.