Community Data Science Course (Spring 2023)/Week 4 coding challenges: Difference between revisions

From CommunityData
Line 27: Line 27:
# Use the geocoding API endpoint in Nominatim to look up a specific latitude and longitude of your choice (try this building!).
# Use the geocoding API endpoint in Nominatim to look up a specific latitude and longitude of your choice (try this building!).
# Write a program to find all the ziplines in King County, Washington (or at least all the ones that OSM knows about!).
# Write a program to find all the ziplines in King County, Washington (or at least all the ones that OSM knows about!).
## It's important to be alert when ziplining! Once you've found a nearby zipline, have you program use that result to find the nearest cafe each of the ziplines you identify!
## It's important to be alert and well-caffeinated when ziplining! Once you've found a nearby zipline, have your program use that result to find the nearest cafe each of the ziplines you identify!
# Craft a query using the search API to find colleges in Seattle. (Hint: you'll want to set bounded=1 and use viewbox). Print the name and location of every college you find.
# Craft a query using the search API to find colleges in Seattle. (Hint: you'll want to set bounded=1 and use viewbox). Print the name and location of every college you find.
## Modify your query so that you include the address details separated out (this is an API option)
## Modify your query so that you include the address details separated out (this is an API option)
## How can you tell that a place returned by the API is in fact a college?
## How can you tell that a place returned by the API is in fact a college?
## Print the list of colleges into a new TSV file with the following columns: <code>osm_id</code> (a unique ID that OSM uses), the name of the college, latitude, and longitude.
## Print the list of colleges into a new TSV file with the following columns: <code>osm_id</code> (a unique ID that OSM uses), the name of the college, latitude, and longitude.

Revision as of 02:12, 18 April 2023

There's actually nothing to download this time. After class, we'll update with a link to a notebook that is a cleaned up version of what we walked through during the lecture though since this code will likely be very useful.

#1 Bored API

First, let's work through a few examples from the Bored API:

  1. Write some Python code to use the API to get a free activity that I could do with my partner. Turn the data from the API into a sentence that tells me the activity, its accessibility, and its price.
    1. Extend that code so that it gets me 5 activities, with a sentence for each one.
  2. First, get a totally random activity from the API. Print it out, along with its activity type. Now get me another activity that's of the same type as the first random activity. Print it out too, plus its activity type (to check that they're the same).
  3. Write a Python program that prints out one random activity of each type that the Bored API supports. (See if you can use a loop for this!)

#2 Learning a new API

In this exercise, I want to you to practice learning to use a new API and practice reading some API documentation. We're going to start with the Dog API which is online at: https://dogapi.dog

  1. Visit the Dog API website and read the API documentation
  2. Write a URL that will return a dog fact
  3. Write a single URL that will return 5 dog facts
  4. Take your code to request a single dog fact and put into a Python program that uses requests.get() and passes in parameters with the params= argument.
  5. Finally, write a for loop that gets 5 sets of facts 5 times (you can just try something like for number in [1,2,3,4,5], downloads the lists of dog facts, and then writes out a new tab-separated values (TSV) file with columns: (1) ID of the dog fact, and (2) the fact itself!

#3 Mapping!

This set of questions will all require the the Nominatim API. As always, API documentation is online.

  1. Are there more cafes in Ballard or Capitol Hill? (Hint: you'll need to look into the "Result limitation" section of the API documentation)
  2. Are there more dentists near the University or near Downtown?
  3. Use the geocoding API endpoint in Nominatim to look up a specific latitude and longitude of your choice (try this building!).
  4. Write a program to find all the ziplines in King County, Washington (or at least all the ones that OSM knows about!).
    1. It's important to be alert and well-caffeinated when ziplining! Once you've found a nearby zipline, have your program use that result to find the nearest cafe each of the ziplines you identify!
  5. Craft a query using the search API to find colleges in Seattle. (Hint: you'll want to set bounded=1 and use viewbox). Print the name and location of every college you find.
    1. Modify your query so that you include the address details separated out (this is an API option)
    2. How can you tell that a place returned by the API is in fact a college?
    3. Print the list of colleges into a new TSV file with the following columns: osm_id (a unique ID that OSM uses), the name of the college, latitude, and longitude.