Tutorial | Geographic processors#

Within the Prepare recipe, Dataiku has many geographic processors for working with geographic data. Let’s try out some of them!

Get started#

Objectives#

In this tutorial, you will:

  • Create geopoints from coordinates of latitude and longitude.

  • Create a buffer area around a geopoint.

  • Reverse geocode locations.

  • Use geographic formula functions.

  • Compute the distance between two geopoints.

Prerequisites#

Create the project#

Let’s get started!

  1. From the Dataiku Design homepage, click + New Project > DSS tutorials > Core Designer > Geographic Processors.

  2. From the project homepage, click Go to Flow (or g + f).

Note

You can also download the starter project from this website and import it as a zip file.

Use case summary#

The project has three data sources:

tx

Each row is a unique credit card transaction that has been either been authorized (a score of 1 in the authorized_flag column) or flagged for potential fraud (a score of 0).

cardholders

Each row is the latitude and longitude coordinates of a unique credit card holder.

merchants

Each row is the latitude and longitude coordinates of a unique merchant, all of which are gas stations.

The Flow joins a small random sample of these three datasets together so that every record in tx_joined is a unique transaction, enriched with data about the location of credit card holders and merchants for that transaction.

Create geopoints from lat-lon coordinates#

One of the first steps to working with geographic data is creating a geopoint. The most basic geographic data structure, a geopoint, identifies a specific point on the Earth’s surface according to a coordinate reference system (CRS). Its specific format allows for many geographic operations, such as mapping or distance computations.

The Flow contains latitude and longitude coordinates for both credit card holders and merchants. Let’s use these coordinates to create our first sets of geopoints!

  1. Open the Prepare recipe that creates the cardholders dataset.

  2. Click + Add a New Step.

  3. Filter for Geography on the left to observe all of the geo-related processors.

  4. Select Create GeoPoint from lat/lon.

  5. Provide cardholder_latitude and cardholder_longitude as the input latitude and input longitude columns, respectively.

  6. Name the output geopoint column cardholder_geopoint.

  7. Delete the original cardholder_latitude and cardholder_longitude columns so only two columns remain in the dataset.

  8. Click Save and Update Schema.

  9. Repeat the equivalent steps for the Prepare recipe that creates the merchants dataset. When finished, it should contain only merchant_id and merchant_geopoint.

Dataiku screenshot of a Prepare step to add a geopoint.

Create a buffer around a geopoint#

A geopoint is the building block for more complex geographic data structures. For example, we can draw a circle around a geopoint to create a polygon. This kind of buffer area can often be useful for determining if other points or shapes are within or outside such zones.

  1. In the Prepare recipe creating the merchants dataset, click + Add a New Step.

  2. Select Create area around geopoint.

  3. Provide merchant_geopoint as the input column.

  4. Name the output column merchant_bubble.

  5. Set the radius of the buffer circle to be 10 kilometers.

  6. Click Save and Update Schema.

Dataiku screenshot of a Prepare step to add a geopoint.

Important

Note the GeoPoint and Geometry meanings that Dataiku has detected for the merchant_geopoint and merchant_bubble columns, respectively. You’ll need these meanings in order to use the column for geographic operations.

Reverse geocode locations#

Another common geographic task we often need to perform is geocoding. This could be taking one piece of geographic information — like an address — and returning lat-lon coordinates. In this case, we already have coordinates, so let’s do the reverse operation!

  1. Return to the Prepare recipe that creates the cardholders dataset.

  2. Click + Add a New Step.

  3. Select Reverse geocoding.

  4. Provide cardholder_geopoint as the input column.

  5. Provide cardholder_county and cardholder_state for output levels 6 and 4, respectively.

  6. Select the box to Output polygon coordinates for the smallest selected administrative area.

  7. Delete the cardholder_state_enName and cardholder_county_enName columns so five columns remain.

  8. Click Save and Update Schema.

Dataiku screenshot of a reverse geocoding step.

Note

For more geocoding options (including forward geocoding), see the Geocoder plugin.

Preview geometries#

The cardholder_county_geom column contains a new type of geometry: a multipolygon. It can be helpful to preview geometries like this directly in the dataset’s Explore tab (or in the Prepare recipe).

  1. In the same Prepare recipe, click on a cell in the cardholder_county_geom column.

  2. Click Preview in the popup menu.

  3. Explore the geometry’s map in the popup window.

Dataiku screenshot of a preview of a geometry.

Tip

You may notice a few empty values for the county columns. Geocoding is often an imperfect process! Filter for empty values, and use the preview function shown here to examine why no county may have been returned.

Use geographic formula functions#

In addition to a set of geographic processors, Dataiku also has a set of geographic formula functions, similar to those found in PostGIS, a PostgreSQL extension that implements standards from the Open Geospatial Consortium.

For example, geometries (such as those representing state boundaries) are an aggregation of a series of many geopoints. Accordingly, their size can be very large! However, depending on our objective, we often may not need such a high level of detail, and so we can simplify the geometry.

Let’s simplify the geometry of the county shapes!

  1. In the same Prepare recipe, click + Add a New Step.

  2. Select Formula.

  3. Provide the existing cardholder_county_geom as the output column.

  4. Click Open Editor Panel.

  5. Type geo to see the available geographic functions.

  6. Provide the formula geoSimplify(cardholder_county_geom, 0.01) to reduce the complexity of the geometry.

  7. Click Apply.

  8. Click Save.

Dataiku screenshot of a geo formula step.

Tip

Compare the preview for a few counties with and without this step. How far in do you need to zoom before the difference is noticeable? Then, from the dataset’s Details tab, compare the size with and without this step to see the impact of simplifying the geometry.

Compute the distance between two geopoints#

Now that we have geopoints for both the cardholders and the merchants, let’s calculate the distance between them. First, we’ll need to join this data together. Thankfully, a Join recipe is already set up to do this. We just need to re-run it to pick up the new columns in the Join recipe output.

  1. From the Flow, select tx_joined.

  2. In the Actions sidebar, click Build.

  3. Select the Build Upstream tab in the dialog.

  4. Select the box to Update output schemas.

  5. Click Build Dataset.

Dataiku screenshot of a build dialog.

Tip

As instructed above, be sure to update the schema before building! Without updating, the tx_joined dataset will still have columns such as cardholder_latitude and cardholder_longitude instead of cardholder_geopoint. If this is unfamiliar, explore our resources on build modes to learn more.

Now for every transaction, we have the location of the cardholder and the merchant. Let’s compute the distance between these two points!

  1. Open the Prepare recipe that computes the tx_prepared dataset.

  2. Click + Add a New Step.

  3. Select Compute distance between geopoints.

  4. Provide cardholder_geopoint and merchant_geopoint as the two columns.

  5. Name the output column cardholder_merchant_distance_km.

  6. Click Run to execute the recipe.

Dataiku screenshot of a compute distance step.

Tip

Use the Analyze tool in the column header of the new distance column. The typical distance between a cardholder and a merchant (which are all gas stations) seems unexpected!

What’s next?#

Congratulations! You’ve used a range of visual processors to create the building blocks for geographic data analysis.

Note

For more information on geographic processors, see the reference documentation.

Once you have geopoint and geometry data structures, you’ll want to visualize them on a map. You can do that next in Tutorial | No-code maps!

Tip

You can find this content (and more) by registering for the Dataiku Academy course, Geospatial Analytics. When ready, challenge yourself to earn a certification!