Custom Query (2765 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 2765)

Ticket Resolution Summary Owner Reporter
#64 fixed Mixing triming and slicing in WCPS fails Dimitar Misev Dimitar Misev
Description

The query below fails with error from the parser

line 3:10 mismatched input '[' expecting COMMA

for    c in ( NDVI_AMAZON )
return
encode( c[t(5),x(0:20),y(0:20)] , "png" )

a quick fix is to separate the slicing and triming like this:

for c in ( NDVI_AMAZON )
return
encode ( (c[x(0:20),y(0:20)])[t(0)] , "png" ) 
#65 fixed Tiff encoding Peter Baumann m.owonibi@…
Description

rasdaman does not support the encoding char, long, short -typed result data in tiff similarly,pixelwise values of results encoded in tiff in rasdaman is not right

#66 fixed error: taking address of temporary Peter Baumann nospam@…
Description

Compile Error with gcc-4.6

/* qtinsert.cc:145:114: error: taking address of temporary [-fpermissive] */
--- ./qlparser/qtinsert.cc.orig	2011-08-27 14:37:45.784616946 +0200
+++ ./qlparser/qtinsert.cc	2011-08-27 14:53:13.673981450 +0200
@@ -143,5 +143,6 @@
         }
 
-        if (!persColl->getCollectionType()->getMDDType()->compatibleWithDomain(&(sourceObj->getDefinitionDomain()))) {
+        r_Minterval str_compatible_widthdomain = sourceObj->getDefinitionDomain();
+        if (!persColl->getCollectionType()->getMDDType()->compatibleWithDomain(&str_compatible_widthdomain)) {
             // free resources
             persColl->releaseAll();
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.