Giter Club home page Giter Club logo

get_gdelt's Introduction

GDELT_PROJECT: Parse, analyze and map GDELT data

  1. run ./install_for_clickhouse.sh on your terminal

  2. go make yourself a coffee

(the intermediate CSV files are being removed as we insert them into the database, no need to tidy things up)

  1. you're all set, you can request your database: try SELECT count(*) from gdelt; DESCRIBE TABLE gdelt;

  2. feel free to check out the gdelt data structure here: http://www.gdeltproject.org/data.html#documentation GDELT 1.0 Data Format Documentation & CAMEO Code Reference are both particularly pertinent.

  3. Same goes for clickhouse documentation: https://clickhouse.yandex/docs/en/

  4. If you quit and want to access your clickhouse db once again, here is the command: docker run -it --rm --link gdelt_clickhouse:clickhouse-server yandex/clickhouse-client --host clickhouse-server

Some usefull links: https://hub.docker.com/r/yandex/clickhouse-server/

SQL REQUESTS EXAMPLES:

Rape occurences in France:

SELECT EventCode, Actor1Geo_CountryCode, SOURCEURL FROM gdelt WHERE EventCode = '1821' AND Actor1Geo_CountryCode = 'FR'

Collect all articles talking about French president Emmanuel Macron:

SELECT EventCode, SOURCEURL, DATEADDED FROM gdelt WHERE SOURCEURL LIKE '%Macron%';

Check out the actions of the RedCross ONG around the world, using LAT LONG data:

SELECT EventCode, ActionGeo_Lat, ActionGeo_Long, SOURCEURL FROM gdelt WHERE Actor1Code = 'NGOHLHIRC' ORDER BY EventCode ASC;

get_gdelt's People

Contributors

goyhexvincent avatar

Watchers

 avatar

Forkers

stratigraph

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.