Kontinuation commented on issue #1427:
URL: https://github.com/apache/sedona/issues/1427#issuecomment-2129114447

   The expression `ST_IsEmpty(NULL)` will evaluate to `NULL`. Since SQL uses 
three-valued logic, where TRUE, FALSE, and NULL are distinct values, you may 
need to use the following query to find NULL or empty geometries:
   
   ```python
   df.where("geometry IS NULL OR ST_IsEmpty(geometry)").count()
   ```
   


-- 
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: issues-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to