1
0
mirror of https://gitlab.com/MisterBiggs/anson-heatmap.git synced 2025-06-15 14:36:44 +00:00

updated after guat trip

This commit is contained in:
Anson 2021-05-26 23:32:01 -07:00
parent c90d7ec96b
commit 8bfb57877f
2 changed files with 36 additions and 16 deletions

View File

@ -1,3 +1,23 @@
# anson-heatmap
Using a modified version of [Geo Heatmap](https://github.com/luka1199/geo-heatmap) and location data from Google Takeout I was able to generate this map of everywhere I've been down to the millisecond. Thank you Google for datahoarding to an almost *disgusting* extent.
## Heatmap
```python
gradient={
0.0: "rgb(72, 0, 84)",
0.14285714285714285: "rgb(79, 48, 127)",
0.2857142857142857: "rgb(67, 91, 141)",
0.42857142857142855: "rgb(52, 127, 142)",
0.5714285714285714: "rgb(34, 162, 135)",
0.7142857142857142: "rgb(61, 195, 108)",
0.8571428571428571: "rgb(147, 219, 53)",
1.0: "rgb(243, 233, 28)",
}
```
## Command
`python .\geo_heatmap.py .\takeout-STUFFHERE-001.zip -m StamenToner`

File diff suppressed because one or more lines are too long