So the Ann Arbor DDA has a dumb page listing available parking spots in the five big, vertical parking structures around downtown Ann Arbor. It’s just a dump of how many spots are free (and there are always spots free); no feeds or time series or what have you.
We fight with the civic infrastructure we have, not the civic infrastructure we want to have.
So here’s a CSV dump of the actual data, updated every 20 minutes. Please use it for whatever you like.
And here’s a short Python script if you just want the data yourself:
from urllib2 import urlopen
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(urlopen("http://a2dda.org/parking.php"))
for row in soup('tr')[1:]:
structure, spots = row.contents
structure = structure.contents[0]
spots = spots.contents[0].split(' ')[1]
print structure, spots
Update 2008-04-04: See also my next post for more fun.
(tags: ann arbor civic infrastructure csv dda vertical parking)