Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

jenningsanderson/aws-athena-workshop

Repository files navigation

Workshop Description

This workshop was designed to be run in-person on a shared EC2 instance with JupyterHub at the 2019 HOT Summit. I have updated the description so that it can run locally, but there may still be configuration details that are confusing. If you'd like to talk more about this, or run a similar workshop, let me know: jennings . anderson @ colorado.edu

There are two steps to this OSM data analysis workshop:

  1. First, we use Amazon Athena to query pre-processed OSM historical data.
    • OSM historical editing data is currently available for the following areas. Database table names shown here: Available regions
    • All OSM changesets metadata is available
    • The pre-processed data exists as individual OSM objects with WKT geometries (not nodes/ways/relations)
    • The results of these queries are automatically saved to an Amazon S3 bucket.
  2. Second, we use Jupyter Notebooks for an interactive analysis environment to download the query results from S3 and analyze/visualize.

Getting Started

Part 1: Amazon Athena

Using your Amazon Web Services account, log into Amazon Athena.

  1. Once logged in, double check that the region is set to us-east-2 (Ohio) because that is where the pre-processed OSM data lives.

    You'll need to set up an osm database. Use the queries found in the Athena Setup description to load the tables.

    Screenshot of Athena Check the workgroup and direct output to an S3 bucket of your choosing, one with public read-access in us-east-2 so that you can easily retrieve or share the query results. Buckets outside this region will incur higher inter-region transfer costs.

  2. Now you can begin querying the OSM data, see the Data section below for a more detailed description of what is attributes are available. Here are few queries to get you started and familiar with the interface.

    Copy the exact queries here and paste them into the query window.

    1. Count the number of users to ever work on a HOT task:

      SELECT count(DISTINCT(uid))
      FROM changesets
      WHERE lower(changesets.tags['comment']) LIKE '%hotosm%'

      It should return ~ 140,930. That's a lot of people. What about just this year?

      SELECT count(distinct(uid))
      FROM changesets
      WHERE lower(changesets.tags['comment']) LIKE '%hotosm%'
      	AND changesets.created_at > date '2019-01-01'

      This should return ~ 25,988. Wow, 25k mappers working on at least 1 hot task in 2019. What about users who have more than 1 HOT-related changeset?

      SELECT count(uid) FROM (
        SELECT uid, count(id) AS num_changesets
        FROM changesets
        WHERE lower(changesets.tags['comment']) LIKE '%hotosm%'
        GROUP BY uid
      ) WHERE num_changesets > 1

      ~ 121,860, implying only 20k users only made 1 changeset.

      These are simple results in which Athena is only returning single values. Let's dig into the data a bit more...

    2. Find all HOT-related changesets, grouped by user with basic per-user statistics.

       SELECT
           changesets.user,
           min(created_at) AS first_edit,
           max(created_at) AS last_edit,
           date_diff('day', min(created_at), max(created_at)) AS lifespan,
           sum(num_changes) AS total_edits
       FROM
           changesets
       WHERE
           lower(changesets.tags['comment']) LIKE '%hotosm%' -- hotosm changesets only
       GROUP BY
           changesets.user
       ORDER BY lifespan DESC

      The results from this query will be a CSV with ~ 140k rows, one per mapper:

      At the upper-right, there is a link to download the results as a CSV file. To explore these results in more depth, we will load these CSV files into a Jupyter Notebook, as described next. This is done by copying and pasting this link. You can do this with a right-click:

Part 2: Logging into the Jupyter Notebooks

After cloning this repository, run jupyter notebook from this directory (or browse to it if running Jupyter elsewhere). If you don't yet have jupyter installed, click here.

For best performance, consider running this notebook server on an Amazon EC2 instance in the us-east-2 region.

  1. When notebook server is running, you should see a page that looks like this:

    Jupyter Notebook Home

Edit the workshop_utils.py file to point to the S3 bucket where your queries are stored, as specified in the workspace above. Without this, Jupyter cannot find your query results.

  1. Click on the 0. Start Here - All Hot Mappers Tutorial.ipynb, when it starts, you should see this:

    Image of running notebook

    Follow the directions in the notebook to load the CSV file from the previous query into the notebook and create a few charts.

Part 3: Other Notebooks

There are 10 numbered notebooks, (numbered for organization, not difficulty). They contain sample queries and the necessary code to analyze the results. Try them out and plug in your own spatial bounds to look at different areas.

Athena to Jupyter

Remember, when you run a new query in Athena, you need to copy the URL of the CSV file and paste that URL into the notebook to get the results from Athena to Jupyter

First, copy the URL from Athena: Right click link

Then paste it (with quotes) into the notebook, storing it as a variable like query:

query = "https://us-east-2.console.aws.amazon.com/athena/query/results/6cab4ea3-8431-4cd6-8f89-8881fa43c8b2/csv"

Then run run the load_dataframe_from_s3 function to get the query results into a Pandas Dataframe.

df = load_dataframe_from_s3(query)

Resources

  1. For spatially bounded queries, this bounding box tool can quickly construct WKT bounding boxes. I recommend having this tool open in another tab for quick reference.


Data

Our dataset has gone through one step of pre-processing. Using the OSMesa utility, the raw node/way/relation elements have been converted into single OSM objects with WKT geometries. This conversion also accounts for minor versions, the unaccounted versions of ways and relations created by modifying the child object (like squaring a building or fixing a road).

Therefore the data looks slightly different from the original OSM data model, namely the following fields:

Attribute (Column) Description
updated When this version/minor version of the object was created
valid_until When this particular version was altered, making this version of the object no longer the most recent
minor_version How many times the geometry / child elements of the primary element has been modified
version The version of this object that corresponds to the version of the OSM element
geom The geometry of this version of the object (WKT)

Acknowledgements

This workshop is made possible by pre-processing the full-history editing record of OSM with OSM2ORC and OSMesa, and the help of Seth Fitzsimmons.

Jennings Anderson is a Postdoctoral Researcher at the University of Colorado Boulder. The preparation and design of this workshop is thereby supported by CU Boulder and the US National Science Foundation Grant IIS-1524806.

Amazon Web Services is providing computational resources, financial support, and planning / organizing the production of this workshop.

About

AWS Athena Workshop for the 2019 HOT Summit

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published