<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>Frumination</title>
      <link>http://frumin.net/ation/</link>
      <description></description>
      <language>en</language>
      <copyright>Copyright 2013</copyright>
      <lastBuildDate>Wed, 07 Mar 2012 18:22:37 -0500</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

            
      <item>
         <title>Time for MTA Bus Time</title>
         <description><![CDATA[<p>In mid-January, <a href="http://mta.info"><span class="caps">MTA</span></a> <a href="http://mta.info/news/stories/?story=555">launched</a> <a href="http://bustime.mta.info"><span class="caps">MTA</span> Bus Time</a>, its real-time bus tracking and <a href="http://bustime.mta.info/wiki/About">customer information system</a>.  It's currently live on Staten Island and the <span class="caps">B63 </span>route in Brooklyn, is <a href="http://mta.info/news/stories/?story=571">expanding</a> to the Bronx this year, and will cover the whole city in 2014</p>

<p><a href="http://bustime.mta.info"><img src="/img/MTA-Bus-Time.jpg" alt="" height="330" width="600" /></a></p>

<p>It has <a href="http://bustime.mta.info">web map</a>, <a href="http://bustime.mta.info/m/index">mobile web</a>, and <a href="http://bustime.mta.info/wiki/Help/SMSOverview"><span class="caps">SMS </span>text</a> interfaces, along with a fully featured, standards-based <a href="http://bustime.mta.info/wiki/Developers/Index">developer <span class="caps">API</span></a>.  Smartphone users can scan the QR code <a href="http://bustime.mta.info/wiki/Help/FindingAStopCode#HQRCodeataBusStop">at each stop</a> to be automatically directed to the Bus Time page for that stop.</p>

<p><img src="/img/MobileQRCode.png" alt="" height="449" width="600" /></p>

<p>Particularly compelling to the author is the <a href="http://bustime.mta.info/wiki/Technology">approach we've taken</a> to delivering this project quickly and inexpensively (for the short and long term).  With <span class="caps">MTA </span>as the overall systems integrator, we've ensured that the system is constructed using <a href="http://www.aptastandards.com/StandardsPrograms/ITStandardsProgram/TCIPProgram/tabid/113/language/en-US/Default.aspx">open</a> <a href="http://www.kizoom.com/standards/siri/">standards</a> for all interfaces, and <a href="https://github.com/OneBusAway/onebusaway/wiki">open source software</a> licensing when appropriate.  And, oh yeah, it runs on Amazon's cloud.</p>

<p>Please, <a href="http://bustime.mta.info/wiki/ContactUs">let us know what you think</a>.</p>

<p>Better late than never right? (this post, not the project...)</p>]]>
        
	</description>

<link>http://frumin.net/ation/2012/03/time_for_mat_bus_time.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">gis</category>
                  <category domain="http://www.sixapart.com/ns/types#category">gps</category>
                  <category domain="http://www.sixapart.com/ns/types#category">nyc</category>
                  <category domain="http://www.sixapart.com/ns/types#category">software</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transit</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transport</category>
        
        
         <pubDate>Wed, 07 Mar 2012 18:22:37 -0500</pubDate>
      </item>
            
      <item>
         <title>OpenStreetBlock</title>
         <description><![CDATA[<p>Please put your hands together for... <a href="http://transit.frumin.net/openstreetblock/">OpenStreetBlock</a> -- a web service for turning a given lat/lon coordinate (e.g. 40.737813,-73.997887) into a textual description of the actual city block to which the coordinate points (e.g. "West 14th Street bet. 6th Ave. &amp; 7th Ave") using <a href="http://openstreetmap.org">OpenStreetMap</a> data.</p>

<p>There are likely many applications for such a service. It should be quite useful any time one might need to succinctly describe a given location (or set of locations) without using a map.  I  imagine it would be particularly helpful for field testing a real-time bus tracking and customer information system using a smartphone or other small mobile browser.</p>

<p>The basic concept of how it works is the following.</p>


<ol>
<li>Start with a given lat/lon coordinate (40.737813,-73.997887, for example).<br />
<img src="http://frumin.net/img/osb-coord.png" alt="" /></li>
<li>Find the street segment ("way" in OpenStreetMap terminology) physically closest to the given coordinate. Assume this is the street we are on: in this case, "14th St." <br />
<img src="http://frumin.net/img/osb-way.png" alt="" /></li>
<li>Find the two intersections ("nodes" in OpenStreetMap terminology) closest to the given coordinate on the selected street. Assume these are the intersections we are between.<br />
<img src="http://frumin.net/img/osb-nodes.png" alt="" /></li>
<li>For each of those intersections, find the streets passing through those intersections. Exclude any intersecting streets with the same name as the selected street (the one we are "on"). Use the remaining streets to name the given intersection (the ones we are "between"): in this case, 6th Avenue and 7th Avenue.<br />
<img src="http://frumin.net/img/osb-intersecting.png" alt="" /></li>
<li>OpenStreetBlock also uses a configurable threshold parameter to determine whether we are "at" a given intersecting street rather than "between" two intersections (this is the so-called "Corner Threshold"). If we are within this threshold of the nearest intersection, drop the other intersection: in this case, we are not. <br />
<img src="http://frumin.net/img/osb-corner.png" alt="" /></li>
</ol>



<p>I've been hacking OpenStreetBlock on and off for several months now, and I finally found the time to clean it up a bit for release as a free-standing <a href="http://github.com/fruminator/openstreetblock">open source project</a>.  To learn more, read about the <a href="http://transit.frumin.net/openstreetblock/#webservice">web service itself</a> or try <a href="http://transit.frumin.net/openstreetblock/#examples">some example searches</a> (this instance is only populated with OpenStreetMap data for <span class="caps">NYC </span>less Staten Island).</p>

<p>This project wouldn't be nearly as easy as it was without: <a href="http://www.postgresql.org/">PostgreSQL</a>, <a href="http://postgis.refractions.net/">PostGIS</a>, <a href="http://wiki.openstreetmap.org/wiki/Osm2pgsql">osm2pgsql</a>, <a href="http://wiki.openstreetmap.org/wiki/Osmosis">Osmosis</a>, <a href="http://httpd.apache.org/">Apache</a>, <a href="http://www.php.net/"><span class="caps">PHP</span></a> (yes, I know), and <a href="http://openstreetmap.org/">OpenStreetMap</a>.</p>]]>
        
	</description>

<link>http://frumin.net/ation/2011/04/openstreetblock.html</link>
<author>fruminator</author>


        
        
         <pubDate>Sun, 03 Apr 2011 20:41:43 -0500</pubDate>
      </item>
            
      <item>
         <title>The Dishes (and Thesis) are Done</title>
         <description><![CDATA[<p>At times, I find it easiest to express my momentary sentiment with a pithy pop culture reference.  I don't think I've even seen "Don't Tell Mom the Babysitter's Dead" in its entirety, but this particular scene comes to mind right now (where the guys in question were asked by the babysitter to do the dishes):</p>

<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/CMiEpeKMNQI&amp;hl=en_US&amp;fs=1&amp;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CMiEpeKMNQI&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>

<p>And by "dishes" in this case I actually mean <span class="caps">GRAD SCHOOL. </span> When <a href="http://frumin.net/img/cover-signed-lores.png">my thesis was signed</a> yesterday, I became, for all intents and purposes, a <a href="http://cee.mit.edu/graduate/mst">Master of Science in Transportation</a> and in <a href="http://www.mit.edu/~orc/">Operations Research</a>.  I don't feel any different; do you?</p>

<p><a href="http://frumin.net/img/cover-signed-lores.png"><img src="http://frumin.net/img/cover-signed-thumb.png" alt="" /></a></p>

<p>As for the content of the thesis, entitled "Automatic Data for Applied Railway Management: Passenger Demand, Service Quality Measurement, and Tactical Planning on the London Overground Network," it's <a href="http://frumin.net/img/frumin-thesis.pdf">posted here</a> for anyone to see.  I recommend it only to (a) transit planners and researchers, and (b) people who need help sleeping.</p>

<p>The gist of the thing, really the gist of my entire graduate education, is that there are a million ways that transit planners and managers should take advantage of the glut of automatic data this is becoming ever more available.  As per the abstract:</p>

<blockquote><p>This thesis develops and tests methods to (i) estimate on-train loads from automatic measurements of train payload weight, (ii) estimate origin-destination matrices by combining multiple types of automatic data, (iii) study passenger incidence (station arrival) behavior relative to the published timetable, (iv) characterize service quality in terms of the difference between automatically measured passenger journey times and journey times implied by the published timetable.  It does so using (i) disaggregate journey records from an entry- and exit-controlled automatic fare collection system, (ii) payload weight measurements from ``loadweigh'' sensors in train suspension systems, and (iii) aggregate passenger volumes from electronic station gatelines.  The methods developed to analyze passenger incidence behavior and service quality using these data sources include new methodologies that facilitate such analysis under a wide variety of service conditions and passenger behaviors.</p></blockquote>

<blockquote><p>The above methods and data are used to characterize passenger demand and service quality on the rapidly growing, largely circumferential London Overground network in London, England.  A case study documents how a tactical planning intervention on the Overground network was influenced by the application of these methods, and evaluates the outcomes of this intervention.  The proposed analytical methods are judged to be successful in that they estimate the desired quantities with sufficient accuracy and are found to make a positive contribution to the Overground's tactical planning process.  </p></blockquote>

<p>One aspect of the analyses in the research was to "assign" passengers to individual scheduled services depending on when and where they entered the system and where they were going (all recorded by the <a href="http://en.wikipedia.org/wiki/Oyster_card">Oyster smartcard</a> ticketing system).  Something I really enjoyed was implementing this using the open source trip-planning software <a href="http://bmander.github.com/graphserver/">Graphserver</a>.  I just:</p>


<ol>
<li>converted the Overground's schedules to <a href="http://code.google.com/transit/spec/transit_feed_specification.html"><span class="caps">GTFS</span></a> (with a little hacked up Perl script)</li>
<li>fed the <span class="caps">GTFS </span>schedules into Graphserver</li>
<li>queried Graphserver to "plan" a trip for each of the Oyster journey data records (with another little hacked up Perl script)</li>
</ol>



<p>The result was full information about the least-travel time scheduled path for that journey.  In other words, Graphserver did all the algorithmic heavy lifting typically associated with "schedule-based assignment" and all I had to do was a little work around the edges.  Bam!  This was just one small part of the thesis, but it was great to be able to leverage the open source and open standards-based transit-related tools being developed these days.  Naturally, all the statistical, numerical, and graphical analysis was done with <a href="http://www.r-project.org/">R</a></p>

<p>With that, and after a brief upcoming vacation to a land of cheese, wine, and (edible) Oysters, the page turns.  As of July 6, I will be taking what I have learned in the past decade as a hacker (in the most benevolent sense of the word) for the finance, internet, and transit industries and putting it to work for my new employer, the <a href="http://www.mta.info/"><span class="caps">MTA</span></a>, on some strategic internally and externally facing technology projects.  Watch out <span class="caps">NYC.</span></p>]]>
        
	</description>

<link>http://frumin.net/ation/2010/05/the_dishes_and_thesis_are_done.html</link>
<author>fruminator</author>


        
        
         <pubDate>Wed, 19 May 2010 18:35:22 -0500</pubDate>
      </item>
            
      <item>
         <title>The Existential Lean</title>
         <description><![CDATA[<p>There I was at Bergen St waiting for my train to work.  I looked at the sign when I came in, it said 4 minutes, I said cool and turned up my ipod.  A minute letter I found myself about to lean over the tracks to look for the next train.  But then I remembered the sign, didn't lean, and felt a somewhat unpleasant feeling evaporate.  A weight on my shoulders lifted and a knot in my gut untangled itself.  Nirvana!  (Maybe the existential lean is not so existential...)</p>

<p>I spent the next 2 minutes until my train watching people come through the turnstile, ignore the snazzy new real‑time sign, go right to leaning over the tracks, and get that sour "where's my damn train already?!?!" face.</p>

<p>I think there is going to a period of adjustment while New Yorkers (at least those of us using the <span class="caps">IRT</span>) adjust to the new reality.  But when we do, it will be a whole new day.  I wonder what other kinds of behavior changes we will see.  Maybe if we can quickly look at the sign as we run down the stairs we won't feel the need to stick out foot in the closing door if we can see the next train is 3 minutes behind.  Or maybe we will be more compelled if we see the next train is 10 minutes away.</p>

<p>My personal hope is that whatever positive benefits we experience from the real‑time information on the signs (and hopefully on our cell phones!) will motivate us all to get the systems in place to create same information on the rest of the subway system.</p>]]>
        
	</description>

<link>http://frumin.net/ation/2010/04/the_existential_lean.html</link>
<author>fruminator</author>


        
        
         <pubDate>Fri, 23 Apr 2010 13:06:16 -0500</pubDate>
      </item>
            
      <item>
         <title>What&apos;s Capacity got to do with my City?</title>
         <description><![CDATA[<p>Recently given an advance copy of the official 2008 subway passenger counts, I found myself wondering -- <i>what would it take in terms of auto facilities to replace the morning rush hour carrying capacity of the <span class="caps">NYC </span>subway?</i>  </p>

<p>This is an important question because the cost (be it financial, environmental, etc) of building, operating, and maintaining a transportation facility is generally determined by the maximum capacity it is expected to provide.  To avoid ruining any surprises, all calculations here are derived from the publicly available <a href="http://www.nymtc.org/files/hub_bound/Hub_Bound_Travel_Report_2007_Revised_June2009.pdf">2007</a>  <a href="http://www.nymtc.org/data_services/HBT.html">Hub Bound Report</a>, and implemented in <a href="http://frumin.net/transit/capacity.xls">this spreadsheet</a>.  The "hub" here is Manhattan below 60th Street -- New York City's official <span class="caps">CBD.</span></p>

<p>Just to get warmed up, chew on this -- <b>from 8:00AM to 8:59 AM on an average Fall day in 2007 the <span class="caps">NYC</span> Subway carried 388,802 passengers into the <span class="caps">CBD </span>on 370 trains over 22 tracks.  In other words, a train carrying 1,050 people crossed into the <span class="caps">CBD </span><i>every 6 seconds</i>.</b>  Breathtaking if you ask me.</p>

<p>Over this same period, the average number of passengers in a vehicle crossing any of the East River crossings was 1.20.  This means that, <b>lacking the subway, we would need to move 324,000 additional vehicles into the <span class="caps">CBD</span></b> (never mind where they would all park).  </p>

<p>What does it take to move that many additional vehicles?  Well, it depends.  Different auto facilities in the city appear to have different capacities (as expressed in vehicles per hour per lane):</p>

<table><tr style="text-align: center"><th>Facility&nbsp;</th><th>&nbsp;Inbound Lanes&nbsp;</th><th>&nbsp;Max Hourly Inbound Traffic&nbsp;</th><th>&nbsp;Veh/Lane/Hr&nbsp;</th><th>&nbsp;Lanes Needed&nbsp;</th></tr><tr style="text-align: center"><td style="text-align: left">Queens Midtown Tunnel</td><td>2</td><td>3,882</td><td>1,941</td><td>167</td></tr><tr style="text-align: center"><td style="text-align: left"><span class="caps">FDR</span> Drive</td><td>3</td><td>5,425</td><td>1,808</td><td>179</td></tr><tr style="text-align: center"><td style="text-align: left">Brooklyn Battery Tunnel</td><td>2</td><td>3,017</td><td>1,509</td><td>215</td></tr><tr style="text-align: center"><td style="text-align: left">Brooklyn Bridge</td><td>3</td><td>4,262</td><td>1,421</td><td>228</td></tr><tr style="text-align: center"><td style="text-align: left">West Side Highway</td><td>4</td><td>4,825</td><td>1,206</td><td>269</td></tr><tr style="text-align: center"><td style="text-align: left">2nd Ave</td><td>6</td><td>4,739</td><td>790</td><td>410</td></tr><tr style="text-align: center"><td style="text-align: left">5th Avenue</td><td>5</td><td>1,712</td><td>342</td><td>946</td></tr></table>

<p>At best, <b>it would take 167 inbound lanes, or 84 copies of the Queens Midtown Tunnel, to carry what the <span class="caps">NYC</span> Subway carries</b> over 22 inbound tracks through 12 tunnels and 2 (partial) bridges.  At worst, 200 new copies of 5th Avenue.  Somewhere in the middle would be 67 West Side Highways or 76 Brooklyn Bridges.  And this neglects the Long Island Railroad, Metro North, NJ Transit, and <span class="caps">PATH </span>systems entirely.  </p>

<p>Of course, at <a href="http://en.wikipedia.org/wiki/Parking_space">325 square feet</a> per parking space, all these cars would need over 3.8 square miles of space to park, about 3 times the size of Central Park.  At that point, who would want to go to Manhattan anyway? </p>

<p>Without the <span class="caps">NYC</span> Subway, I'm pretty sure this is what it would look like if we provided for to everyone commute by car:</p>

<p><img src="http://frumin.net/img/cordon-nosub.png" alt="" /></p>

<p><i>Update: people seem to be taking this map quite seriously, whereas I would call it ... conceptual.  The blocks in Manhattan below 57th Street are the theoretical parking lots, whereas everything else is the additional roads, bridges, and tunnels we would need to move the cars.</i></p>]]>
        
	</description>

<link>http://frumin.net/ation/2009/08/whats_capacity_go_to_do_with_m.html</link>
<author>fruminator</author>


        
        
         <pubDate>Sun, 09 Aug 2009 17:21:11 -0500</pubDate>
      </item>
            
      <item>
         <title>Spark it Up</title>
         <description><![CDATA[<p>This post is literally 2 years in the making.  In the Spring of 2007, Jeff "You Don't Mess With the" Zupan gave me a <a href="http://transit.frumin.net/subway/growth/nyc-station-ridership.xls.zip">spreadsheet</a> with the annual 'registrations' (i.e. recorded entries) at each station in the <span class="caps">NYC </span>subway system going back to <em>the beginning</em> (1905).  At the time, I was heavy into the new <a href="http://opengeo.org/">open source geo stack</a>, as is reflected in <a href="http://frumin.net/ation/2007/06/le_triboro_rx.html">the main piece of work</a> I did at <a href="http://www.rpa.org/"><span class="caps">RPA</span></a>.  Hammer in hand, I of course saw this spreadsheet as a bucket of nails.</p>

<p>The result, after much whacking, is, I think, compelling, but you'll have to <a href="http://transit.frumin.net/subway/spark.php">see for yourself</a>.  The general idea it that the history of subway ridership tells a story about the history of a neighborhood that is much richer than the overall trend.  An example, below, shows the wild comeback of <a href="http://transit.frumin.net/subway/spark.php?lat=40.70994&amp;lon=-73.95011&amp;zoom=15&amp;layers=B000TT">inner Williamsburg</a>, and how the growth decays at each successive stop away from Manhattan on the L train:</p>

<p><a href="http://transit.frumin.net/subway/spark.php?lat=40.70994&amp;lon=-73.95011&amp;zoom=15&amp;layers=B000TT"><img src="http://frumin.net/img/spark/bk.png" alt="" /></a></p>

<p><BR></p>

<p>This is somewhat in contrast to the <a href="http://transit.frumin.net/subway/spark.php?lat=40.82105&amp;lon=-73.92037&amp;zoom=14&amp;layers=B000TT">South Bronx</a>, which is yet to see the resurgence in ridership, other than at Yankee Stadium and the Grand Concourse:</p>


<p><a href="http://transit.frumin.net/subway/spark.php?lat=40.82105&amp;lon=-73.92037&amp;zoom=14&amp;layers=B000TT"><img src="http://frumin.net/img/spark/bx.png" alt="" /></a></p>

<p><BR></p>

<p>The stations around <a href="http://transit.frumin.net/subway/spark.php?lat=40.70591&amp;lon=-74.0121&amp;zoom=16&amp;layers=B0TT">Wall Street</a> tell a totally different story, in which the ups and downs of each dep/recession have more immediate but temporary effects:</p>

<p><center><br />
<a href="http://transit.frumin.net/subway/spark.php?lat=40.70591&amp;lon=-74.0121&amp;zoom=16&amp;layers=B0TT"><img src="http://frumin.net/img/spark/ws.png" alt="" /></a>
</center></p>

<p>My <a href="http://frumin.net/ation/2007/07/wheres_the_beef.html">first stab</a> at visualizing this data was a traditional cartographic approach, showing the overall growth from 1977 to 2006 at each station.  This told an approximate story at the level of the whole the city, but did not leave much room for detailed exploration.  Thanks to <a href="http://geoserver.org/display/GEOS/Welcome">geoserver's</a> awesome new(ish)  <a href="http://blog.geoserver.org/2008/12/08/dynamic-symbolizers-part-1/">dynamic symbolizers</a> functionality, it was trivial to plot the <a href="http://transit.frumin.net/subway/sparks/">station-by-station time series sparklines</a> (generated in <a href="http://www.r-project.org/">R</a> of course) onto the <a href="http://transit.frumin.net/subway/spark.php">interactive online map</a>.  (Originally I the plots were produced in Perl and placed onto the map with a Javascript <span class="caps">WFS </span>layer, but that is so 2005.)</p>

<p>For all this, I never really felt like this little experiment was ready for an audience.  That all changed when <a href="http://opengeo.org/">OpenGeo</a> put up its <a href="http://blog.geoserver.org/2009/01/30/geoserver-and-openstreetmap">Open StreetMap base layer for the web</a>, giving fancy overlays like this one the context they need.</p>

<p><a href="http://transit.frumin.net/subway/spark.php">http://transit.frumin.net/subway/spark.php</a></p>

<p><span class="caps">UPDATES</span>:</p>

<p>At least 2 people have taken the data I put out there and used it to make some zippier interactive flash apps:</p>


<ul>
<li><a href="http://diametunim.com/blog/2009/05/historical-nyc-ridership/">The first</a> is very polished, but I think the designer is quite misled in his desire to not plot dots on a map, and thus to plot what looks like a network flow diagram but with totally bogus data</li>
</ul>




<ul>
<li><a href="http://composure1.com/subway.html">The second</a> is a little rougher around the edges, but I'd say is much more honest, and thus useful</li>
</ul>



<p>Not sure if anyone knows, but I also have <span class="caps">GIS </span>files for the subway here: <a href="http://transit.frumin.net/trx/Alignment">http://transit.frumin.net/trx/Alignment</a></p>]]>
        
	</description>

<link>http://frumin.net/ation/2009/05/spark_it_up.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">gis</category>
                  <category domain="http://www.sixapart.com/ns/types#category">nyc</category>
                  <category domain="http://www.sixapart.com/ns/types#category">subway</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transit</category>
        
        
         <pubDate>Thu, 07 May 2009 11:22:33 -0500</pubDate>
      </item>
            
      <item>
         <title>It&apos;s Not a Tumor</title>
         <description><![CDATA[<p>For reasons not worth mentioning, I had a brain <span class="caps">MRI </span>in recent weeks.  As for prognosis, Arnold definitely said it best:</p>

<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/8xqZnmESuiw&amp;hl=en&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8xqZnmESuiw&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>

<p><BR><br />
Not that I ever really thought it would be.  What I did think about was <a href="http://frumin.net/img/MRI/">the pictures</a> I would get back.  And they are money (perhaps even more so than the nap I took in the machine).  Here's the best of the crop (click for enlargements, or <a href="http://frumin.net/img/MRI/">go here</a>):</p>

<table>
<tr><td align="center">
<object width="225" height="223"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3412062&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3411968&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="225" height="223"></embed></object><br />
<BR><a href="http://frumin.net/img/MRI/sideview1/imgs/">Images</a> | <a href="http://vimeo.com/3411968">Video</a><br />
</td><td align="center">
<object width="225" height="223"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3412062&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3411643&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="225" height="223"></embed></object>

<BR><a href="http://frumin.net/img/MRI/topview/imgs/">Images</a> | <a href="http://vimeo.com/3411643">Video</a><br />
</td></tr>
<tr><td>&nbsp;</td></tr>
<tr><td align="center">
<object width="225" height="223"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3412062&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3411876&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="225" height="223"></embed></object><br />
<BR><a href="http://frumin.net/img/MRI/frontview/imgs/">Images</a> | <a href="http://vimeo.com/3411876">Video</a><br />
</td><td align="center">
<object width="225" height="223"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3412062&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3412062&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="225" height="223"></embed></object><br />
<a href="http://vimeo.com/3412062">Video</a><br />
</td></tr>
</table>

<p><BR><br />
I don't think I should have expected to recognize myself from a cross-section of my brain, eyeballs, and sinuses.  In fact, I think I look damn silly.</p>

<p><img src="http://frumin.net/img/MRI/topview/imgs/topview0065.png" alt="" /></p>

<p><BR><br />
I do recognize my crooked nose in this one, but I didn't expect the crookedness to continue inside the skull.  That huge white ball inside my right cheek -- is that mucous?  Is there a doctor in the house?</p>

<p><img src="http://frumin.net/img/MRI/topview/imgs/topview0078.png" alt="" /></p>

<p><BR><br />
I can't resist this one: peep the brain stem.</p>

<p><img src="http://frumin.net/img/MRI/sideview1/imgs/sideview10008.png" alt="" /></p>]]>
        
	</description>

<link>http://frumin.net/ation/2009/02/its_not_a_tumor.html</link>
<author>fruminator</author>


        
        
         <pubDate>Sat, 28 Feb 2009 18:10:11 -0500</pubDate>
      </item>
            
      <item>
         <title>What&apos;s in a Schedule?</title>
         <description><![CDATA[<p>I owe somebody what amounts to this blog post.  Pardon the lack of illustrative diagrams.</p>

<p>I have been thinking about mass transit trip planning software for the web and for mobile devices.  Between the individual efforts of agencies around the world, and Google's efforts towards open sharing of structured transit system data, we seem to be on the right track, institutionally speaking.  As a user, however, I am perpetually frustrated by the focus that every transit trip planner I have ever used puts on the supposed schedule, even for services that are high frequency and/or less-than-perfectly reliable.</p>

<p>This general feeling, combined with two recent and exciting meetings I have had, leave me with a few nagging questions:</p>


<ul>
<li>In providing transit users with such software, how useful is the schedule by which the transit provider has planned their operations?</li>
</ul>




<ul>
<li>When are expected waiting and travel times more useful than precise trip-by-trip itineraries?  </li>
</ul>




<ul>
<li>What effect do randomness and unreliability have on those expectations?  </li>
</ul>




<ul>
<li>Should the passenger plan her trip differently if she has to be on time than if her schedule is flexible?  </li>
</ul>




<ul>
<li>Finally, does real-time information obviate the need for any or all of these other inputs?</li>
</ul>



<p>The answer: it depends.  The actual schedule (R trains leave Union St at 8:13, 8:25, 8:37 arriving at Union Square at 8:39, 8:51, 9:03, etc) is only relevant to the degree to which operations follow the plan.  And even in the face of near-perfect operations, I only care about the schedule of departures when I have something to lose by ignoring it (i.e. when there's not always another train or bus in tolerably few minutes).</p>

<p>Expectations implied by the schedule (I should wait 6 minutes on average, but never longer than 12, and the ride is expected to take 26 minutes) are meaningful even when the precise schedule isn't, but only if those expectations are reasonable.  For example, <a href="http://web.mit.edu/urban_or_book/www/book/chapter2/2.13.html">a simple model</a> shows that as the service becomes even slightly variable, expectation of waiting time increases, as does the maximum.  Of course, many things that cause some passengers to wait longer are experienced by other passengers as delays along the way.</p>

<p>Let's now think specifically about trip planning software for relatively high frequency urban transit services with normal amounts of variability.  I don't want to be bothered with exact but fairly useless times of  scheduled departures and arrivals.  I just want to know how long I can realistically expect to have to wait, and how long the trip is likely to take.  And when I have a hard timeline, like getting to a meeting or a catching an airplane, I want to know the (approximately) worst case scenario.</p>

<p>Current levels of unreliability in our transit systems are <em>not</em> something we should have to live with.  More funding, saner public policy, and better management can go a long way towards fixing some problems.  I am not focusing here on the sources of unreliability, but suffice it to say they are many, some debatably the provider's responsibility (eg missing drivers, faulty equipment) and some debatably not (eg on-street traffic, passenger behavior).  But given that they are here today, would you rather think a trip will be fast and have it end up being slow, or would you prefer to have the best information possible when making your own decisions?</p>

<p>The copious amounts of real service data collected by transit providers from bus <span class="caps">GPS </span>and rail signaling systems are of great value here.  They allow us to fairly easily and cheaply describe distributions of waiting and travel times, and thus estimate expectations and approximate maximums for use in trip planning software.  </p>

<p>Often, those systems were in fact installed to provide real time data, with historical performance analysis a secondary or accidental purpose.  The notion of an expected waiting time changes radically when real-time "next-vehicle" information is provided, assuming the real-time predictions are in fact accurate.  However, even perfect real-time data doesn't protect from problems from occurring down the line or reduce the variability inherently introduced by successive transfers.</p>

<p>In the next generation of (open source?) web and mobile transit trip planning, please:</p>


<ul>
<li>Give me the option to use the schedule or to use expected values, but try to be smart about the default.</li>
</ul>




<ul>
<li>When not using the schedule, please allow me to plan depending on how flexible my own schedule is.</li>
</ul>




<ul>
<li>Use real performance data to generate realistic expected and worst case scenarios.</li>
</ul>




<ul>
<li>When possible, especially when the trip is imminent, use real time data to reduce uncertainty in my trip plan, but make use of realistic expectations for forecasting the balance of the trip.<br />
.</li>
</ul>



<p>To implement such a trip planner, a number of open questions remain:</p>


<ul>
<li>Even for a perfectly reliable system, where exactly is that threshold between using the schedule and using expectations?  </li>
</ul>




<ul>
<li>How does this threshold change as a function of normal or excessive variability in operations?  </li>
</ul>




<ul>
<li>What is the best way to integrate real-time data (of varying predicative quality) with realistic expectations for trip planning on-the-go?</li>
</ul>



<p>If you're still awake, and have comments or questions, let's talk.  The fact that this post found its way onto your computer makes it highly likely you already know how to get in touch.</p>]]>
        
	</description>

<link>http://frumin.net/ation/2008/11/whats_in_a_schedule.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">data</category>
                  <category domain="http://www.sixapart.com/ns/types#category">mobile</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transit</category>
        
        
         <pubDate>Thu, 27 Nov 2008 02:47:13 -0500</pubDate>
      </item>
            
      <item>
         <title>You Know What I Did Last Summer?</title>
         <description><![CDATA[<p>I spent 10 weeks last Summer as an intern on the strategy team of <a href="http://www.tfl.gov.uk">Transport for London's</a> (TfL) London Rail division.  This part of TfL is responsible for the <a href="http://en.wikipedia.org/wiki/London_Overground">London Overground</a>, the <a href="http://en.wikipedia.org/wiki/Docklands_Light_Railway">Docklands Light Railway</a>, and <a href="http://en.wikipedia.org/wiki/Tramlink">Tramlink</a>, is the presumptive operator of <a href="http://en.wikipedia.org/wiki/Crossrail">Crossrail</a> (if and when...), and serves as TfL's interface with the <a href="http://en.wikipedia.org/wiki/National_Rail">National Rail</a> network.  My general task was to help London Rail start to make use of the oceans of data spewing out of the <a href="http://en.wikipedia.org/wiki/Oyster_card">Oyster smartcard</a> ticketing system, but I spent the bulk of my time working on a project that came to be titled <i>Oyster-Based Performance Metrics for the London Overground</i>.  I've posted my <a href="http://frumin.net/img/oyster-metrics/20081028%20Oyster-Based%20Performance%20Metrics.pdf">final report</a> and <a href="http://frumin.net/img/oyster-metrics/Oyster-Based%20Performance%20Metrics%20Slides.pdf">slides</a> and <a href="http://frumin.net/img/oyster-metrics/Oyster-Based%20Performance%20Metrics%20Outline.pdf">outline</a> for the presentation I gave to TfL executive management.</p>

<p>Rather than try to explain the work, I've just cut and pasted the executive summary from the report and included some of my favorite figures (with no explanation).  It's not a terrible paraphrasing, but if there is a lot of really good meat in the document if you are bored and hungry.  Snooze on...</p>

<p><hr /></p>

<p>The London Overground is a pre-existing rail service in London whose operating responsibility and revenue risk were recently granted to Transport for London (TfL).  Here we discuss the prospect of using data from the Oyster smartcard ticketing system to evaluate the performance of the London Overground explicitly from a passenger’s perspective.</p>

<p><a href="http://frumin.net/img/oyster-metrics/explore.weekday.pdf"><img src="http://frumin.net/img/oyster-metrics/explore.weekday.small.png" alt="" /></a></p>


<p>The core idea behind our approach is to directly measure end-to-end individual journey times by taking the difference between entry and exit transactions stored by the Oyster system.  The focus of this study is Excess Journey Time (EJT), calculated on a trip-by-trip basis as the difference between the observed journey time and some standard.  In this case, the standard is determined for each trip with reference to published timetables, indicating how long the trip should have taken under right-time operations.  A positive <span class="caps">EJT </span>indicates that the journey took longer than was expected.</p>

<p><a href="http://frumin.net/img/oyster-metrics/timetable.mini.pdf"><img src="http://frumin.net/img/oyster-metrics/timetable.mini.png" alt="" /></a></p>

<p>Excess Journey Time is interpreted as the delay experienced by passengers as a result of services not running precisely to schedule.  The distribution of <span class="caps">EJT </span>indicates reliability.  We validate these interpretations using a detailed graphical analysis, and then aggregate them to the line and network level over a variety of time periods.  Our analysis is conducted on large samples of Oyster data covering several months and millions of Overground trips in 2007.</p>

<p><a href="http://frumin.net/img/oyster-metrics/20080403.ampeak.pdf"><img src="http://frumin.net/img/oyster-metrics/validation.png" alt="" /></a></p>

<p>At the aggregate level, relative values of Excess Journey Time are largely in line with expectations.  The North London Line has the highest average Excess Journey Time of all lines on the London Overground, around 3 minutes, and the widest distributions (i.e. least passenger reliability).  On all lines, there is significant day-to-day variability of Excess Journey Time.  For the whole London Overground, and for the North London Line in particular, Excess Journey Time is worst in the AM and PM Peak timebands.</p>

<p><img src="http://frumin.net/img/oyster-metrics/ejt.time.summary.png" alt="" /></p>

<p><a href="http://frumin.net/img/oyster-metrics/ejt.line.tb.dist.pdf"><img src="http://frumin.net/img/oyster-metrics/ejt.dist.tb.png" alt="" /></a></p>

<p>The current performance regime for the London Overground is the <a href="http://www.networkrail.co.uk/aspx/742.aspx">Public Performance Measure</a> (PPM), which measures the fraction of scheduled vehicle trips arriving at their destinations fewer than five minutes late.  Over time, <span class="caps">EJT </span>shows a strong correlation to <span class="caps">PPM. </span> There is clear additional variation in <span class="caps">EJT, </span>indicating that it captures certain information about passenger experiences that <span class="caps">PPM </span>does not.  This variation tends to increase as <span class="caps">PPM </span>decreases, particularly in the AM and PM peak timebands, which suggests that the effectiveness of <span class="caps">PPM </span>as a measure of the passenger experience decreases as service deteriorates.</p>

<p><img src="http://frumin.net/img/oyster-metrics/ejt.vs.ppm.ampeak.png" alt="" /></p>

<p>Another quantity of interest derivable from Oyster data is the time between passenger arrival at the station and the scheduled departure of the following train.  The spread of this distribution of this quantity indicates the degree to which passengers arrive randomly (i.e. "turn up and go") rather than time their arrivals according to schedules.  We have found that on the North London Line, especially during the <span class="caps">AM, </span>interpeak, and PM peak periods, passengers tend to arrive randomly.  This is apparently in contrast to conventional wisdom for National Rail services, and has distinct implications for crowding levels and timetabling practice.  In an appendix to this report we look at this in detail, and recommend that even headways be prioritized in timetabling the North London Line.</p>

<p><a href="http://frumin.net/img/oyster-metrics/wait.all.pdf"><img src="http://frumin.net/img/oyster-metrics/wait.all.png" alt="" /></a></p>

<p>The Overground is, by design, part of a larger integrated multimodal network.  Oyster data, by nature, is somewhat ambiguous in representing passenger trips on such a network that involve transfers or multiple routing options.  This poses certain problems to our methodology, but also presents the opportunity to quantify and understand the experience of passengers across the entire network.  We discuss these problems, potential solutions, and opportunities at length, as well as other applications for this methodology, and future research directions.</p>

<p><img src="http://frumin.net/img/oyster-metrics/hkc2oxc.png" alt="" /></p>


<p>We have concluded that Oyster-based metrics are effective for monitoring and identifying problems as experienced by passengers on the London Overground.  They may be even more effective for use across the whole of London's public transport network, particularly as Oyster is in the process of being rolled out to all National Rail services in the Greater London Area.</p>

<p><img src="http://frumin.net/img/oyster-metrics/oneoystersmall.png" alt="" /></p>]]>
        
	</description>

<link>http://frumin.net/ation/2008/11/what_i_did_last_summer.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">data</category>
                  <category domain="http://www.sixapart.com/ns/types#category">london</category>
                  <category domain="http://www.sixapart.com/ns/types#category">networks</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transit</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transport</category>
        
        
         <pubDate>Thu, 06 Nov 2008 19:51:32 -0500</pubDate>
      </item>
            
      <item>
         <title>It&apos;s the distribution, stupid</title>
         <description><![CDATA[<p>Never thought I'd see this in print, but the <span class="caps">MTA </span>let NY Times <a href="http://www.nytimes.com/2008/07/16/nyregion/16metrocard.html?_r=1&amp;ref=nyregion&amp;oref=slogin">publish a distribution</a> of Metrocard usage for monthly passes (see below).</p>

<p>While the caption of image points out that "some riders use the $81 passes for 40 or fewer rides," it fails to point out that anyone making 46* or fewer trips is losing money on their pass.  The calculus of "losing" or "making" money on a monthly pass is of course fraught with nuance (e.g. how much is it worth to me to not have to think about paying on each trip? are any of these passes subsidized?) but the article doesn't touch on it at all.</p>

<p>It's no secret that I love <span class="caps">NYC</span> Transit and transit in general, but that doesn't mean people should be buying passes when it's far from beneficial.  Don't even ask about the London case...</p>

<p><a href="http://www.nytimes.com/imagepages/2008/07/16/nyregion/16metrocardbell.ready.html"><img src="http://frumin.net/ation/img/metrocardlarge.jpg" alt="" /></a></p>

<p> * 46 trips is the breakeven point when the monthly pass cost $81 and individual trips cost $1.74 (after the bonus)</p>]]>
        
	</description>

<link>http://frumin.net/ation/2008/07/its_the_distribution_stupid.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">nyc</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transit</category>
        
        
         <pubDate>Wed, 16 Jul 2008 10:44:11 -0500</pubDate>
      </item>
            
      <item>
         <title>Climb the Charts, Schmimb the Charts</title>
         <description><![CDATA[<p><a href="http://alumni.media.mit.edu/~peretti/">Someone</a> I know asked me to post this little ditty from a past <strike>life</strike> career of mine.  Judging from the time scale on the graph, I must have made this diagram 200 weeks after November 21, 1998 -- around the fall of 2002 I guess.  In fact, if my memory serves me, the whole thing was really <a href="http://www.steinberg.org/">Steve's</a> idea.</p>

<p>What the chart below shows to me is that the notion of "climbing the charts" is basically defunct.  Albums hit their peak Billboard positions immediately or very shortly after their release dates, and then fade out like like the ego and stature of your high school football team's quarterback.</p>

<p><a href="http://frumin.net/img/billboard-climbers.png"><img src="http://frumin.net/img/billboard-climbers-small.png" alt="" /></a>
<small><a href="http://frumin.net/img/billboard-climbers.png">(click for a full size image)</a></small></p>

<p>There are a number of ways I have thought that this particular graphic could be improved -- make it interactive, somehow link albums by the same artist, etc -- but, really, who cares?!?</p>]]>
        
	</description>

<link>http://frumin.net/ation/2008/05/climb_the_charts_schmimb_the_charts.html</link>
<author>fruminator</author>


        
        
         <pubDate>Tue, 20 May 2008 09:50:34 -0500</pubDate>
      </item>
            
      <item>
         <title>I Know A Guy</title>
         <description><![CDATA[<p>Q: Mike, how was it that you got to visit the work site of the <a href="http://mta.info/mta/news/releases/?en=071109-HQ73">East Side Access</a> project, hundreds of feet under Manhattan, and check out a real <a href="http://en.wikipedia.org/wiki/Tunnel_boring_machine">Tunnel Boring Machine</a>?<br />
A: I Know a Guy</p>

<p>I definitely never thought I'd actually get to say that.  Fortunately, the guy I know told me to bring a camera.  The battery was dying so I didn't get to snap that many pics, but what I got follows.  I think these pictures capture, to a degree, how messy the prospect of assembling a <span class="caps">TBM </span>way under ground really is.  </p>

<p>The overriding feeling I had throughout was of being inside, around, and on top of a <a href="http://en.wikipedia.org/wiki/Sandworm_%28Dune%29">Sandworm</a> in the novel Dune.  What really impressed me was the number of people necessary just to put one of these things together, and the enthusiasm of all the people working on the project (sweating it out under 200 feet of bedrock).</p>



<p>The entrance to the work site, in Sunnyside, Queens<br />
<a href="http://frumin.net/img/esa-tbm/PICT9716.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9716.JPG" alt="" /></a></p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9717.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9717.JPG" alt="" /></a></p>

<p><BR><br />
The 30+ years old but never used <span class="caps">LIRR </span>tunnel under the East River</p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9725.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9725.JPG" alt="" /></a></p>

<p><BR><br />
The beast itself:</p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9718.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9718.JPG" alt="" /></a></p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9719.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9719.JPG" alt="" /></a></p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9720.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9720.JPG" alt="" /></a></p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9721.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9721.JPG" alt="" /></a></p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9722.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9722.JPG" alt="" /></a></p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9723.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9723.JPG" alt="" /></a></p>

<p><a href="http://frumin.net/img/esa-tbm/PICT9724.JPG"><img src="http://frumin.net/img/esa-tbm/thumbs/PICT9724.JPG" alt="" /></a></p>

<p>So, point being, East Side Access is really happening!  This visit was in late August, just before the machine was brought on line.  Perhaps I'll get to visit again to see it in action.</p>]]>
        
	</description>

<link>http://frumin.net/ation/2007/12/i_know_a_guy.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">pics</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transit</category>
                  <category domain="http://www.sixapart.com/ns/types#category">tunnels</category>
        
        
         <pubDate>Wed, 05 Dec 2007 12:59:50 -0500</pubDate>
      </item>
            
      <item>
         <title>Congestion Pricing is a Technology, Remember?</title>
         <description><![CDATA[<p>In many ways London's system for Congestion Pricing should be model for New York, but in other ways it really isn't.  The most obvious way that it isn't is in the actual technology proposed to do the job.  Yes there are cameras and computers involved, that's sort of where the similarity ends.</p>

<p>Specifically, in the UK tradition, all of the cameras relay a full video feed to some central processing location.  Not only is this absurdly costly (think fibre!!) but it allows for plenty of privacy invasion by anyone who has access to the cameras' feeds.  The proposition for New York is very different.  The proposition is much cheaper and seems to all but eliminate the possibility of using the cameras for anything but looking at license plates.  That's because the cameras would be equipped with enough smarts to know when to snap a photo, and only that still image would be sent to be processed.  If you don't believe me, read this excerpt from <a href="http://www.nycedc.com/NR/rdonlyres/E8EB50D6-8EE9-42BB-AF14-80734E2C8F78/0/IBMCorporation.pdf"><span class="caps">IBM'</span>s recently released proposal</a>:</p>

<blockquote>


<p>A worst case analysis shows that for a very busy lane, with one thousand vehicles passing the detection equipment every hour and forced to send two 100kB images for each vehicle, the bandwidth requirement is a mere 57kB/s. This is within the capacity of wireless networks today, but is not the optimal solution approach.</p>

<p>A more realistic case, in which 50% of vehicles are equipped with an E-ZPass tag, 90% of the remaining license plates are read with a sufficient confidence at roadside and 80% of charges are paid in a timely manner, leads to a bandwidth requirement of 8kB/s. A very busy, six-lane detection point would thus be well within the capacity of <span class="caps">NYCW</span>iN, even without local reinforcement of the wireless network.</p>

<p>We estimate that, with our proposed solution approach to vehicle detection at the edge of the network and given the estimated amount of traffic in the city, the average local bandwidth requirement across the system will be on the order of less than 1kB/s per lane, and the overall load on the backbone of the wireless network will be small.</p>

</blockquote>

<p>More generally speaking, I think it suffices to say that Congestion Pricing uses technology, and as we know technology only gets better and cheaper over time, so we can be sure that <span class="caps">NYC'</span>s Congestion Pricing technology will be much better and cheaper than London's.</p>

<p>Now, if only somebody would only explain this to all the privacy freaks and civil libertarians that are making this process so painful...</p>]]>
        
	</description>

<link>http://frumin.net/ation/2007/12/congestion_pricing_is_a_technology.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">cc</category>
                  <category domain="http://www.sixapart.com/ns/types#category">london</category>
                  <category domain="http://www.sixapart.com/ns/types#category">nyc</category>
        
        
         <pubDate>Mon, 03 Dec 2007 10:40:18 -0500</pubDate>
      </item>
            
      <item>
         <title>Mailer for Mayor (In Memorium)</title>
         <description><![CDATA[<p>In 1969 <a href="http://en.wikipedia.org/wiki/Norman_Mailer">Norman Mailer</a> ran for Mayor.  In 2002 my grandfather (probably the most Mailer-like person I know) gave me an original copy of the campaign poster that he had squirreled away for 30+ years.  A week or so ago, Mr. Mailer passed away, so it seems like the appropriate time to put this poster on the web, since I have never been able to find a copy online before.  I'm about as far from a knowledgeable design critic as you can get, but this thing is an undeniable work of art, especially in the eye of any native New Yorker.  </p>


<p><a href="http://frumin.net/img/mailer_for_mayor/mailer_for_mayor.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/mailer_for_mayor.png" alt="" /></a></p>


<p><BR><br />
What a platform:</p>

<p><a href="http://frumin.net/img/mailer_for_mayor/title.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/title.png" alt="" /></a></p>


<p><BR><br />
The boroughs, in order of time I've spent in them:</p>

<p><a href="http://frumin.net/img/mailer_for_mayor/brooklyn.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/brooklyn.png" alt="" /></a></p>

<p><a href="http://frumin.net/img/mailer_for_mayor/manhattan.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/manhattan.png" alt="" /></a></p>

<p><a href="http://frumin.net/img/mailer_for_mayor/queens.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/queens.png" alt="" /></a></p>

<p><a href="http://frumin.net/img/mailer_for_mayor/bronx.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/bronx.png" alt="" /></a></p>

<p><a href="http://frumin.net/img/mailer_for_mayor/staten_island.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/staten_island.png" alt="" /></a></p>


<p><BR><br />
Some lovely embellishments on the Hudson River:</p>

<p><a href="http://frumin.net/img/mailer_for_mayor/hudson.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/hudson.png" alt="" /></a></p>


<p><BR><br />
And my favorite little twist:</p>

<p><a href="http://frumin.net/img/mailer_for_mayor/fed_money.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/fed_money.png" alt="" /></a></p>


<p><BR><br />
Not a bad running mate:</p>

<p><a href="http://frumin.net/img/mailer_for_mayor/banner.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/banner.png" alt="" /></a></p>


<p><BR><br />
But not a good day either (they came in 4th):</p>

<p><a href="http://frumin.net/img/mailer_for_mayor/primary.png"><img src="http://frumin.net/img/mailer_for_mayor/thumbs/primary.png" alt="" /></a></p>

<p><BR><br />
For more info on the campaign itself, check out a <a href="http://cityroom.blogs.nytimes.com/2007/11/14/podcast-remembering-mailer-for-mayor/">recent <span class="caps">NYT</span>imes podcast</a> and an <a href="http://www.wnyc.org/shows/bl/episodes/2007/11/13/segments/88764">interview on <span class="caps">WNYC</span></a> with <a href="http://en.wikipedia.org/wiki/Jimmy_Breslin">Jimmy Breslin</a>, Mailer's running mate and another icon of New York realness.</p>]]>
        
	</description>

<link>http://frumin.net/ation/2007/11/mailer_for_mayor_in_memorium.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">nyc</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transport</category>
        
        
         <pubDate>Tue, 20 Nov 2007 13:04:15 -0500</pubDate>
      </item>
            
      <item>
         <title>Cars vs Transit is like Packets vs ... Packets</title>
         <description><![CDATA[<p>A genius I know once <a href="http://www.wired.com/wired/archive/4.10/atm.html">wrote an article</a> that some say brought the distinction between <a href="http://en.wikipedia.org/wiki/Packet_switching">packet-switched</a> and <a href="http://en.wikipedia.org/wiki/Circuit_switching">circuit-switched</a> networks into the popular consciousness.  In the decade or so since, we have seen packet-switched networks <a href="http://en.wikipedia.org/wiki/Internet">take over the world</a>, and unfortunately some people find themselves tempted to abuse this bit of history in arguing related points.  The gist of it will always be something to the effect of: "the thing I support is like Packets, the other thing is like Circuits, and since we all know that Packets beat Circuits, I must be right."  (This is not unlike how many in my extended family will take anything they think is sufficiently bad and compare it to Hitler.)</p>

<p>For example, a <a href="http://www.gppf.org/article.asp?RT=&amp;p=pub%2FTransportation%2Ftranspackets070803.htm">recent piece</a> (of what I don't know) by Stephen Fleming of the Georgia Public Policy Foundation, entitled <i>In Transportation and in Technology, Packets Beat Circuits,</i> starts off "Why are so many mass transit policies doomed to failure?  Because packets beat circuits. Let's explore an analogy."  </p>

<p>You can imagine where it goes from there ("cars are like packets, mass transit is like circuits, so cars are better").  The guy claims to have worked in digital communications for 10 years; I wonder if he's just bitter because he was on the wrong side of the packets vs circuits debate.</p>

<p>For the sake of all 6 people likely to read this, I hereby debunk this terrible analogy:</p>

<p>The fundamental aspect of a circuit-switched network, as stated in the first sentence of the <a href="http://en.wikipedia.org/wiki/Circuit_switching">Wikipedia article on Circuit Switching</a> is that it "establishes a dedicated circuit (or channel) between nodes and terminals."  That is, the bandwidth for the flow is reserved end-to-end for the life of the circuit.  Traditionally, when I make a phone call, part of the 'space' on a bunch of copper wires connecting where I'm calling from to where I'm calling to is reserved even if no one is saying anything over the line.</p>

<p>Clearly a road network is not circuit-switched -- when you start out from your house you don't have a dedicated lane all the way to your destination (if you did, I might just own a car).  In a circuit-switched transit network, not only would I have a seat on one R train from Union Street to Union Square, I would have a seat on every R train over the same route for the duration of my trip.  Realizing this, the analogy breaks down completely.</p>

<p>Fleming's main argument as to why Transit is like Circuits is that the bandwidth hierarchy, in traveling by train, then bus, then feet, is like the digital transmission hierarchy of telephone (i.e. circuit-switched) networks.  Perhaps he lives and works directly on top of an interstate and has never driven by highway, then arterial, then local street in his car.  Or never noticed that the bandwidth on his home broadband connection is orders of magnitude smaller than the trans-Atlantic fiber lines that connected me in London to his web server in Georgia.</p>

<p>In a circuit-switched network, I only use as much bandwidth as I need at that moment, and only on the single link I'm currently traversing.  When I get to the end of that link, I am put in a queue until the next link on my path is ready to receive me.  It's true that it's a bit more obvious to see a road/auto network as analogous to a packet-switched network, but only because of the apparent simplicity of the rules of the system.  Transit networks are of the same nature, it's just that the way packets (i.e. people!) are queued and switched where links connect is more complicated and constrained than on roads.  </p>

<p>Speaking in data-network terms that we are all familiar with, transit mops up auto when it comes to bandwidth (total bits, or people, per unit time).  The problem with transit is, in some circumstances, higher end-to-end latency (the time it takes for the first bit, or person, to get where they're going).  But once you get the flow started, we all know that one track of even light rail service can carry the same number of passengers per hour (or was it bits per second) as 7 lanes of freeway or 17 lanes of street (<a href="http://frumin.net/ation/2006/12/15k_people_per_hour_by_transpo.html">see here</a>).</p>

<p>Unfortunately, people actually read and believe this kind of proof-by-bad-analogy thinking.  In a <a href="http://www.reason.org/surfacetransportation46.shtml#feature5">recent newsletter</a> from the Reason Foundation, Robert Poole, Reason's Director of Transportation Studies, claims to have had his "Aha!" moment when reading Fleming's piece.  Too bad for him the "Aha!" wasn't a realization to be much more careful with his analogies.</p>]]>
        
	</description>

<link>http://frumin.net/ation/2007/08/cars_vs_transit_is_like_packet.html</link>
<author>fruminator</author>


                  <category domain="http://www.sixapart.com/ns/types#category">networks</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transit</category>
                  <category domain="http://www.sixapart.com/ns/types#category">transport</category>
        
        
         <pubDate>Mon, 20 Aug 2007 16:23:13 -0500</pubDate>
      </item>
      
   </channel>
</rss>
