79429404

Date: 2025-02-11 09:05:24
Score: 0.5
Natty:
Report link

Your query is counting all mentions of protests, but GDELT records the same event multiple times from different sources, inflating the count.

How to refine your query?

To get the number of unique protests in Iran for September 2022, modify your query to count distinct events instead of all mentions.

Improved query:

SELECT COUNT(DISTINCT GLOBALEVENTID) AS unique_protests
FROM `gdelt-bq.gdeltv2.events_partitioned`
WHERE _PARTITIONTIME BETWEEN TIMESTAMP('2022-09-01') AND TIMESTAMP('2022-09-30')
AND EventRootCode = '14' 
AND ActionGeo_CountryCode = 'IR';

Want even more accuracy?

You can filter based on confidence scores:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Rathod Yash