Opened 7 years ago
Closed 7 years ago
#1752 closed enhancement (fixed)
WMS style fragments problem with subsetting
Reported by: | Dimitar Misev | Owned by: | Bang Pham Huu |
---|---|---|---|
Priority: | major | Milestone: | 9.6 |
Component: | petascope | Version: | development |
Keywords: | Cc: | Vlad Merticariu | |
Complexity: | Medium |
Description
If I have a rasql style fragment $Iterator + 4
, then WMS will translate this in a rasql query of the form:
select scale((c0 + 4)[subset], [scale]) from coll as c0
but it is better to translate it to:
select scale((c0[subset] + 4), [scale]) from coll as c0
Attachments (1)
Change History (3)
comment:1 by , 7 years ago
by , 7 years ago
Attachment: | 0001-ticket-1752-WMS-style-fragments-problem-with-subsett.patch added |
---|
comment:2 by , 7 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Type: | defect → enhancement |
Note:
See TracTickets
for help on using tickets.
Attached initial patch which is not very robust however and needs some more work.