Tag: Chicago Bike Guide

Customer reviews for my bike map app

Only reviews left for the current version are displayed on the iTunes Preview page, and the default view of the iTunes Store. 

I’m appreciative of the two reviews people have left for my app – it’s a bike map for Chicago stored in your phone, download in iTunes. Their positivity and the slight increase in sales this past week has increased the ranking of my app. I don’t know what the ranking means.

When my app first ranked, in its Reference category, it was 385, then 289, and now stands at 315. I’m not sure on what factors the ranking is based, but I’ve gathered some clues from other bloggers:

[In addition to the number of downloads, other] factors play into the ranking equation such as how long the app is opened as the active app and how often the app is opened.

There’s no mention of reviews on that page, but I found another article that mentions more ways to improve your app, which includes having positive reviews. (Another factor it mentions is frequently updating the app.)

I’d like to hear from my app’s users what their feedback is before they leave a review in the iTunes Store. I can address issues directly with users and discuss how they can (or cannot) be incorporated in a future update to the app. You can send your feedback to me, and your love to the app store. (A major downside of the customer reviews process in the iTunes Store is the inability for the developer to respond.)

My app’s received two reviews (both 5 stars!) so far:

Saw this app being discussed on Twitter and thought I’d check it out. So, on the hottest day of 2012, I jumped on my bike and rode around my area checking out the apps features. Color me impressed! I rode to a few areas that I was not over familiar with and activated the app to peruse my options via my bike (or CTA). I look forward to using this on my far south/far north bikiing adventures soon!

The first reviews about the first version:

Would be great if it could locate on the map with GPS. Also if it could zoom out more. These bike lanes have come a long way recently. There are some really nice new places to ride like the cycle track on Kinzie. But there are also some old routes out there that are great biking such as the Boulevard System (Humboldt, Logan, Palmer Sq) that you could show on your map. And it says it supports German, but it is in English 🙂

The part about my app being available in German was true for v0.1, but I’ve fixed that for v0.2. If you’re going to leave a review, I’d like to leave you with this advice, for I feel it makes for a constructive review:

  1. Describe what is good about the app, and what you like about the app.
  2. Describe how you’ve used the app.
  3. Suggest ways the app could improve.

This was what the first version looked like. It wasn’t very good. 

How to split a bike lane in two and copy features with QGIS

A screenshot of the splash image seen on users with iPad retina displays in landscape mode. 

To make the Chicago Offline Bike Map, I need bikeways data. I got this from the City of Chicago’s data portal, in GIS shapefile format. It has a good attribute table listing the name of the street the bikeway is on and the bikeway’s class (see below). After several bike lanes had been installed, I asked the City’s data portal operators for an updated shapefile. I got it a month later and found that it wasn’t up-to-date. I probably could have received a shapefile with the current bikeway installations marked, but I didn’t have time to wait: every day delayed was one more day I couldn’t promote my app; I make 70 cents per sale.

Since the bikeway lines were already there, I could simply reclassify the sections that had been changed to an upgraded form of bikeway (for example, Wabash Avenue went from a door zone-style bike lane to a buffered bike lane in 2011). I tried to do this but ran into trouble when the line segment was longer than the bikeway segment that needed to be reclassified (for example, Elston Avenue has varying classifications from Milwaukee Avenue to North Avenue that didn’t match the line segments for that street). I had to divide the bikeway into shorter segments and reclassify them individually.

Enter the Split Features tool. QGIS is short on documentation and I had trouble using this feature. I eventually found the trick after a search that took more time than I expected. Here’s how to cut a line:

  1. Select the line using one of the selection tools. I prefer the default one, Select Features, where you have to click on the feature one-by-one. (It’s not required that you select the line, but doing so will ensure you only cut the selected line. If you don’t select the line, you can cut many lines in one go.)
  2. Toggle editing on the layer that contains the line you want to cut.
  3. Click Edit>Split Features to activate that tool, or find its icon in one the toolbars (which may or may not be shown).
  4. Click once near where you want to split the line.
  5. Move the cursor across the line you want to split, in the desired split location.
  6. When the red line indicating your split is where you desire, press the right-click mouse button.

Your line segment has now been split. A new entry has been added to the attribute table. There are now two entries with duplicate attributes representing that together make up the original line segment, before you split it.

This screenshot shows a red line across a road. The red line indicates where the road will be split. Press the right-click mouse button to tell QGIS to “split now”.

After splitting, open the attribute table to see that you now have two features with identical attributes. 

Copying features in QGIS

A second issue I had when creating new bikeways data was when a bikeway didn’t exist and I couldn’t reclassify it. This was the case on Franklin Boulevard: no bikeway had ever been installed there. I solved this problem by copying the relevant street segments from the Transportation (roads) shapefile and pasted them into the bikeways shapefile. New entries were created in the attribute table but with blank attributes. It was simple to fill in the street name, class, and extents.

Chicago bikeways GIS description

Bikeway classes (TYPE in the dataset) in the City of Chicago data portal are:

  1. Existing bike lane
  2. Existing marked shared lane
  3. Proposed on-street bikeway
  4. Recommended bike route
  5. Existing trail
  6. Proposed off-street trail
  7. Access path (to existing trail)
  8. Existing cycle track (also known as protected bike lane)
  9. Existing buffered bike lane

It remains to be seen if the City will identify the “enhanced marked shared lane” on Wells Street between Wacker Drive and Van Buren street differently than “existing marked shared lane” in the data.