DamianPendrak commented on PR #34322: URL: https://github.com/apache/superset/pull/34322#issuecomment-3133488708
> Works very nice! 1 question - I don't know the requirements so it might be correct, but why do Scatterplot and Screen grid create a range filter (from LON/LAT to LON/LAT), while Grid and Hexagon create an equality filter (LON/LAT == clicked point)? > > <img alt="image" width="1728" height="772" src="https://private-user-images.githubusercontent.com/15073128/471966111-180094ff-a996-4790-8419-f8a017a16e18.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NTM4MTE0OTMsIm5iZiI6MTc1MzgxMTE5MywicGF0aCI6Ii8xNTA3MzEyOC80NzE5NjYxMTEtMTgwMDk0ZmYtYTk5Ni00NzkwLTg0MTktZjhhMDE3YTE2ZTE4LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTA3MjklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwNzI5VDE3NDYzM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTRjMTk3MWJiYTJjOGQ0YWEyYTA4ODdlMDliNjRiZDIzY2M1ZDU3YWU5Y2M2ODQ2NTM4Njk1ZjM0NjNlOGJhOGUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.MUYg9cbm9DChMyp5YWLoY3YKHXPvcVbsCTY3Ly9T34Q"> That's the difference in aggregation - the Grid and Hexagon are using CPU aggregation and Scatterplot and Screengrid are using GPU aggregation. With GPU aggregation the picking event doesn't return the points that are aggregated in the clicked cell, so the area filter is what we came up with -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
