Skip to main content

Save The Date (also, fun with historical weather data)

Laura and I would like to have the wedding outdoors. Naturally, this means that weather will play a significant factor. To get some idea of what the weather will be like on the big day, I whipped up some Python to calculate local average temperature, rainfall, and wind speed for the time surrounding April 5th.
import csv
import urllib2

STATION_ID = 'KNCOAKIS1'
WEATHER_URL = \
'http://www.wunderground.com/weatherstation/WXDailyHistory.asp?'
REQUEST_DATA = {
'ID': STATION_ID,
'format': 1,
'year': None,
'month': None,
'day': None,
}

def _GetRequestData(year, month, day):
request_data = REQUEST_DATA.copy()
request_data['year'] = year
request_data['month'] = month
request_data['day'] = day
return request_data

def GetDayStats(year, month, day):
request_data = _GetRequestData(year, month, day)
get_data = '&'.join('%s=%s' % (k, v) for k, v in request_data.items())
url = WEATHER_URL + get_data
data = urllib2.urlopen(url).read()
# Have to clean up the data because Weather Underground doesn't return a
# true CSV file. Instead, it has HTML markup in it :(
data.strip()
data = data.split('<br>')[:-1]
# Remove trailing whitespace and comma.
data = [r.strip()[:-1] for r in data]
reader = csv.DictReader(data)
averages = {
'TemperatureF': 0,
'WindSpeedMPH': 0,
'WindSpeedGustMPH': 0,
}
sums = {
'HourlyPrecipIn': 0,
}
mins = {
'WindSpeedMPH': [],
'WindSpeedGustMPH': [],
}
# DictReader has no __len__ defined. Have to keep count.
num_rows = 0
for row in reader:
num_rows += 1
for k in averages.keys():
averages[k] += float(row[k])
for k in sums.keys():
sums[k] += float(row[k])
for k in mins.keys():
mins[k].append((row['Time'], float(row[k])))

day_stats = {}
for k, v in averages.iteritems():
averages[k] = v / num_rows
day_stats.update(averages)
day_stats.update(sums)
for k in mins.keys():
values = mins[k][:]
values.sort(key=lambda x: x.__getitem__(1))
day_stats['Min%s' % k] = values[0]
return day_stats

def GetDayHistory(month, day, start_year, end_year):
days = []
for year in range(start_year, end_year + 1):
days.append(GetDayStats(year, month, day))
avg_stats = {}
min_times = []
for stats in days:
for k, v in stats.iteritems():
if isinstance(v, tuple):
min_times.append(v[0])
v = v[1]
avg_stats[k] = avg_stats.get(k, 0) + v
for k, v in avg_stats.iteritems():
avg_stats[k] = v / len(days)
return avg_stats, min_times

if __name__ == '__main__':
month = 4
for day in range(1, 8):
print 'History for %d/%d.' % (month, day)
print GetDayHistory(month, day, 2003, 2007)
Here's the results for April 5th over the past 5 years:
History for 4/5.
({
'TemperatureF': 61.136611720960197,
'WindSpeedMPH': 7.3304707160832763,
'WindSpeedGustMPH': 11.706614130829021,
'MinWindSpeedGustMPH': 0.0,
'MinWindSpeedMPH': 0.0,
'HourlyPrecipIn': 0.0
},
['2003-04-05 00:30:02', '2003-04-05 01:30:03',
'2004-04-05 04:45:01', '2004-04-05 20:15:01',
'2005-04-05 02:30:04', '2005-04-05 03:00:01',
'2006-04-05 20:45:01', '2006-04-05 14:45:01',
'2007-04-05 21:30:00', '2007-04-05 22:45:00'])
From this data, it's obvious that rain and temperature shouldn't be a problem. The biggest problem will be the wind. Here are the relevant weather charts for April 5th, 2007 (unfortunately, 2008 is not available).



Clearly the best times are in the morning and the evening. The evening is probably best since it's about 10 degrees warmer at 20:00 than 8:00 and the wind speed drops steadily after 19:00.

Popular posts from this blog

Bot Commander r1 Released

I just published Bot Commander , the code for my Lego NXT rover . There's a lot left to be done, but release early and often, right? Currently it provides a UI for controlling the direction and speed of all three motor ports on the NXT brick. You can link motors together to adjust their speed in unison. In addition, you can enable "Tilt Control" for a steering-wheel-type experience. To use tilt control: Hook up motor A and B to be the left and right wheels of your vehicle. Hold the phone sideways (i.e. landscape). Tilt the phone forward and backward to drive forward and backward. Turn the phone right and left (like a steering wheel) to steer right and left. As you tilt the phone, you'll see the UI update the slider controls for the speed of motors A and B. I plan to expand the UI to provide a lot more than just motor control. Before that, though, I'll push a JAR to make it easy to integrate control of Lego NXT robots into your own Android project. The code
Read more

Email Injection

Not so long ago, I ran a wiki called SecurePHP. On that wiki, there was one particular article about email injection that received a lot of attention. Naturally, with all the attention came lots of spam. As a result, I disabled editing of the wiki and content stagnated. Still, the email injection article remained popular. About a year later, the server that hosted SecurePHP died and I never had a chance to hook it all back up. I saved the article though and I'm reposting it now. It may be a bit old (I've been away from PHP for a long time), and I didn't write all of it, so feel free to leave comments about needed updates and corrections. Though this article focuses on PHP, it provides a lot of general information regarding email injection attacks. The PHP mail() Function There are a lot of ways to send anonymous emails, some use it to mass mail, some use it to spoof identity, and some (a few) use it to send email anonymously. Usually a web mailform using the mail() funct
Read more

Android Recipes and Snippets

I've put together a small collection of Android recipes. For each of these recipes, this is an instance of Context (more specifically, Activity or Service ) unless otherwise noted. Enjoy :) Intents One of the coolest things about Android is Intents . The two most common uses of Intents are starting an Activity (open an email, contact, etc.) and starting an Activity for a result (scan a barcode, take a picture to attach to an email, etc.). Intents are specified primarily using action strings and URIs. Here are some things you can do with the android.intent.action.VIEW action and startActivity() . Intent intent = new Intent(Intent.ACTION_VIEW); // Choose a value for uri from the following. // Search Google Maps: geo:0,0?q=query // Show contacts: content://contacts/people // Show a URL: http://www.google.com intent.setData(Uri.parse(uri)); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); Other useful action/URI pairs include: Intent.ACTION_DIAL , tel://867530
Read more