# Where's my Voi scooter: [9] Masking scooter heatmap on the map using Python PIL module

In this blog, I plan to incorporate the map into the heatmap made in the [previous blog post](https://chit.hashnode.dev/wheres-my-voi-scooter-8-creating-heatmap-for-distribution-of-scooters), because, with only the heatmap, you can see which coordinates have a lot of scooters, but you have to reference the map with the coordinates, which is inconvenient. So I want to put the information on the Heatmap directly on the map so that the information is shown clearly.

## Heatmap

### Overlapping image

To overlap the image of the map and the heatmap, I need to find out how to have a half-transparent image on top of another image.

I first have to make an image transparent, I do that by using the `putalpha(128)` to make an image half transparent. It works by putting an alpha, or transparency level of 128 on that image. An alpha level of 0 means completely transparent, and level 255 means completely opaque. So 128 is in the middle, hence half-transparent.

Then I tried using `image.paste(another_image)` to put the half-transparent image on top of the other. but what happened is the image complete overwrites the other. what I needed was `alpha_composite`. For testing, I alpha composited the half-transparent map on top of the sat.

I created this `map_img` by getting the four coordinates I used for the range of the heatmap. and Taking a screenshot with exactly the four corners.

![1.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659563154225/M_BzlDdL2.png align="left")

sat_map
![2.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659563160588/uNQMG9P1O.png align="left")

```python
from PIL import Image
map_img = Image.open('img/map.png')
map_img.putalpha(128)
sat_map = Image.open('img/sat_map.png')
sat_map.alpha_composite(map_img)
sat_map.save('img/result.png')
```

result.png
![3.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659563168516/ecPnxvMXK.png align="left")

### Masking

Now I want to mask the heatmap image on the map image so that we can see the areas with a lot of scooters on the map. I wanted to use alpha composite like the last example, but I figured that using masking would be better. Image masking is putting image A on image B using image C as a guideline. I plan to put a dark image over the map, using the heatmap as a guideline. Places with more scooters will be darker so that we can tell where the scooters are on the map.

The function to do the masking is `Image.composite()`, it requires all images to have the same size. So I plan to use the size width 600 height 600 for all. I first make a background image of all white, resize the map image to the size of the heatmap using the `thumbnail` function, and paste it into the background. then I read the heatmap image and fix its size and convert it to `L`, which means greyscale for some reason. then I make a red image of all red, and I composite all of them together.

```python
bg_img = Image.new("RGBA", (600, 600), 0)
map_img = Image.open('img/map.png')
map_img.thumbnail((474, 546), Image.ANTIALIAS)
bg_img.paste(map_img, (36, 21))
heatmap_img = Image.open('img/heatmap.png').resize((600, 600)).convert("L")
bk_img = Image.new("RGB", (600, 600), 255).convert("RGBA")
final_img = Image.composite(bk_img, bg_img, heatmap_img)
final_img.save('img/result2.png')
```

heatmap_img
![4.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659563175814/BCW-fOdjO.png align="left")

The result is, for the places with more scooters, a red overlay will be on them, so we can tell where the scooters are focused.

![5.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659563873772/Awb-PCnn9.png align="left")

## What's next

In the next blog, I plan to analyse the Voi scooter data from July, since my data collecting program has been running for over a month already. I'm sure there will be interesting data collected.


