Toan Hoang

Drawing Arc Maps in Tableau

As of 2019.2, Tableau now has the MakePoint and MakeLine Functions that makes this process a lot easier. I would recommend using the technique described in this tutorial only if you are using an older version. You can find my article on Tableau 2019.2 MakePoint and MakeLine HERE

I have not done enough work on Maps, but fear not, I plan to do a lot more in 2019. This tutorial will focus on drawing Arc Maps in Tableau and show a nice curve as opposed to straight lines between points. This should be a quick and fun read, so get ready and enjoy.

Note: As always never choose a data visualisation type and try to fit your data into it, instead, understand your data and choose the best visualization for your data consumers.

Data

Load the following data into Tableau Desktop / Public.

FlightEnd LatEnd LongStart LatStart LongPath
London-Berlin52.52000713.40495451.507351-0.1277580
London-Berlin52.52000713.40495451.507351-0.12775890
London-Dublin53.349805-6.2603151.507351-0.1277580
London-Dublin53.349805-6.2603151.507351-0.12775890
London-Madrid40.416775-3.7037951.507351-0.1277580
London-Madrid40.416775-3.7037951.507351-0.12775890
London-Milan45.4654229.18592451.507351-0.1277580
London-Milan45.4654229.18592451.507351-0.12775890
London-Paris48.8566142.35222251.507351-0.1277580
London-Paris48.8566142.35222251.507351-0.12775890

Calculated Fields

With our data set loaded into Tableau, we are going to create the following Calculated Fields:

Path (bin)

Index

INDEX()-1

TC_Start Lat

WINDOW_MAX(MAX([Start Lat]))

TC_Start Long

WINDOW_MAX(MAX([Start Long]))

TC_End Lat

WINDOW_MAX(MAX([End Lat]))

TC_End Long

WINDOW_MAX(MAX([End Long]))

TC_Step Size Lat

([TC_End Lat]-[TC_Start Lat])/90

TC_Step Size Long

([TC_End Long]-[TC_Start Long])/90

TC_Latitude

([Index]*[TC_Step Size Lat])+[TC_Start Lat]+
SIN([Index]/29)

Right-click on the the object, go to Geographic Role and select Latitude.

TC_Longitude

[Index]*[TC_Step Size Long]

Right-click on the the object, go to Geographic Role and select Longitude.

Destination

TRIM( SPLIT( [Flight], "-", -1 ) )

Now that we have our Calculated Fields created, let us start creating our Worksheet.

Worksheet

We are going to build two worksheets and make them overlap each other. So to build our first worksheet:

If all goes well you should not see the following:

Now adjust the visualisation as you see fit, have some real fun with this, but when I published this the first time, I got the following:

and boom, we are done, there is a little hard coding in the Calculated Fields, so go back and tweak a bit to see what you get. But this is some cool stuff huh…

You can see and interact with my visualisation on Tableau Public at https://public.tableau.com/profile/toan.hoang#!/vizhome/ArcMaps/ArcMaps

Summary

I hope you all enjoyed this article as much as I enjoyed writing it, if so, please do share this article with fellow Tableau addicts and spread the love. Do let me know if you experienced any issues recreating this Visualisation, and as always, please leave a comment below or reach out to me on Twitter @Tableau_Magic.

If you want to learn more about Creating Bespoke Data Visualisations in Tableau, do check out our course on Udemy at https://www.udemy.com/creating-bespoke-data-visualisations-in-tableau and using the coupon code TMWEB2019

Exit mobile version