Creating your first workflow

CARTO Workflows is a visual model builder that allows you to build complex spatial analyses and data preparation and transformation workflows without writing code. As with the rest of our platform, Workflows is fully cloud-native and runs in your own data warehouse leveraging its full scalability.

In order to learn more about the main sections of CARTO Workflows' interface and its available components, please check this section of our documentation.

In this first example we will create drive-time isolines for selected retail locations and we will then enrich them with population data leveraging the power of the H3 spatial index. This tutorial includes some examples of simple data manipulation, including filtering, ordering and limiting datasets, plus some more advanced concepts such as polyfiling areas with H3 cells and joining data using a spatial index in common.

As input data we will leverage a point-based dataset representing retail location that is available in the demo data accessible from the CARTO Data Warehouse connection (i.e. retail_stores), and a table with data from CARTO's Spatial Feature dataset in the USA aggregated at H3 Resolution 8 (i.e. derived_spatialfeatures_usa_h3res8_v1_yearly_v2).

Let's get to it!

Creating a workflow and loading your data

  1. In your CARTO Workspace under the Workflows tab, create a new workflow.

  1. Select the data warehouse where you have the table with the point data accessible. We'll be using the CARTO Data Warehouse, which should be available to all users.

  2. Navigate the data sources panel to locate your table, and drag it onto the canvas. In this example we will be using the retail_stores table available in demo data. You should be able to preview the data both in tabular and map format.

Filtering data to select the relevant stores

In this example, we want to select the 100 stores with the highest revenue, our top performing locations.

  1. First, we want to eliminate irrelevant store types. Drag the Select Distinct component from the Data Preparation toolbox onto the canvas. Connect the stores source to the input side of this component (the left side) and change the column type to storetype.

  2. Click run.

  1. Once run, click on the Select Distinct component and switch to the data preview at the bottom of the window. You will see a list of all distinct store type values. In this example, let’s say we’re only interested in supermarkets.

  2. To select supermarkets, add a Simple Filter component from the Data Preparation toolbox.

  3. Connect the retail stores to the filter, and specify the column as storetype, the operator as equal to, and the value as Supermarket (it's case sensitive).

  4. Run!

This leaves us with 10,202 stores. The next step is to select the top 100 stores in terms of revenue.

  1. Add an Order By component from the Data Preparation toolbox and connect it to the top output from Simple Filter. Note that the top output is all features which match the filter, and the bottom is all of those which don't.

  2. Change the column to revenue and the order to descending.

  1. Next add a Limit component - again from Data Preparation - and change the limit to 100, connecting this to the output of Order By.

  2. Click run, to select only the top 100 stores in terms of generated revenue.

Creating walk-time isolines around the stores

  1. Next, add a Create Isolines component from the Spatial Constructors toolbox. Join the output of Limit to this.

  2. Change the mode to walk, the range type to time and range limit to 600 (10 minutes).

  1. Click run to create 10-minute drive-time isolines. Note this is quite an intensive process compared to many other functions in Workflows (it's calling to an external location data services provider), and so may take a little longer to run.

Leveraging the H3 spatial index to enrich geospatial data

  1. We now add a second input table to the canvas, we will drag and drop the table derived_spatialfeatures_usa_h3res8_v1_yearly_v2 from demo_tables. This table include different spatial features (e.g. population, POIs, climatology, urbanity level, etc.) aggregated at H3 grid with resolution 8.

  1. In order to be able to join the population data with the areas around each retail store, we will use the component H3 Polyfill in order to compute the H3 grid cells in resolution 8 that cover each of the isolines around the stores. We configure the node by selecting the Geo column "geom", configuring the Resolution value to 8 and enabling the option to Keep input table columns.

  1. Next step is to join both tables based on their H3 indices. For that, we will use the Join component. We select the columns named h3 present in both tables to perform the join operation.

  1. Check in the results tab that now you have joined data coming from the retail_stores table with data from CARTO's spatial features dataset.

  1. As we now have multiple H3 grid cells for each retail store, what we want to do is to aggregate the population associated with the area around each store (the H3 polyfilled isoline). In order to do that we are going to use the Group By component, and we are going to aggregate the population_joined column with a SUM as the aggregation operation and we are going to group by the table by the store_id column.

  1. Now, check that in the results what we have again is one row per retail store (i.e. 100 rows) and in each of them we have the store_id and the result of the sum of the population_joined values for the different H3 cells that were associated with the isoline around each store.

  1. We are going to re-join with a Join component the data about the retail_stores (including the point geometry) with the aggregated population we have now. We take the output of the previous Limit component and we add it to a new Join component together with the data we generated in the previous step. We will use the column store_id to join both tables.

Adding annotations to your workflow

A cool feature in CARTO Workflows is the possibility to add annotations in any area of the canvas, supporting the Markdown syntax (allowing for different levels of headers, text formats, images, etc.). This allows users to better explain the different steps performed in a workflow so other users can understand them.

In order to add an annotation to your canvas you only need to click on the corresponding icon on the top toolbar and select the location of the canvas where you want to add it.

Sharing and further exploring the results of your workflow

There are multiple ways to share the results of your workflows, from saving the results in a table to sending them via e-mail to your colleagues. Additionally, note that from any step of your workflow (including that with the final saved table), you can create a map in CARTO Builder in order to build an interactive dashboard with the result of your workflow plus any of your other spatial data sources.

  1. Finally we use the Save as table component to save the results as a new table in our data warehouse. We can then use the "Create map" option to build an interactive map to explore this data further.

What next?

Check our gallery of workflow examples to keep learning how to get the most of this tool for your data transformation and analysis pipelines. The examples showcase a wide range of scenarios and applications: from simple building blocks for your geospatial analysis to more complex, industry-specific workflows tailored to facilitate running specific geospatial use-cases.

Last updated