我无法从GDELT gkg表获得超过6个月的数据。
例如,此查询只返回2015年2月19日的结果:
SELECT Date, SourceCommonName, DocumentIdentifier FROM [gdelt-bq:gdeltv2.gkg]
where (date < 20150220000000 and locations like "%Israel%" and
SourceCommonName = "cnn.com")对date < 20150219000000的相同查询不返回结果
如何获得较早的结果/为什么不返回旧的结果?
发布于 2015-08-25 18:53:34
正如你注意到的那样,你提到的表格自2015年1月以来才更新。这是GDELT v2:http://blog.gdeltproject.org/gdelt-2-0-our-global-world-in-realtime/的声明。
V1拥有过去30年的数据,可以在https://bigquery.cloud.google.com/table/gdelt-bq:full.events上获得,但没有v2中的gkg那么丰富。
也许与GDELT项目的Kalev联系,让GKG恢复前几年的状态?
https://stackoverflow.com/questions/32161102
复制相似问题