Skip to main content

Visualising Your Google Location History

Step 1: Download Your Google Location History

First, you need to download your location history data from Google. Follow these steps to get started:

  1. Go to Google Takeout: Visit Google Takeout to begin the process.
  2. Select Location History (Timeline): Make sure to select the “Location History (Timeline)” option.

3. Export Your Data: Google will compile your data, which might take some time. You will receive an email once your data is ready to be downloaded.

4. Download the Data: Follow the instructions in the email to download your data.


Step 2: Extract the Downloaded File

Once you’ve downloaded your data, locate the file and extract it. The location data will be in a JSON file at the following path:

takeout-202XXXXXTXXXXXXZ-001/Takout/Location History (Timeline)/Records.json

Step 3: Convert JSON to CSV

To make the location data usable, we need to convert it from JSON to CSV format. Although you can convert it to KML or geoJSON formats, we’ll focus on CSV for this post.

1. Clone the Repository: Use the following GitHub repository to get the necessary script:

git clone https://github.com/Scarygami/location-history-json-converter

2. Install Dependencies: Navigate to the cloned directory and install the required dependencies:

pip install -r requirements.txt

3. Run the Conversion Script: Execute the script to convert your JSON file to CSV:

python3 location_history_json_converter.py '<PATH_TO_FOLDER>\Takeout\Location History (Timeline)\Records.json' .\Output.csv -f csv

This will create a CSV file with all the location data points from the Records.json file.

  • Example of CSV file
Time,Latitude,Longitude
2024-01-09 04:17:42,12.90519190,80.21908210

Now that we have CSV file ready let’s visualize the data.

Step 4: Visualize Your Data on a Map

  1. Visit Kepler.gl: Head over to Kepler.gl demo.

2. Upload Your CSV File: Click on the “Upload Data” button and select your CSV file.


3. View Your Location Data: Once processed, you will see your location data plotted on the map.


You can zoom in-onto map and see countries, cities and streets you roamed. It’s a nice way to get a bird eye view of how much area of city you have covered.

Step 5: Set Up Time-Series Visualization

To enhance the visualization with a time-series component:

  • Go to Filters: In Kepler.gl, navigate to the Filters section.

  • Select Time: Choose the time column from your data.
  • Click Play: Use the play button to view a time-based animation of your location history.

You can zoom in to see detailed views of countries, cities, and streets you have visited, providing a comprehensive overview of your travel history.

Thanks for reading. If you have some feedback, please provide your response or reach out to me on Twitter or Github.

Comments

Popular posts from this blog

Track stock market information right in your Terminal.

     Introduction: As a developer, I love working with the terminal. The plain, simple, and in my opinion the best way to interact with the computer (also it makes you look geeky). I spent most of my time in the terminal. By now you must have guessed I am a huge fan of the terminal and terminal-based applications. Recently I developed an interest in stock markets and started tracking the stock markets. Since I love working with the terminal I decided to build a terminal oriented application that can help me to track the stock market. Inspir e d by  wttr.in  I build  terminal-stocks  which can provide the stock's current prices, historical prices, and global market summary. How to use terminal-stocks terminal-stocks  is available and can be used without installation. Get the current price of the stock. curl terminal-stocks.dev/ITC.NS Current price of stocks You need to provide the ticker of the stock and terminal-stocks will give you the price information of the stock.  terminal-st

Setting up Nginx as a reverse proxy for Node.js App

Okay.. but what is a reverse proxy? A reverse proxy is a web server that centralizes internal services and provides unified interfaces to the public. Requests from clients are forwarded to a server that can fulfill it before the reverse proxy returns the server’s response to the client. Nginx is a popular choice to use as a reverse proxy for your node.js application. Got it. Now let’s set up Nginx Let’s say your nodejs server is running locally on localhost:3000. We will set up Nginx to get the request and forward the request to our nodejs server. Ins t alling Nginx on ubuntu sudo apt-get update sudo apt-get install nginx Configure Nginx Disable the default, virtual host unlink /etc/nginx/sites-enabled/default 2. Create a configuration file cd /etc/nginx/sites-available sudo nano reverse-proxy.conf 3. Put the following content in the file server { listen 80; listen [::]:80; access_log /var/log/nginx/reverse-access.log; error_log /var/log/nginx/reverse-e

PrivateGPT: A Step-by-Step Guide to Installation and Use

In this blog post, we will explore the ins and outs of PrivateGPT, from installation steps to its versatile use cases and best practices for unleashing its full potential. What is PrivateGPT? PrivateGPT is a cutting-edge program that utilizes a pre-trained GPT (Generative Pre-trained Transformer) model to generate high-quality and customizable text. Built on OpenAI's GPT architecture, PrivateGPT introduces additional privacy measures by enabling you to use your own hardware and data. This ensures that your content creation process remains secure and private. Installation Steps Before we dive into the powerful features of PrivateGPT, let's go through the quick installation process. PrivateGPT is a command line tool that requires familiarity with terminal commands. Let's get started: 1. Clone the Repository: Begin by cloning the PrivateGPT repository from GitHub using the following command: ``` git clone https://github.com/imartinez/privateGPT.git ``` 2.Navigate to the Direc