Skip to content
/ esp Public

Natural disaster detection and prediction using social media

Notifications You must be signed in to change notification settings

ameerkat/esp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages