ameerkat / esp

Natural disaster detection and prediction using social media

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

Note 2/9/2012 - Pretty much on permanent hiatus. ESP is a project designed to detect natural disasters from social media sources (specifically twitter), make predictions of affected areas and provide alerts to people living in those areas automatically.

Setup

To run you must create a Options.cs file of the following format, the stream url is just the base url to the stream you are using, the methods used for searching tend to rely on the filter.json stream method to provide keyword and geo based searching.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Tweet
{
	class Options
	{
		public static String twitterStreamUrl = "https://stream.twitter.com/1/statuses/filter.json";
		public static String twitterUsername = your_twitter_username;
		public static String twitterPassword = your_twitter_password;
		public static int numberThreads = 4;
	}
}

TODO

About

Natural disaster detection and prediction using social media


Languages

Language:C# 100.0%