-
Hello, I was wondering if there was any detailed documentation about the supported operators for the expression query parameter. I found this interesting article that points to the use of numexpr. More specifically I was wondering if logical operators were supported. I have been trying to have the following expression evaluated:
After urlencoding:
Have there been any related discussions or are there any more docs on the issue? Thanks for your help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Found the solution for logical operators, every condition must be encapsulated by parentheses: Are there any other cool expression features commonly used? Is there some way to integrate non pixel by pixel expressions? Example: calculating the mean of direct neighbors (3x3 window) |
Beta Was this translation helpful? Give feedback.
Found the solution for logical operators, every condition must be encapsulated by parentheses:
((B1>50)%26(B1<150))*B1
Are there any other cool expression features commonly used? Is there some way to integrate non pixel by pixel expressions? Example: calculating the mean of direct neighbors (3x3 window)