Created
August 23, 2024 12:06
-
-
Save oxc/fcd46d056437c7f1f50d600413fdc9f0 to your computer and use it in GitHub Desktop.
Find all days in Google Location History on which you have been at a certain address
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find all unique days in your Google Takeout Semantic Location History | |
# on which you have been at a specific address. | |
# | |
# Usage: days_at_address <addr> [history files...] | |
# | |
# Example: | |
# | |
# $ cd "Takeout/Location History (Timeline)/Semantic Location History" | |
# $ days_at_address "Königsplatz 1, 80333 München, Deutschland" 2023/*.json | |
# Output: | |
# "2023-03-23" | |
# "2023-07-12" | |
function days_at_address() { | |
local addr=$1 | |
shift | |
jq --arg address "$addr" '.timelineObjects | .[] | |
| select(.placeVisit.location.address==$address) | |
| .placeVisit.duration.startTimestamp | |
| sub("(?<time>.*)\\.[\\d]{3}(?<tz>.*)"; "\(.time)\(.tz)") | |
| fromdate | strftime("%Y-%m-%d")' "$@" \ | |
| sort -u | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment