| Número de ID do Erro |
BUG-000150440 |
| Enviado | June 29, 2022 |
| Última Modificação | October 31, 2025 |
| Aplica-se à | ArcGIS Velocity |
| Versão encontrada | N/A |
| Sistema Operacional | Windows OS |
| Versão do Sistema Operacional | 10.0 64 Bit |
| Status | As Designed
Após revisão pela equipe de desenvolvimento, foi determinado que esse comportamento é conforme projetado. Consulte a seção Informações Adicionais para obter detalhes.
|
Informações Adicionais
In ArcGIS Velocity, the 'Filter by Expression' tool retains features when the Arcade expression evaluates to true. If the Arcade expression evaluates to false, the feature is dropped. In the supplied reproduction expression, Arcade returns the last boolean of the expression. This behavior is as designed by Arcade, reproducible in the Arcade playground, and independent of ArcGIS Velocity.
Instead, the Arcade expression must be designed to combine multiple expressions using the && operator only to retain features with a value of true for all expressions:
$feature.fieldValue > 70 && $feature.fieldValue != '15' && $feature.fieldValue != 'AB'
Alternatively, multi-line expressions can be utilized but the Arcade expression must return a boolean value of true or false for the 'Filter by Expression' tool.
Solução Provisória
When utilizing the Filter by Expression tool, create a new filter for each expression.
Etapas para Reproduzir