Category: Transportation

What people will say when Ventra comes out

Ventra is not a replacement for the Chicago Card and Chicago Card Plus. It’s a single card that replaces the following fare media*:

  • Transit Card (pay per ride)
  • 1-day pass
  • 3-day pass
  • 7-day pass
  • 30-day pass
  • 30-day reduced fare pass for seniors 65+ and customers with disabilities
  • U-Pass
  • Chicago Card (pay per ride, linked to personal credit/debit card)
  • Chicago Card Plus (pay per ride or 30-day pass, linked to personal credit/debit card)
  • Military Service Pass
  • There might be another pass type I’m forgetting

When people see how simple this really is, and how not inconvenient Ventra makes it for them and for CTA to administer, they will be shocked. You’ll hear things like:

“I can use my credit or debit card now to pay for passes at every vending machine?”

Previously, only certain stations had the correct vending machine. O’Hare airport is notorious for having three vending machines, none of which do the same thing but that do have overlapping functions.

“I can buy a 1-day or multi-pass at all 145 train stations, and not just at Walgreens or CVS, who tend to sell out? And with a credit or debit card?”

Yep. Isn’t that convenient?

“So you’re saying that when school is out and my U-Pass doesn’t get me unlimited free rides until the next semester, I can just hit up one of these 2,000+ retail locations and throw $20 – cash or credit, no difference – on there, or add a 3-day pass because I’m running around for internship interviews?”

Yes, that’s what I’m saying.

“Boarding this bus is way faster now that everyone has a contactless card. And this only took $5 at the vending machine, a 2 minute phone call after which I got that $5 back?”

You can even register online with your smartphone.

* Paper 1-day passes will be available. A single-ride paper ticket will be available.

SFO airport showed me some cool planes

I flew on Virgin American to Portland, Oregon, last year and had to stop in San Francisco on my return journey to Chicago. The layover was over 2 hours long, and I spent that time relaxed in the new Terminal 2. The terminal has great window coverage of the airfield.

I saw for the first time an Airbus A380, the largest of the so-called jumbo jets (is that phrase even used anymore?). It was flown by Lufthansa (see photo).a

I also saw a lot of Boeing 747s from different airlines, including United, OneWorld, Star Alliance, British Airways, and Cathay Pacific. I may have seen a Chinese airline.

I also saw President Barack Obama land in Air Force One. I recognized the plane from far away, as it was coming in for landing, but I wasn’t completely sure until it touched down. My camera was probably hanging around my neck; I was too dumbstruck to do anything about it. After it landed and I was positive that Boeing 747 was flown by the United States Government, I walked around the terminal until I could see it.

The plane had been parked far away from a terminal, near a hanger and two C-17 military cargo planes.

American airports should have viewing platforms. Not just plane spotters like to photograph them. Amsterdam Schiphol (AMS) airport has a viewing platform and there was over 50 people up there, including lots of families.

Talking about a pedestrian street for Peoria Street on Vocalo

Click on the rendering to enlarge and learn about the main features. 

Ryan Lakes and I took our Peoria Street pedestrian street proposal to the masses by speaking to Molly Adams and Brian Babylon on Tuesday morning’s Morning AMp show on Vocalo, FM89.5

Listen (or download) to the 15 minute interview on SoundCloud

What is the Peoria Street pedestrian street?

We propose creating a gateway connection between the University of Illinois at Chicago’s east campus and the West Loop neighborhood over the Peoria Street bridge by nearly eliminating car traffic, completely eliminating parking, removing curbs, and adding amenities to make this a place to go to instead of through.

The Peoria Street bridge over I-290/Eisenhower expressway, between Van Buren and Harrison Streets, was closed to car traffic in 1965 when a new entrance for the CTA station opened. This entrance of the UIC-Halsted Blue Line station is by far the most used access point to the busy station, as it’s the closest to campus buildings. In fact, according to a CTA letter to IDOT, “weekday passenger volumes at this station entrance exceed 11 of the other 12 total station passenger volumes at the other stops on the Forest Park Blue Line branch”.

The UIC Campus Master Plan of 2010 calls for creating a gateway at this place, and the Illinois Department of Transportation is proposing to rebuild this bridge as part of its Circle Interchange project. The bridge should rebuilt to accommodate a pedestrian street. However, rebuilding isn’t necessary and our proposal can be implemented in situ.

Ryan Lakes with Vocalo producer and cohost Molly Adams at the Vocalo studio in the WBEZ studio. 

Updated March 20 to bring the chronology of events up-to-date. 

How many miles of roads are in your ward?

Screenshot 1: Showing how some streets are not being counted. There should be a yellow section of road between the two existing yellow road sections. 

A friend recently asked me how many blocks of road are in his ward. He wanted to know so that he could measure how many blocks of streets would have an older style of street lighting after X number of blocks receive the new style of street lighting. For this project, I used two datasets from Chicago’s open data portal: street center lines and wards. The output data is not very accurate as there may be some overlap and some uncounted street segments; this is likely due to a shortcoming in my process. I will show you how to find the number of blocks per ward using QGIS (download Quantum GIS, a free program for all OSes).

Here’s how I did it

  1. Load in the two datasets. Wards and street center lines (zipped shapefiles). They are projected in EPSG:3435.
  2. Exclude several road classifications in the street center lines by querying only for "CLASS" > '1' AND "CLASS" < '5'. The data dictionary for the road classifications is at the end. We don’t want the river, sidewalks, expressways, and any ramps to be included in the blocks per ward analysis.
  3. Intersect. In QGIS, select Vector>Geoprocessing Tools>Intersect. The input vector layer is “Transportation” (the name of the street center lines dataset) and the intersect layer is “Wards”. Save the resulting shapefile as “streets intersect wards”. Click OK. This will take a while.
  4. Add the “streets intersect wards” shapefile to the table of contents.
  5. You’ll notice some of the issues with the resulting shapefile: missing street segments (see screenshot 1). What should QGIS do if a street is a ward boundary?
  6. Obtain street length information, part 1. Remove all the columns in the “streets intersect wards” shapefile that have something to do with geometry. These are now outdated and will confuse you when you add a geometry column generated by QGIS.
  7. Obtain street length information, part 2. With the “streets intersect wards” shapefile selected in the table of contents, select Vector>Geometry Tools>Export/Add geometry columns. Select “streets intersect wards” shapefile as your input layer, leave CRS as “Layer CRS” and save as new shapefile “streets intersect wards geom”.
  8. Add the “streets intersect wards geom” shapefile to the table of contents.
  9. You will see a new column at the end of the attribute table called LENGTH. Since the data is projected in EPSG:3435 (Illinois StatePlane NAD83 East Feet), the unit is feet.
  10. Simply export “streets intersect wards geom” to a CSV file and open the CSV file in a spreadsheet application. From there you can group the data by Ward number and add the street lengths together. (I thought it would be faster to do this in a database so I imported it into a localhost MySQL database and ran a simple query, SELECT wardNum, sum(`chistreets_classes234`.`LENGTH`) as sum FROM chistreets_classes234 WHERE ward > 0 group by wardNum. I then exported this to a spreadsheet to convert feet to miles.)

Because of the errors described in step 5, you shouldn’t use this analysis for any application where accuracy is important. There are road lengths missing in the output dataset (table with street lengths summed by ward) and I cannot tell if the inaccuracy is equally distributed.

[table id=7 /]

Wards 19 (south side) and 41 (Norwood Park, including O’Hare airport) have the highest portion of street length in the city.

Screenshot 2: Ward 41 is seen. 

Street data dictionary

Column is “CLASS”. The value is a string. This dataset lacks alleys. Adapted from the City’s data dictionary.

1. Expressway

2. Arterials (1 mile grid, no diagonals)

3. Collectors (includes diagonals)

4. Other streets (side streets, neighborhood streets)

5. Named alleys (mostly downtown, like Couch Place and Garland Place)

7. Tiered (lower level streets, including LaSalle, Michigan, Columbus, and Wacker)

9. Ramps (goes along with expressway)

E. Extent (not sure how to describe these; includes riverwalk and lake walk segments, and Navy Pier, also includes some streets, like Mies van der Rohe Way)

RIV. River

S. Sidewalk

99. Unclassified

Metra finally updates its marketing strategy

Photo of a new billboard by John Greenfield. 

My Streetsblog Chicago partner John Greenfield writes about Metra’s new push to get more riders: free tickets.

The transit agency will be giving away two free tickets to any destination in the system to 500 people per week for fourteen weeks – a total of 14,000 tickets, good for the next 90 days. The recipients, who must be 18 or over, will be randomly chosen from those who register at MetraRail.com/TestDrive.

While there doesn’t seem to be any method for preventing current Metra riders from scoring free tickets, the hope is that the lion’s share of the winners will be newbies. To promote the giveaway to people who currently commute by car, the agency is spending roughly $390,000 on marketing, including billboards visible from expressways and radio spots in English and Spanish following traffic reports and gas price updates, as well as Internet advertising. The billboards emphasize the financial, time-saving and relaxation benefits of making the switch.

It’s about time that Metra got serious with its marketing and used messages that actually sell the service. Focusing on the kind of marketing that actually convinces customers – of any product or service – is the right move. That focus? Our product costs less than the alternative.

Metra’s current marketing consists of boring-looking billboards on its tracks as they cross expressways with things like, “Fly to work”, “We’re on time, are you?”, and “Easy come, easy go” (what does that even mean?).

There was no call to action, and no information for drivers to respond to immediately (or when their call is stuck in bumper to bumper traffic).

An example billboard over the Kennedy Expressway, south of Grand Avenue. This sign says “Easy come, easy go”.